12 lines
228 B
Bash
Executable file
12 lines
228 B
Bash
Executable file
#!/bin/bash
|
|
set -e -u
|
|
|
|
. ../preCICE_tools/log.sh
|
|
exec > >(tee --append "$LOGFILE") 2>&1
|
|
|
|
blockMesh
|
|
|
|
../preCICE_tools/run-openfoam.sh "$@"
|
|
. ../preCICE_tools/openfoam-remove-empty-dirs.sh && openfoam_remove_empty_dirs
|
|
|
|
close_log
|