11 lines
129 B
Bash
Executable file
11 lines
129 B
Bash
Executable file
#!/bin/bash
|
|
set -e -u
|
|
|
|
. ../preCICE_tools/log.sh
|
|
exec > >(tee --append "$LOGFILE") 2>&1
|
|
|
|
blockMesh
|
|
|
|
buoyantPimpleFoam
|
|
|
|
close_log
|