openfoam/tutorials/preProcessing/createZeroDirectory/motorBike/system/caseProperties
2023-02-13 21:18:57 +01:00

115 lines
2.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2306 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object caseProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
initialConditions
{
U uniform (20 0 0);
p uniform 0;
k uniform 0.24;
omega uniform 1.78;
nut uniform 0;
}
boundaryConditions
{
motorbike
{
category wall;
type noSlip;
patches (motorBikeGroup);
options
{
wallFunction highReynolds;
motion stationary;
}
values
{
$/initialConditions;
}
}
inlet
{
category inlet;
type subSonic;
patches (inlet);
options
{
flowSpecification fixedVelocity;
}
values
{
$/initialConditions;
}
}
lowerWall
{
category wall;
type noSlip;
patches (lowerWall);
options
{
wallFunction highReynolds;
motion stationary;
}
values
{
$/initialConditions;
}
}
outlet
{
category outlet;
type subSonic;
patches (outlet);
options
{
returnFlow default;
}
values
{
$/initialConditions;
}
}
upperWall
{
category wall;
type slip;
patches (upperWall);
values
{
$/initialConditions;
}
}
frontAndBack
{
category wall;
type slip;
patches (frontAndBack);
values
{
$/initialConditions;
}
}
}
// ************************************************************************* //