ITHACA-FV
2026.04
Loading...
Searching...
No Matches
src
ITHACA_FOMPROBLEMS
UnsteadyNSTTurb
TEqn.H
1
// Solve temperature equation
2
{
3
alphat = turbulence->nut() / Prt;
4
alphat.correctBoundaryConditions();
5
volScalarField alphaEff(
"alphaEff"
, nu / Pr + alphat);
6
7
fvScalarMatrix TEqn
8
(
9
fvm::ddt(T)
10
+ fvm::div(phi, T)
11
- fvm::laplacian(alphaEff, T)
12
);
13
TEqn.relax();
14
TEqn.solve();
15
16
}
Generated by
1.16.1