mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-28 20:13:49 -06:00
16 lines
454 B
Bash
Executable File
16 lines
454 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd .
|
|
cd deps/opm-tests
|
|
test -z $SIM && SIM=flow
|
|
|
|
# Run the norne case
|
|
cd norne
|
|
mkdir $SIM
|
|
$WORKSPACE/$configuration/build-opm-simulators/bin/$SIM --output-dir=$SIM NORNE_ATW2013.DATA
|
|
test $? -eq 0 || exit 1
|
|
./plotwells.sh $WORKSPACE/$configuration/install/bin "ECL.2014.2 opm-simulation-reference/flow_legacy" norne-wells
|
|
./plotwells.sh $WORKSPACE/$configuration/install/bin "opm-simulation-reference/flow_legacy" norne-wells-noecl
|
|
|
|
popd
|