repo.or.cz
/
OpenFOAM-2.0.x.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git]
/
applications
/
solvers
/
combustion
/
rhoReactingFoam
/
hsEqn.H
blob
81bd6ea9d7bb4a03834d5db86deb7d728eb3d9db
1
{
2
fvScalarMatrix hsEqn
3
(
4
fvm::ddt(rho, hs)
5
+ mvConvection->fvmDiv(phi, hs)
6
- fvm::laplacian(turbulence->alphaEff(), hs)
7
==
8
DpDt
9
+ chemistrySh
10
);
11
12
hsEqn.relax();
13
hsEqn.solve();
14
15
thermo.correct();
16
17
Info<< "T gas min/max = " << min(T).value() << ", "
18
<< max(T).value() << endl;
19
}