FreeFOAM The Cross-Platform CFD Toolkit
compressibleMultiRegionCourantNo.H
Go to the documentation of this file.
1  scalar CoNum = -GREAT;
2 
3  forAll(fluidRegions, regionI)
4  {
5  CoNum = max
6  (
8  (
9  fluidRegions[regionI],
10  runTime,
11  rhoFluid[regionI],
12  phiFluid[regionI]
13  ),
14  CoNum
15  );
16  }
17 
18 // ************************ vim: set sw=4 sts=4 et: ************************ //