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: directMappedFixedValue: use different tag
[OpenFOAM-2.0.x.git]
/
applications
/
solvers
/
combustion
/
XiFoam
/
hEqn.H
blob
513ae604419f28b96bbf455e8ed0bc1e75d258bb
1
{
2
fvScalarMatrix hEqn
3
(
4
fvm::ddt(rho, h)
5
+ mvConvection->fvmDiv(phi, h)
6
- fvm::laplacian(turbulence->alphaEff(), h)
7
==
8
DpDt
9
);
10
11
hEqn.relax();
12
hEqn.solve();
13
14
thermo.correct();
15
}