Please refer to the header file documentation for complete set of details. ENH: add new fvOptions for ABL modelling - atmAmbientTurbSource - atmBuoyancyTurbSource - atmCoriolisUSource - atmLengthScaleTurbSource - atmPlantCanopyTurbSource - atmPlantCanopyUSource - atmPlantCanopyTSource - atmNutSource ENH: add new boundary conditions for ABL modelling with PatchFunction1 and TimeFunction1 support - atmAlphatkWallFunction - atmEpsilonWallFunction - atmNutkWallFunction - atmNutUWallFunction - atmNutWallFunction - atmOmegaWallFunction - atmTurbulentHeatFluxTemperature STYLE: change names of nutkAtmRoughWallFunction -> atmNutkWallFunction by ensuring the bitwise backward compatibility ENH: add new variable-scaling force computation method to actuationDiskSource ENH: review actuationDiskSource and radialActuationDiskSource ENH: add new function object, ObukhovLength ENH: add new ABL tutorials/verifications - verificationAndValidation/atmosphericModels/atmFlatTerrain - verification with the Leipzig field experiment - illustration of precursor/successor field mapping - verificationAndValidation/atmosphericModels/atmForestStability - verification with the Sweden field experiment - update incompressible/simpleFoam/turbineSiting
76 lines
1.9 KiB
C++
76 lines
1.9 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v1912 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object fvOptions;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
pressureGradient
|
|
{
|
|
type vectorSemiImplicitSource;
|
|
selectionMode all;
|
|
volumeMode specific;
|
|
injectionRateSuSp
|
|
{
|
|
U ((0 1.978046e-03 0) 0);
|
|
}
|
|
}
|
|
|
|
atmCoriolisUSource1
|
|
{
|
|
type atmCoriolisUSource;
|
|
atmCoriolisUSourceCoeffs
|
|
{
|
|
selectionMode all;
|
|
Omega (0 0 5.65156e-5);
|
|
}
|
|
}
|
|
|
|
atmAmbientTurbSource1
|
|
{
|
|
type atmAmbientTurbSource;
|
|
atmAmbientTurbSourceCoeffs
|
|
{
|
|
selectionMode all;
|
|
kAmb 1.0e-04;
|
|
epsilonAmb 7.208e-08;
|
|
}
|
|
}
|
|
|
|
atmBuoyancyTurbSource1
|
|
{
|
|
type atmBuoyancyTurbSource;
|
|
atmBuoyancyTurbSourceCoeffs
|
|
{
|
|
selectionMode all;
|
|
rho rho;
|
|
Lmax 41.0;
|
|
n 3.0;
|
|
beta 3.3e-03;
|
|
}
|
|
}
|
|
|
|
atmLengthScaleTurbSource1
|
|
{
|
|
type atmLengthScaleTurbSource;
|
|
atmLengthScaleTurbSourceCoeffs
|
|
{
|
|
selectionMode all;
|
|
Lmax 41.0;
|
|
n 3.0;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|