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
BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git]
/
applications
/
solvers
/
combustion
/
reactingFoam
/
hsEqn.H
blob
e3fa4e7a135adb1539de8d1e548329a8f97c7a06
1
{
2
fvScalarMatrix hsEqn
3
(
4
fvm::ddt(rho, hs)
5
+ mvConvection->fvmDiv(phi, hs)
6
- fvm::laplacian(turbulence->alphaEff(), hs)
7
// - fvm::laplacian(turbulence->muEff(), hs) // unit lewis no.
8
==
9
DpDt
10
+ chemistrySh
11
);
12
13
hsEqn.relax();
14
hsEqn.solve();
15
16
thermo.correct();
17
18
Info<< "T gas min/max = " << min(T).value() << ", "
19
<< max(T).value() << endl;
20
}