mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Uses a system/caseProperties file to select templates from etc/caseDicts/createZeroDirectoryTemplates to enable high-level setup of a case. See - etc/caseDicts/createZeroDirectoryTemplates - tutorials/preProcessing/createZeroDirectory
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "templates";
|
|
object kOmegaSST;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
fluidFields
|
|
{
|
|
k
|
|
{
|
|
type scalar;
|
|
dimensions [0 2 -2 0 0];
|
|
}
|
|
omega
|
|
{
|
|
type scalar;
|
|
dimensions [0 0 -1 0 0];
|
|
}
|
|
nut
|
|
{
|
|
type scalar;
|
|
dimensions [0 2 -1 0 0];
|
|
}
|
|
}
|
|
|
|
|
|
incompressibleFields
|
|
{}
|
|
|
|
|
|
compressibleFields
|
|
{
|
|
alphat
|
|
{
|
|
type scalar;
|
|
dimensions [1 -1 -1 0 0];
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|