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
/
multiphase
/
twoPhaseEulerFoam
/
CourantNos.H
blob
ae6a13feb06fb051428dde4f1fb62fdd3c52e1ef
1
# include "CourantNo.H"
2
3
{
4
scalar UrCoNum = 0.5*gMax
5
(
6
fvc::surfaceSum(mag(phia - phib))().internalField()/mesh.V().field()
7
)*runTime.deltaTValue();
8
9
Info<< "Max Ur Courant Number = " << UrCoNum << endl;
10
11
CoNum = max(CoNum, UrCoNum);
12
}