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
Removed unneeded lib dependency from mdInitialise
[foam-extend-3.2.git]
/
applications
/
solvers
/
lagrangian
/
coalChemistryFoam
/
hsEqn.H
blob
ced6b6400448a84182e7fba55a56bb06d18f14ab
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
+ coalParcels.Sh()
10
+ limestoneParcels.Sh()
11
+ enthalpySource.Su()
12
+ radiation->Shs(thermo)
13
+ chemistrySh
14
);
15
16
hsEqn.relax();
17
18
hsEqn.solve();
19
20
thermo.correct();
21
22
radiation->correct();
23
24
Info<< "T gas min/max = " << min(T).value() << ", "
25
<< max(T).value() << endl;
26
}