FreeFOAM The Cross-Platform CFD Toolkit
compressibleMultiRegionCourantNo.H
Go to the documentation of this file.
1  scalar CoNum = -GREAT;
2  forAll(fluidRegions, regionI)
3  {
4  CoNum = max
5  (
7  (
8  fluidRegions[regionI],
9  runTime,
10  rhoFluid[regionI],
11  phiFluid[regionI]
12  ),
13  CoNum
14  );
15  }