1#!/bin/bash 2 3## define the src dir 4export SRC_DIR=../src 5 6## mesh resolution 7res=2000.0 8 9## Make mesh 10. $SRC_DIR/MakeMesh.sh $res 11 12## compile required USFs 13make -f $SRC_DIR/Makefile 14 15## generate synthetic obsevations 16python3 $SRC_DIR/MakeObs.py 17 18## run validation 19for i in {1..10} 20do 21 ElmerSolver Validation.sif -ipar 1 $i 22done 23 24 25 26