Skip to content
Snippets Groups Projects
Commit 8e8b867f authored by Ian Cowan's avatar Ian Cowan Committed by Kutalmış Berçin
Browse files

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
parent 3b2bca52
Branches
No related merge requests found
...@@ -14,8 +14,6 @@ forces ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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
......
/*--------------------------------*- 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;
}
//************************************************************************** //
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment