Files
openfoam/tutorials/incompressible/simpleFoam/longPipe/Allrun
2024-06-05 11:39:46 +01:00

13 lines
520 B
Bash
Executable File

#!/bin/sh
cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#------------------------------------------------------------------------------
./Allrun.pre
SOLVER=PCG runApplication -s PCG $(getApplication) # -debug-switch SolverPerformance=2
SOLVER=GMRES runApplication -s GMRES $(getApplication) # -debug-switch SolverPerformance=2
#------------------------------------------------------------------------------