9 lines
336 B
Bash
Executable File
9 lines
336 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
#------------------------------------------------------------------------------
|
|
|
|
chtMultiRegionSimpleFoam -case fluid -world fluid 2>&1 | tee run_fluid.log
|
|
read dummy
|
|
|
|
#------------------------------------------------------------------------------
|