limitPressure, limitTemperature: added example fvConstraints
This commit is contained in:
29
etc/caseDicts/general/fvConstraints/limitPressure
Normal file
29
etc/caseDicts/general/fvConstraints/limitPressure
Normal file
@ -0,0 +1,29 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object limitPressure;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
limitp
|
||||
{
|
||||
type limitPressure;
|
||||
|
||||
// limits can be specified absolute
|
||||
// min 200;
|
||||
// max 500;
|
||||
|
||||
// ... or as multipliers on initial min/max values
|
||||
minFactor 0.1;
|
||||
maxFactor 1.5;
|
||||
}
|
||||
|
||||
//************************************************************************** //
|
||||
24
etc/caseDicts/general/fvConstraints/limitTemperature
Normal file
24
etc/caseDicts/general/fvConstraints/limitTemperature
Normal file
@ -0,0 +1,24 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object limitTemperature;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
limitT
|
||||
{
|
||||
type limitTemperature;
|
||||
min 200;
|
||||
max 6000;
|
||||
selectionMode all;
|
||||
}
|
||||
|
||||
//************************************************************************** //
|
||||
@ -42,8 +42,6 @@ SIMPLE
|
||||
}
|
||||
|
||||
nNonOrthogonalCorrectors 0;
|
||||
pMinFactor 0.1;
|
||||
pMaxFactor 1.5;
|
||||
}
|
||||
|
||||
relaxationFactors
|
||||
|
||||
Reference in New Issue
Block a user