fvOptions/sources/derived/rotorDiskSource: Added more documentation
Provided by Richard Jones
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -25,7 +25,22 @@ Class
|
|||||||
Foam::bladeModel
|
Foam::bladeModel
|
||||||
|
|
||||||
Description
|
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
|
SourceFiles
|
||||||
bladeModel.C
|
bladeModel.C
|
||||||
|
|||||||
@ -58,12 +58,21 @@ Description
|
|||||||
|
|
||||||
blade
|
blade
|
||||||
{
|
{
|
||||||
...
|
// see bladeModel.H for documentation
|
||||||
}
|
}
|
||||||
|
|
||||||
profiles
|
profiles
|
||||||
{
|
{
|
||||||
...
|
profile1
|
||||||
|
{
|
||||||
|
type lookup; // lookup || series
|
||||||
|
...
|
||||||
|
// see lookupProfile.H or seriesProfile.H for documentation
|
||||||
|
}
|
||||||
|
profile2
|
||||||
|
{
|
||||||
|
...
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
@ -78,6 +87,10 @@ Description
|
|||||||
- local : use local flow conditions
|
- local : use local flow conditions
|
||||||
- surfaceNormal : specified normal velocity (positive towards rotor)
|
- surfaceNormal : specified normal velocity (positive towards rotor)
|
||||||
|
|
||||||
|
See Also
|
||||||
|
Foam::bladeModel
|
||||||
|
Foam::lookupProfile
|
||||||
|
Foam::seriesProfile
|
||||||
|
|
||||||
SourceFiles
|
SourceFiles
|
||||||
rotorDiskSource.C
|
rotorDiskSource.C
|
||||||
|
|||||||
Reference in New Issue
Block a user