fvOptions/sources/derived/rotorDiskSource: Added more documentation

Provided by Richard Jones
This commit is contained in:
Henry Weller
2015-07-01 11:02:32 +01:00
parent d5c8a45f5c
commit 7bf57f6b2b
2 changed files with 32 additions and 4 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -25,7 +25,22 @@ Class
Foam::bladeModel
Description
Blade model class
Blade model class calculates:
Linear interpolated blade twist and chord based on radial position
Interpolation factor (for interpolating profile performance)
Input in list format:
data
(
(profile1 (radius1 twist1 chord1))
(profile1 (radius2 twist2 chord2))
);
where:
radius [m]
twist [deg], converted to [rad] internally
chord [m]
SourceFiles
bladeModel.C

View File

@ -58,12 +58,21 @@ Description
blade
{
...
// see bladeModel.H for documentation
}
profiles
{
profile1
{
type lookup; // lookup || series
...
// see lookupProfile.H or seriesProfile.H for documentation
}
profile2
{
...
}
}
}
\endverbatim
@ -78,6 +87,10 @@ Description
- local : use local flow conditions
- surfaceNormal : specified normal velocity (positive towards rotor)
See Also
Foam::bladeModel
Foam::lookupProfile
Foam::seriesProfile
SourceFiles
rotorDiskSource.C