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
Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git]
/
applications
/
solvers
/
compressible
/
rhoPimpleFoam
/
hEqn.H
blob
3125cc3ffa86ce120e7dbbf774c9b46941105418
1
{
2
fvScalarMatrix hEqn
3
(
4
fvm::ddt(rho, h)
5
+ fvm::div(phi, h)
6
- fvm::laplacian(turbulence->alphaEff(), h)
7
==
8
DpDt
9
);
10
11
hEqn.relax();
12
hEqn.solve();
13
14
thermo.correct();
15
}