mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
This adds a 'geometry' scheme section to the system/fvSchemes:
geometry
{
type highAspectRatio;
}
These 'fvGeometryMethod's are used to calculate
- deltaCoeffs
- nonOrthoCoeffs
etc and can even modify the basic face/cellCentres calculation.
33 lines
1.2 KiB
C++
33 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2006 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object transportProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// Air temperature at standard atmospheric pressure = 540 R = 300 K
|
|
// See README.md
|
|
// c = 347.336 [m/s]
|
|
// Ma = UInf/c = 0.15
|
|
// UInf = 52.1004 [m/s]
|
|
// ReChord = 6e6 (per chord)
|
|
// Chord = 1 [m]
|
|
// ReChord = UInf*Chord/nuFluid
|
|
// nuFluid = UInf*Chord/ReChord = 8.6834e-06 [m2/s]
|
|
|
|
transportModel Newtonian;
|
|
|
|
nu 8.6834e-06;
|
|
|
|
|
|
// ************************************************************************* //
|