mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
TUT: verticalChannel: add limitTemperature to avoid negative temperatures (fixes #2391)
TUT: propeller: remove duplicate log entry (fixes #1967) TUT: verticalChannelLTS: update input to avoid runtime errors (fixes #2426) TUT: Keyword updates
This commit is contained in:
committed by
Andrew Heather
parent
f118d9a2a2
commit
c323cbd35b
@ -14,8 +14,6 @@ forces
|
|||||||
writeControl timeStep;
|
writeControl timeStep;
|
||||||
timeInterval 1;
|
timeInterval 1;
|
||||||
|
|
||||||
log yes;
|
|
||||||
|
|
||||||
patches ("propeller.*");
|
patches ("propeller.*");
|
||||||
rho rhoInf; // Indicates incompressible
|
rho rhoInf; // Indicates incompressible
|
||||||
log true;
|
log true;
|
||||||
|
|||||||
@ -87,7 +87,7 @@ subModels
|
|||||||
{
|
{
|
||||||
minValue 5e-06;
|
minValue 5e-06;
|
||||||
maxValue 0.000565;
|
maxValue 0.000565;
|
||||||
d 4.8e-05;
|
lambda 4.8e-05;
|
||||||
n 0.5;
|
n 0.5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -104,7 +104,7 @@ subModels
|
|||||||
{
|
{
|
||||||
minValue 5e-04;
|
minValue 5e-04;
|
||||||
maxValue 0.0012;
|
maxValue 0.0012;
|
||||||
d 7.5e-05;
|
lambda 7.5e-05;
|
||||||
n 0.5;
|
n 0.5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -49,8 +49,8 @@ H2O
|
|||||||
}
|
}
|
||||||
thermodynamics
|
thermodynamics
|
||||||
{
|
{
|
||||||
Hf -13423000;
|
Hf 0;
|
||||||
Sf 10482;
|
Sf 0;
|
||||||
CpCoeffs<8> ( 1563.1 1.604 -0.0029334 3.2168e-06 -1.1571e-09 0 0 0 );
|
CpCoeffs<8> ( 1563.1 1.604 -0.0029334 3.2168e-06 -1.1571e-09 0 0 0 );
|
||||||
}
|
}
|
||||||
transport
|
transport
|
||||||
|
|||||||
@ -0,0 +1,26 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: v2112 |
|
||||||
|
| \\ / A nd | Website: www.openfoam.com |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class dictionary;
|
||||||
|
object fvOptions;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
limitT
|
||||||
|
{
|
||||||
|
type limitTemperature;
|
||||||
|
min 101;
|
||||||
|
max 600;
|
||||||
|
selectionMode all;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//************************************************************************** //
|
||||||
Reference in New Issue
Block a user