repo.or.cz
/
foam-extend-3.2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bugfix: restored floatTransfer flag
[foam-extend-3.2.git]
/
applications
/
solvers
/
lagrangian
/
reactingParcelFoam
/
hsEqn.H
blob
ce12ec3ad48f74de6a2977558cead524ffc6e460
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()
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
}