This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/heatTransfer/buoyantBoussinesqSimpleFoam/TEqn.H

20 lines
325 B
C++
Raw Normal View History

2010-08-26 14:22:03 +00:00
{
volScalarField kappaEff
(
"kappaEff",
turbulence->nu()/Pr + turbulence->nut()/Prt
);
fvScalarMatrix TEqn
(
fvm::div(phi, T)
+ fvm::SuSp(-fvc::div(phi), T)
2010-08-26 14:22:03 +00:00
- fvm::laplacian(kappaEff, T)
);
TEqn.relax();
TEqn.solve();
2010-08-26 14:22:03 +00:00
rhok = 1.0 - beta*(T - TRef);
}