turbulent/aorta3d produces NaN with 40 MPI ranks but not with 80 MPI ranks
Example turbulent/aorta3d
produces NaN
with 40 MPI ranks but not with 80 MPI ranks. The behavior is reproducable.
This is unexpected.
Loaded Modules
Currently Loaded Modules:
1) release/24.04 (S) 4) zlib/1.3.1 7) numactl/2.0.18 10) libpciaccess/0.18.1 13) libevent/2.1.12 16) PMIx/5.0.2 19) OpenMPI/5.0.3
2) slurm/slurm-paths (S) 5) binutils/2.42 8) XZ/5.4.5 11) hwloc/2.10.0 14) UCX/1.16.0 17) PRRTE/3.0.5 20) gompi/2024.05
3) GCCcore/13.3.0 6) GCC/13.3.0 9) libxml2/2.12.7 12) OpenSSL/3 15) libfabric/1.21.0 18) UCC/1.3.0
Where:
S: Module is Sticky, requires --force to unload or purge
config.mk
# OpenLB build configuration
#
# This file sets up the necessary build flags for compiling OpenLB with
# the GNU C++ compiler and sequential execution. For more complex setups
# edit this file or consult the example configs provided in `config/`.
#
# Basic usage:
# - Edit variables to fit desired configuration
# - Run `make clean; make` to clean up any previous artifacts and compile the dependencies
# - Switch to example directory, e.g. `examples/laminar/poiseuille2d`
# - Run `make`
# - Start the simulation using `./poiseuille2d`
# Compiler to use for C++ files, change to `mpic++` when using OpenMPI and GCC
CXX := mpic++
# Compiler to use for C files (used for emebedded dependencies)
CC := gcc
# Suggested optimized build flags for GCC, consult `config/` for further examples
CXXFLAGS := -O3 -Wall -march=native -mtune=native
# Uncomment to add debug symbols and enable runtime asserts
#CXXFLAGS += -g -DOLB_DEBUG
# OpenLB requires support for C++20
# works in:
# * gcc 9 or later (https://gcc.gnu.org/projects/cxx-status.html#cxx17)
# * icc 19.0 or later (https://software.intel.com/en-us/articles/c17-features-supported-by-intel-c-compiler)
# * clang 7 or later (https://clang.llvm.org/cxx_status.html#cxx17)
CXXFLAGS += -std=c++20
# optional linker flags
LDFLAGS :=
# Parallelization mode, must be one of: OFF, MPI, OMP, HYBRID
# Note that for MPI and HYBRID the compiler also needs to be adapted.
# See e.g. `config/cpu_gcc_openmpi.mk`
PARALLEL_MODE := MPI
# optional MPI and OpenMP flags
MPIFLAGS :=
OMPFLAGS :=
# Options: CPU_SISD, CPU_SIMD, GPU_CUDA
# Both CPU_SIMD and GPU_CUDA require system-specific adjustment of compiler flags.
# See e.g. `config/cpu_simd_intel_mpi.mk` or `config/gpu_only.mk` for examples.
# CPU_SISD must always be present.
PLATFORMS := CPU_SISD
# Fundamental arithmetic data type
# Common options are float or double
FLOATING_POINT_TYPE := double
# Any entries are passed to the compiler as `-DFEATURE_*` declarations
# Used to enable some alternative code paths and dependencies
FEATURES :=
# Set to OFF if libz and tinyxml2 are provided by the system (optional)
USE_EMBEDDED_DEPENDENCIES := ON
stdout 40 ranks
[MpiManager] Sucessfully initialized, numThreads=40
[ThreadPool] Sucessfully initialized, numThreads=1
[UnitConverter] ----------------- UnitConverter information -----------------
[UnitConverter] -- Parameters:
[UnitConverter] Resolution: N= 40
[UnitConverter] Lattice velocity: latticeU= 0.0225
[UnitConverter] Lattice relaxation frequency: omega= 1.99697
[UnitConverter] Lattice relaxation time: tau= 0.50076
[UnitConverter] Characteristical length(m): charL= 0.02246
[UnitConverter] Characteristical speed(m/s): charU= 0.45
[UnitConverter] Phys. kinematic viscosity(m^2/s): charNu= 2.8436e-06
[UnitConverter] Phys. density(kg/m^d): charRho= 1055
[UnitConverter] Characteristical pressure(N/m^2): charPressure= 0
[UnitConverter] Mach number: machNumber= 0.0389711
[UnitConverter] Reynolds number: reynoldsNumber= 3554.3
[UnitConverter] Knudsen number: knudsenNumber= 1.09645e-05
[UnitConverter] Characteristical CFL number: charCFLnumber= 0.0225
[UnitConverter]
[UnitConverter] -- Conversion factors:
[UnitConverter] Voxel length(m): physDeltaX= 0.0005615
[UnitConverter] Time step(s): physDeltaT= 2.8075e-05
[UnitConverter] Velocity factor(m/s): physVelocity= 20
[UnitConverter] Density factor(kg/m^3): physDensity= 1055
[UnitConverter] Mass factor(kg): physMass= 1.86768e-07
[UnitConverter] Viscosity factor(m^2/s): physViscosity= 0.01123
[UnitConverter] Force factor(N): physForce= 0.133049
[UnitConverter] Pressure factor(N/m^2): physPressure= 422000
[UnitConverter] -------------------------------------------------------------
[UnitConverter] WARNING:
[UnitConverter] Potentially UNSTABLE combination of relaxation time (tau=0.50076)
[UnitConverter] and characteristical CFL number (lattice velocity) charCFLnumber=0.0225!
[UnitConverter] Potentially maximum characteristical CFL number (maxCharCFLnumber=0.00607715)
[UnitConverter] Actual characteristical CFL number (charCFLnumber=0.0225) > 0.00607715
[UnitConverter] Please reduce the the cell size or the time step size!
[UnitConverter] We recommend to use the cell size of 0.000151659 m and the time step size of 7.58294e-06 s.
[UnitConverter] -------------------------------------------------------------
[STLreader] Voxelizing ...
[STLmesh] nTriangles=2654; maxDist2=0.000610779
[STLmesh] minPhysR(StlMesh)=(0.199901,0.0900099,0.0117236); maxPhysR(StlMesh)=(0.243584,0.249987,0.0398131)
[Octree] radius=0.143744; center=(0.221602,0.169858,0.025628)
[STLreader] voxelSize=0.0005615; stlSize=0.001
[STLreader] minPhysR(VoxelMesh)=(0.199984,0.0904058,0.0118712); maxPhysR(VoxelMesh)=(0.24322,0.249872,0.0393847)
[STLreader] Voxelizing ... OK
[prepareGeometry] Prepare Geometry ...
[SuperGeometry3D] cleaned 0 outer boundary voxel(s)
[SuperGeometry3D] cleaned 0 outer boundary voxel(s)
[SuperGeometry3D] cleaned 0 inner boundary voxel(s) of Type 3
[SuperGeometryStatistics3D] updated
[SuperGeometry3D] the model is correct!
[CuboidDecomposition] ---Cuboid Structure Statistics---
[CuboidDecomposition] Number of Cuboids: 320
[CuboidDecomposition] Delta : 0.0005615
[CuboidDecomposition] Ratio (min): 0.466667
[CuboidDecomposition] (max): 2
[CuboidDecomposition] Nodes (min): 315
[CuboidDecomposition] (max): 1260
[CuboidDecomposition] Weight (min): 130
[CuboidDecomposition] (max): 1260
[CuboidDecomposition] --------------------------------
[SuperGeometryStatistics3D] materialNumber=0; count=57720; minPhysR=(0.199984,0.0898443,0.0113097); maxPhysR=(0.243781,0.250433,0.0399462)
[SuperGeometryStatistics3D] materialNumber=1; count=171218; minPhysR=(0.200546,0.0904058,0.0118712); maxPhysR=(0.24322,0.249872,0.0393847)
[SuperGeometryStatistics3D] materialNumber=2; count=41071; minPhysR=(0.199984,0.0898443,0.0113097); maxPhysR=(0.243781,0.250433,0.0399462)
[SuperGeometryStatistics3D] materialNumber=3; count=1059; minPhysR=(0.208407,0.250433,0.0124327); maxPhysR=(0.228059,0.250433,0.0332082)
[SuperGeometryStatistics3D] materialNumber=4; count=245; minPhysR=(0.200546,0.0898443,0.0298392); maxPhysR=(0.210653,0.0898443,0.0388232)
[SuperGeometryStatistics3D] materialNumber=5; count=239; minPhysR=(0.234236,0.0898443,0.0287162); maxPhysR=(0.24322,0.0898443,0.0388232)
[SuperGeometryStatistics3D] countTotal[1e6]=0.271552
[prepareGeometry] Prepare Geometry ... OK
[prepareLattice] Prepare Lattice ...
[prepareLattice] Prepare Lattice ... OK
[Timer]
[Timer] ----------------Summary:Timer----------------
[Timer] measured time (rt) : 0.69s
[Timer] measured time (cpu): 0.028s
[Timer] ---------------------------------------------
[main] starting simulation...
[Timer] step=0; percent=0; passedTime=2.262; remTime=161138; MLUPs=0
[LatticeStatistics] step=0; physT=0; maxCFL=1.49167e-154; avgEnergy=0; avgRho=1
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=0; meanVelocity[m/s]=0
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0; meanPressure[mmHg]=0
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=0; meanVelocity[m/s]=0
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0; meanPressure[mmHg]=0
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=0; meanVelocity[m/s]=0
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0; meanPressure[mmHg]=0
[getResults] yPlusMax=2.22507e-308
[Timer] step=3562; percent=5.00014; passedTime=13.994; remTime=265.878; MLUPs=64.9279
[LatticeStatistics] step=3562; physT=0.100003; maxCFL=0.00386826; avgEnergy=1.7255e-06; avgRho=1.00071
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=6.63717; meanVelocity[m/s]=0.0213504
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.0498357; meanPressure[mmHg]=1.20244
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-2.97701; meanVelocity[m/s]=-0.0465142
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.000693914; meanPressure[mmHg]=0.081322
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-2.82059; meanVelocity[m/s]=-0.0454123
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.000404587; meanPressure[mmHg]=0.0488589
[getResults] yPlusMax=0.676563
[Timer] step=7124; percent=10.0003; passedTime=56.988; remTime=512.876; MLUPs=17.7157
[LatticeStatistics] step=7124; physT=0.200006; maxCFL=0.0147896; avgEnergy=2.55054e-05; avgRho=1.0015
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=24.2108; meanVelocity[m/s]=0.0778812
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.100172; meanPressure[mmHg]=2.41695
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-11.8325; meanVelocity[m/s]=-0.184876
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00162696; meanPressure[mmHg]=0.190669
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-11.0871; meanVelocity[m/s]=-0.178505
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.0014338; meanPressure[mmHg]=0.17315
[getResults] yPlusMax=1.24911
[Timer] step=10686; percent=15.0004; passedTime=69.263; remTime=392.477; MLUPs=62.0505
[LatticeStatistics] step=10686; physT=0.300009; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=14248; percent=20.0006; passedTime=81.481; remTime=325.913; MLUPs=62.34
[LatticeStatistics] step=14248; physT=0.400013; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=17810; percent=25.0007; passedTime=93.718; remTime=281.143; MLUPs=62.2482
[LatticeStatistics] step=17810; physT=0.500016; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=21372; percent=30.0008; passedTime=106.14; remTime=247.65; MLUPs=61.3112
[LatticeStatistics] step=21372; physT=0.600019; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=24934; percent=35.001; passedTime=118.554; remTime=220.162; MLUPs=61.3606
[LatticeStatistics] step=24934; physT=0.700022; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=28496; percent=40.0011; passedTime=168.598; remTime=252.885; MLUPs=15.2203
[LatticeStatistics] step=28496; physT=0.800025; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=32058; percent=45.0013; passedTime=181.171; remTime=221.42; MLUPs=60.575
[LatticeStatistics] step=32058; physT=0.900028; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=35620; percent=50.0014; passedTime=193.733; remTime=193.722; MLUPs=60.6377
[LatticeStatistics] step=35620; physT=1.00003; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=39182; percent=55.0015; passedTime=206.162; remTime=168.667; MLUPs=61.2767
[LatticeStatistics] step=39182; physT=1.10003; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=42744; percent=60.0017; passedTime=218.56; remTime=145.696; MLUPs=61.4349
[LatticeStatistics] step=42744; physT=1.20004; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=46306; percent=65.0018; passedTime=266.596; remTime=143.54; MLUPs=15.8566
[LatticeStatistics] step=46306; physT=1.30004; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=49868; percent=70.002; passedTime=279.205; remTime=119.648; MLUPs=60.402
[LatticeStatistics] step=49868; physT=1.40004; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=53430; percent=75.0021; passedTime=291.78; remTime=97.2491; MLUPs=60.575
[LatticeStatistics] step=53430; physT=1.50005; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=56992; percent=80.0022; passedTime=304.617; remTime=76.1436; MLUPs=59.3339
[LatticeStatistics] step=56992; physT=1.60005; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=60554; percent=85.0024; passedTime=317.302; remTime=55.984; MLUPs=60.0402
[LatticeStatistics] step=60554; physT=1.70005; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=64116; percent=90.0025; passedTime=329.789; remTime=36.6329; MLUPs=60.997
[LatticeStatistics] step=64116; physT=1.80006; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer] step=67678; percent=95.0027; passedTime=373.065; remTime=19.624; MLUPs=17.6003
[LatticeStatistics] step=67678; physT=1.90006; maxCFL=0; avgEnergy=-nan; avgRho=-nan
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=nan; meanVelocity[m/s]=nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-nan; meanPressure[mmHg]=nan
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-nan; meanVelocity[m/s]=-nan
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=-nan; meanPressure[mmHg]=nan
[getResults] yPlusMax=2.22507e-308
[Timer]
[Timer] ----------------Summary:Timer----------------
[Timer] measured time (rt) : 385.977s
[Timer] measured time (cpu): 359.165s
[Timer] average MLUPs : 37.494
[Timer] average MLUPps: 0.937
[Timer] ---------------------------------------------
stdout 80 ranks
[MpiManager] Sucessfully initialized, numThreads=80
[ThreadPool] Sucessfully initialized, numThreads=1
[UnitConverter] ----------------- UnitConverter information -----------------
[UnitConverter] -- Parameters:
[UnitConverter] Resolution: N= 40
[UnitConverter] Lattice velocity: latticeU= 0.0225
[UnitConverter] Lattice relaxation frequency: omega= 1.99697
[UnitConverter] Lattice relaxation time: tau= 0.50076
[UnitConverter] Characteristical length(m): charL= 0.02246
[UnitConverter] Characteristical speed(m/s): charU= 0.45
[UnitConverter] Phys. kinematic viscosity(m^2/s): charNu= 2.8436e-06
[UnitConverter] Phys. density(kg/m^d): charRho= 1055
[UnitConverter] Characteristical pressure(N/m^2): charPressure= 0
[UnitConverter] Mach number: machNumber= 0.0389711
[UnitConverter] Reynolds number: reynoldsNumber= 3554.3
[UnitConverter] Knudsen number: knudsenNumber= 1.09645e-05
[UnitConverter] Characteristical CFL number: charCFLnumber= 0.0225
[UnitConverter]
[UnitConverter] -- Conversion factors:
[UnitConverter] Voxel length(m): physDeltaX= 0.0005615
[UnitConverter] Time step(s): physDeltaT= 2.8075e-05
[UnitConverter] Velocity factor(m/s): physVelocity= 20
[UnitConverter] Density factor(kg/m^3): physDensity= 1055
[UnitConverter] Mass factor(kg): physMass= 1.86768e-07
[UnitConverter] Viscosity factor(m^2/s): physViscosity= 0.01123
[UnitConverter] Force factor(N): physForce= 0.133049
[UnitConverter] Pressure factor(N/m^2): physPressure= 422000
[UnitConverter] -------------------------------------------------------------
[UnitConverter] WARNING:
[UnitConverter] Potentially UNSTABLE combination of relaxation time (tau=0.50076)
[UnitConverter] and characteristical CFL number (lattice velocity) charCFLnumber=0.0225!
[UnitConverter] Potentially maximum characteristical CFL number (maxCharCFLnumber=0.00607715)
[UnitConverter] Actual characteristical CFL number (charCFLnumber=0.0225) > 0.00607715
[UnitConverter] Please reduce the the cell size or the time step size!
[UnitConverter] We recommend to use the cell size of 0.000151659 m and the time step size of 7.58294e-06 s.
[UnitConverter] -------------------------------------------------------------
[STLreader] Voxelizing ...
[STLmesh] nTriangles=2654; maxDist2=0.000610779
[STLmesh] minPhysR(StlMesh)=(0.199901,0.0900099,0.0117236); maxPhysR(StlMesh)=(0.243584,0.249987,0.0398131)
[Octree] radius=0.143744; center=(0.221602,0.169858,0.025628)
[STLreader] voxelSize=0.0005615; stlSize=0.001
[STLreader] minPhysR(VoxelMesh)=(0.199984,0.0904058,0.0118712); maxPhysR(VoxelMesh)=(0.24322,0.249872,0.0393847)
[STLreader] Voxelizing ... OK
[prepareGeometry] Prepare Geometry ...
[SuperGeometry3D] cleaned 0 outer boundary voxel(s)
[SuperGeometry3D] cleaned 0 outer boundary voxel(s)
[SuperGeometry3D] cleaned 0 inner boundary voxel(s) of Type 3
[SuperGeometryStatistics3D] updated
[SuperGeometry3D] the model is correct!
[CuboidDecomposition] ---Cuboid Structure Statistics---
[CuboidDecomposition] Number of Cuboids: 640
[CuboidDecomposition] Delta : 0.0005615
[CuboidDecomposition] Ratio (min): 0.142857
[CuboidDecomposition] (max): 6
[CuboidDecomposition] Nodes (min): 6
[CuboidDecomposition] (max): 616
[CuboidDecomposition] Weight (min): 4
[CuboidDecomposition] (max): 616
[CuboidDecomposition] --------------------------------
[SuperGeometryStatistics3D] materialNumber=0; count=43007; minPhysR=(0.199984,0.0898443,0.0113097); maxPhysR=(0.243781,0.250433,0.0399462)
[SuperGeometryStatistics3D] materialNumber=1; count=171218; minPhysR=(0.200546,0.0904058,0.0118712); maxPhysR=(0.24322,0.249872,0.0393847)
[SuperGeometryStatistics3D] materialNumber=2; count=41071; minPhysR=(0.199984,0.0898443,0.0113097); maxPhysR=(0.243781,0.250433,0.0399462)
[SuperGeometryStatistics3D] materialNumber=3; count=1059; minPhysR=(0.208407,0.250433,0.0124327); maxPhysR=(0.228059,0.250433,0.0332082)
[SuperGeometryStatistics3D] materialNumber=4; count=245; minPhysR=(0.200546,0.0898443,0.0298392); maxPhysR=(0.210653,0.0898443,0.0388232)
[SuperGeometryStatistics3D] materialNumber=5; count=239; minPhysR=(0.234236,0.0898443,0.0287162); maxPhysR=(0.24322,0.0898443,0.0388232)
[SuperGeometryStatistics3D] countTotal[1e6]=0.256839
[prepareGeometry] Prepare Geometry ... OK
[prepareLattice] Prepare Lattice ...
[prepareLattice] Prepare Lattice ... OK
[Timer]
[Timer] ----------------Summary:Timer----------------
[Timer] measured time (rt) : 0.29s
[Timer] measured time (cpu): 0.030s
[Timer] ---------------------------------------------
[main] starting simulation...
[Timer] step=0; percent=0; passedTime=7.543; remTime=537341; MLUPs=0
[LatticeStatistics] step=0; physT=0; maxCFL=1.49167e-154; avgEnergy=0; avgRho=1
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=0; meanVelocity[m/s]=0
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0; meanPressure[mmHg]=0
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=0; meanVelocity[m/s]=0
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0; meanPressure[mmHg]=0
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=0; meanVelocity[m/s]=0
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0; meanPressure[mmHg]=0
[getResults] yPlusMax=2.22507e-308
[Timer] step=3562; percent=5.00014; passedTime=23.314; remTime=442.953; MLUPs=48.2925
[LatticeStatistics] step=3562; physT=0.100003; maxCFL=0.0038643; avgEnergy=1.7255e-06; avgRho=1.00071
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=6.63716; meanVelocity[m/s]=0.0213504
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.0498706; meanPressure[mmHg]=1.20328
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-2.97684; meanVelocity[m/s]=-0.0465114
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.000699594; meanPressure[mmHg]=0.0819877
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-2.81904; meanVelocity[m/s]=-0.0453874
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.000412264; meanPressure[mmHg]=0.049786
[getResults] yPlusMax=0.676563
[Timer] step=7124; percent=10.0003; passedTime=72.016; remTime=648.124; MLUPs=15.6394
[LatticeStatistics] step=7124; physT=0.200006; maxCFL=0.0147924; avgEnergy=2.55048e-05; avgRho=1.0015
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=24.2108; meanVelocity[m/s]=0.0778811
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.100272; meanPressure[mmHg]=2.41935
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-11.8326; meanVelocity[m/s]=-0.184877
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00164362; meanPressure[mmHg]=0.192621
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-11.0842; meanVelocity[m/s]=-0.178458
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00145504; meanPressure[mmHg]=0.175714
[getResults] yPlusMax=1.24911
[Timer] step=10686; percent=15.0004; passedTime=87.577; remTime=496.253; MLUPs=48.9505
[LatticeStatistics] step=10686; physT=0.300009; maxCFL=0.0289597; avgEnergy=9.48042e-05; avgRho=1.0021
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=45.9148; meanVelocity[m/s]=0.147698
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.132621; meanPressure[mmHg]=3.19987
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-22.3886; meanVelocity[m/s]=-0.34981
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00165736; meanPressure[mmHg]=0.194232
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-21.2026; meanVelocity[m/s]=-0.341368
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00203651; meanPressure[mmHg]=0.245934
[getResults] yPlusMax=1.64017
[Timer] step=14248; percent=20.0006; passedTime=102.938; remTime=411.738; MLUPs=49.5846
[LatticeStatistics] step=14248; physT=0.400013; maxCFL=0.0420971; avgEnergy=0.000186391; avgRho=1.00258
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=63.4921; meanVelocity[m/s]=0.204241
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.156372; meanPressure[mmHg]=3.77294
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-30.5156; meanVelocity[m/s]=-0.476789
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.0036545; meanPressure[mmHg]=0.428283
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-29.3125; meanVelocity[m/s]=-0.47194
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00294894; meanPressure[mmHg]=0.356122
[getResults] yPlusMax=1.86064
[Timer] step=17810; percent=25.0007; passedTime=118.812; remTime=356.423; MLUPs=47.9792
[LatticeStatistics] step=17810; physT=0.500016; maxCFL=0.0489223; avgEnergy=0.000234644; avgRho=1.00234
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=70.4152; meanVelocity[m/s]=0.226511
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.137193; meanPressure[mmHg]=3.3102
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-33.4251; meanVelocity[m/s]=-0.522249
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00388151; meanPressure[mmHg]=0.454886
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-32.7851; meanVelocity[m/s]=-0.527851
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00335262; meanPressure[mmHg]=0.404871
[getResults] yPlusMax=1.93338
[Timer] step=21372; percent=30.0008; passedTime=134.161; remTime=313.03; MLUPs=49.6202
[LatticeStatistics] step=21372; physT=0.600019; maxCFL=0.0470081; avgEnergy=0.000198542; avgRho=1.00142
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=63.8551; meanVelocity[m/s]=0.205409
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.0743102; meanPressure[mmHg]=1.79296
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-30.3196; meanVelocity[m/s]=-0.473726
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00371423; meanPressure[mmHg]=0.435283
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-29.6155; meanVelocity[m/s]=-0.476818
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00304101; meanPressure[mmHg]=0.36724
[getResults] yPlusMax=1.87194
[Timer] step=24934; percent=35.001; passedTime=183.317; remTime=340.431; MLUPs=15.4953
[LatticeStatistics] step=24934; physT=0.700022; maxCFL=0.0381693; avgEnergy=0.000109894; avgRho=1.00022
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=46.4004; meanVelocity[m/s]=0.149261
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.00130079; meanPressure[mmHg]=0.0313855
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-22.1244; meanVelocity[m/s]=-0.345682
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00322505; meanPressure[mmHg]=0.377954
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-21.5073; meanVelocity[m/s]=-0.346274
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00235566; meanPressure[mmHg]=0.284475
[getResults] yPlusMax=1.66823
[Timer] step=28496; percent=40.0011; passedTime=198.072; remTime=297.094; MLUPs=51.6211
[LatticeStatistics] step=28496; physT=0.800025; maxCFL=0.0239998; avgEnergy=3.62386e-05; avgRho=0.999437
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=24.7224; meanVelocity[m/s]=0.0795271
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-0.0429037; meanPressure[mmHg]=1.03518
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-11.4503; meanVelocity[m/s]=-0.178905
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00186782; meanPressure[mmHg]=0.218895
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-11.6757; meanVelocity[m/s]=-0.187982
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00134697; meanPressure[mmHg]=0.162664
[getResults] yPlusMax=1.30112
[Timer] step=32058; percent=45.0013; passedTime=212.696; remTime=259.949; MLUPs=52.0871
[LatticeStatistics] step=32058; physT=0.900028; maxCFL=0.0115369; avgEnergy=7.54386e-06; avgRho=0.999427
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=6.85389; meanVelocity[m/s]=0.0220476
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-0.0424613; meanPressure[mmHg]=1.02451
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-2.7878; meanVelocity[m/s]=-0.0435578
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.000262674; meanPressure[mmHg]=0.0307836
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-3.59323; meanVelocity[m/s]=-0.0578522
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.000515766; meanPressure[mmHg]=0.0622853
[getResults] yPlusMax=0.753439
[Timer] step=35620; percent=50.0014; passedTime=227.351; remTime=227.338; MLUPs=51.9698
[LatticeStatistics] step=35620; physT=1.00003; maxCFL=0.00740113; avgEnergy=3.1858e-06; avgRho=0.999956
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=0.0390478; meanVelocity[m/s]=0.000125609
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-0.00307509; meanPressure[mmHg]=0.0741958
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=0.408489; meanVelocity[m/s]=0.0063824
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=-0.000243388; meanPressure[mmHg]=0.0285234
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-0.282102; meanVelocity[m/s]=-0.00454192
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.000168265; meanPressure[mmHg]=0.0203201
[getResults] yPlusMax=0.268913
[Timer] step=39182; percent=55.0015; passedTime=241.943; remTime=197.941; MLUPs=52.1978
[LatticeStatistics] step=39182; physT=1.10003; maxCFL=0.00847602; avgEnergy=3.81926e-06; avgRho=1.00073
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=6.60261; meanVelocity[m/s]=0.0212393
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.0485216; meanPressure[mmHg]=1.17073
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-2.86263; meanVelocity[m/s]=-0.0447271
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.000513169; meanPressure[mmHg]=0.0601399
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-3.14994; meanVelocity[m/s]=-0.0507151
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.000557078; meanPressure[mmHg]=0.0672741
[getResults] yPlusMax=0.6757
[Timer] step=42744; percent=60.0017; passedTime=294.244; remTime=196.149; MLUPs=14.5629
[LatticeStatistics] step=42744; physT=1.20004; maxCFL=0.0169357; avgEnergy=2.67268e-05; avgRho=1.00146
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=24.0915; meanVelocity[m/s]=0.0774976
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.0939317; meanPressure[mmHg]=2.26639
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-11.3256; meanVelocity[m/s]=-0.176956
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00104873; meanPressure[mmHg]=0.122904
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-11.2976; meanVelocity[m/s]=-0.181894
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.001161; meanPressure[mmHg]=0.140206
[getResults] yPlusMax=1.25297
[Timer] step=46306; percent=65.0018; passedTime=309.426; remTime=166.601; MLUPs=50.1693
[LatticeStatistics] step=46306; physT=1.30004; maxCFL=0.0296814; avgEnergy=9.5653e-05; avgRho=1.0021
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=46.0761; meanVelocity[m/s]=0.148217
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.137559; meanPressure[mmHg]=3.31903
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-22.2706; meanVelocity[m/s]=-0.347966
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00289248; meanPressure[mmHg]=0.33898
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-21.3708; meanVelocity[m/s]=-0.344076
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00205543; meanPressure[mmHg]=0.248219
[getResults] yPlusMax=1.64164
[Timer] step=49868; percent=70.002; passedTime=324.78; remTime=139.178; MLUPs=49.6072
[LatticeStatistics] step=49868; physT=1.40004; maxCFL=0.0432703; avgEnergy=0.000186948; avgRho=1.00255
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=63.6033; meanVelocity[m/s]=0.204599
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.158199; meanPressure[mmHg]=3.81703
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-30.6739; meanVelocity[m/s]=-0.479263
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00326927; meanPressure[mmHg]=0.383136
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-29.2269; meanVelocity[m/s]=-0.470561
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00323785; meanPressure[mmHg]=0.391011
[getResults] yPlusMax=1.85948
[Timer] step=53430; percent=75.0021; passedTime=340.213; remTime=113.392; MLUPs=49.3533
[LatticeStatistics] step=53430; physT=1.50005; maxCFL=0.0493976; avgEnergy=0.000235035; avgRho=1.00234
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=70.4223; meanVelocity[m/s]=0.226534
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.137145; meanPressure[mmHg]=3.30903
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-33.4733; meanVelocity[m/s]=-0.523001
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00364261; meanPressure[mmHg]=0.42689
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-32.9584; meanVelocity[m/s]=-0.530641
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00327307; meanPressure[mmHg]=0.395264
[getResults] yPlusMax=1.93295
[Timer] step=56992; percent=80.0022; passedTime=355.521; remTime=88.8678; MLUPs=49.7596
[LatticeStatistics] step=56992; physT=1.60005; maxCFL=0.0466455; avgEnergy=0.000198457; avgRho=1.00139
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=63.9244; meanVelocity[m/s]=0.205632
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=0.0752115; meanPressure[mmHg]=1.8147
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-30.2979; meanVelocity[m/s]=-0.473388
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00345014; meanPressure[mmHg]=0.404334
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-29.691; meanVelocity[m/s]=-0.478034
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00310834; meanPressure[mmHg]=0.375371
[getResults] yPlusMax=1.87109
[Timer] step=60554; percent=85.0024; passedTime=405.313; remTime=71.5124; MLUPs=15.2967
[LatticeStatistics] step=60554; physT=1.70005; maxCFL=0.0380243; avgEnergy=0.00010997; avgRho=1.00023
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=46.3605; meanVelocity[m/s]=0.149132
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-0.000463554; meanPressure[mmHg]=0.0111846
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-22.1272; meanVelocity[m/s]=-0.345725
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00223282; meanPressure[mmHg]=0.261672
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-21.5626; meanVelocity[m/s]=-0.347164
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00227367; meanPressure[mmHg]=0.274575
[getResults] yPlusMax=1.6667
[Timer] step=64116; percent=90.0025; passedTime=421.386; remTime=46.8075; MLUPs=47.3881
[LatticeStatistics] step=64116; physT=1.80006; maxCFL=0.0238193; avgEnergy=3.62017e-05; avgRho=0.999426
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=24.556; meanVelocity[m/s]=0.0789917
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-0.0493651; meanPressure[mmHg]=1.19108
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-11.2964; meanVelocity[m/s]=-0.1765
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.00081434; meanPressure[mmHg]=0.0954352
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-11.705; meanVelocity[m/s]=-0.188455
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.00100196; meanPressure[mmHg]=0.121
[getResults] yPlusMax=1.30299
[Timer] step=67678; percent=95.0027; passedTime=436.635; remTime=22.9679; MLUPs=49.9521
[LatticeStatistics] step=67678; physT=1.90006; maxCFL=0.0114136; avgEnergy=7.53238e-06; avgRho=0.999431
[SuperPlaneIntegralFluxVelocity3D] regionName=inflow; regionSize[m^2]=0.000310868; volumetricFlowRate[ml/s]=6.86156; meanVelocity[m/s]=0.0220722
[SuperPlaneIntegralFluxPressure3D] regionName=inflow; regionSize[m^2]=0.000310868; force[N]=-0.0414334; meanPressure[mmHg]=0.999705
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; volumetricFlowRate[ml/s]=-2.59825; meanVelocity[m/s]=-0.0405961
[SuperPlaneIntegralFluxPressure3D] regionName=outflow0; regionSize[m^2]=6.40023e-05; force[N]=0.000284472; meanPressure[mmHg]=0.0333382
[SuperPlaneIntegralFluxVelocity3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; volumetricFlowRate[ml/s]=-3.57221; meanVelocity[m/s]=-0.0575138
[SuperPlaneIntegralFluxPressure3D] regionName=outflow1; regionSize[m^2]=6.21106e-05; force[N]=0.000154079; meanPressure[mmHg]=0.018607
[getResults] yPlusMax=0.758388
[Timer]
[Timer] ----------------Summary:Timer----------------
[Timer] measured time (rt) : 450.944s
[Timer] measured time (cpu): 422.611s
[Timer] average MLUPs : 32.092
[Timer] average MLUPps: 0.401
[Timer] ---------------------------------------------
Edited by Maximilian Sander