tutorials/compressible/rhoSimpleFoam/squareBendLiq: Added setting to test sensibleEnthalpy

This commit is contained in:
Henry Weller
2021-07-05 15:36:23 +01:00
parent d2d1c83f35
commit abe505ffaf
2 changed files with 5 additions and 2 deletions

View File

@ -31,10 +31,12 @@ divSchemes
default none; default none;
div(phi,U) bounded Gauss linearUpwind limited; div(phi,U) bounded Gauss linearUpwind limited;
div(phi,h) bounded Gauss linearUpwind limited;
div(phi,e) bounded Gauss linearUpwind limited; div(phi,e) bounded Gauss linearUpwind limited;
div(phi,epsilon) bounded Gauss linearUpwind limited; div(phi,epsilon) bounded Gauss linearUpwind limited;
div(phi,k) bounded Gauss linearUpwind limited; div(phi,k) bounded Gauss linearUpwind limited;
div(phi,Ekp) bounded Gauss linearUpwind limited; div(phi,Ekp) bounded Gauss linearUpwind limited;
div(phi,K) bounded Gauss linearUpwind limited;
div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear; div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear;
} }

View File

@ -25,7 +25,7 @@ solvers
relTol 0.1; relTol 0.1;
} }
"(U|e|k|epsilon)" "(U|h|e|k|epsilon)"
{ {
solver smoothSolver; solver smoothSolver;
smoother symGaussSeidel; smoother symGaussSeidel;
@ -46,7 +46,7 @@ SIMPLE
{ {
p 1e-4; p 1e-4;
U 1e-4; U 1e-4;
"(k|omega|epsilon|e|h)" 1e-3; "(k|omega|epsilon|h|e)" 1e-3;
} }
} }
@ -59,6 +59,7 @@ relaxationFactors
equations equations
{ {
U 0.7; U 0.7;
h 0.7;
e 0.7; e 0.7;
k 0.7; k 0.7;
epsilon 0.7; epsilon 0.7;