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

TUT: verticalChannel: add limitTemperature to avoid negative temperatures (fixes #2426)

TUT: propeller: remove duplicate log entry (fixes #1967)

TUT: verticalChannelLTS: update input to avoid runtime errors (fixes #2426)
parent f6b70b06
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;
......
...@@ -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