2016-04-05 09:14:39 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2016-04-06 10:15:54 +02:00
|
|
|
pushd .
|
|
|
|
|
cd deps/opm-data
|
2017-03-20 12:24:56 +01:00
|
|
|
test -z $SIM && SIM=flow_legacy
|
2016-04-05 09:14:39 +02:00
|
|
|
|
|
|
|
|
# Run the norne case
|
|
|
|
|
cd norne
|
2016-11-28 10:14:22 +01:00
|
|
|
mkdir $SIM
|
|
|
|
|
$WORKSPACE/$configuration/build-opm-simulators/bin/$SIM deck_filename=NORNE_ATW2013.DATA output_dir=$SIM
|
2016-04-05 09:14:39 +02:00
|
|
|
test $? -eq 0 || exit 1
|
2017-03-15 11:25:44 +01: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 09:14:39 +02:00
|
|
|
|
|
|
|
|
popd
|