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
42 lines
1.1 KiB
C++
42 lines
1.1 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 simpleFoam;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
solverType incompressible;
|
|
|
|
multiRegion no;
|
|
|
|
fluidModels
|
|
{
|
|
turbulenceModel turbulenceModel;
|
|
}
|
|
|
|
fluidFields
|
|
{
|
|
U
|
|
{
|
|
type vector;
|
|
dimensions [0 1 -1 0 0];
|
|
}
|
|
p
|
|
{
|
|
type scalar;
|
|
dimensions [0 2 -2 0 0];
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|