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
/
lagrangian
/
reactingParcelFoam
/
hsEqn.H
blob
7821d340d4bc6b1f955b94dcb770fd9454acdf95
1
{
2
fvScalarMatrix hEqn
3
(
4
fvm::ddt(rho, hs)
5
+ mvConvection->fvmDiv(phi, hs)
6
- fvm::laplacian(turbulence->alphaEff(), hs)
7
==
8
DpDt
9
+ parcels.Sh(hs)
10
+ radiation->Shs(thermo)
11
+ chemistrySh
12
);
13
14
hEqn.relax();
15
16
hEqn.solve();
17
18
thermo.correct();
19
20
radiation->correct();
21
22
Info<< "T gas min/max = " << min(T).value() << ", "
23
<< max(T).value() << endl;
24
}