2016-04-05 02:14:39 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-04-06 03:15:54 -05:00
|
|
|
pushd .
|
|
|
|
cd deps/opm-data
|
2017-03-20 06:24:56 -05:00
|
|
|
test -z $SIM && SIM=flow_legacy
|
2016-04-05 02:14:39 -05:00
|
|
|
|
|
|
|
# Run the norne case
|
|
|
|
cd norne
|
2016-11-28 03:14:22 -06:00
|
|
|
mkdir $SIM
|
|
|
|
$WORKSPACE/$configuration/build-opm-simulators/bin/$SIM deck_filename=NORNE_ATW2013.DATA output_dir=$SIM
|
2016-04-05 02:14:39 -05:00
|
|
|
test $? -eq 0 || exit 1
|
2017-03-15 05:25:44 -05:00
|
|
|
./plotwells.sh $WORKSPACE/$configuration/install/bin "ECL.2014.2 opm-simulation-reference" norne-wells
|
|
|
|
./plotwells.sh $WORKSPACE/$configuration/install/bin "opm-simulation-reference" norne-wells-noecl
|
2016-04-05 02:14:39 -05:00
|
|
|
|
|
|
|
popd
|