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
/
multiphase
/
twoPhaseEulerFoam
/
CourantNos.H
blob
75dcd68c7fbde8e856b00651af8b22b3fbeb624a
1
# include "CourantNo.H"
2
3
{
4
scalar UrCoNum = max
5
(
6
mesh.surfaceInterpolation::deltaCoeffs()*mag(phia - phib)
7
/mesh.magSf()
8
).value()*runTime.deltaT().value();
9
10
Info<< "Max Ur Courant Number = " << UrCoNum << endl;
11
12
CoNum = max(CoNum, UrCoNum);
13
}