Skip to content

Commit

Permalink
fixed: run-norne and run-spe for new parameter system
Browse files Browse the repository at this point in the history
  • Loading branch information
akva2 committed Aug 17, 2018
1 parent 31280d5 commit b036761
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jenkins/run-norne.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ test -z $SIM && SIM=flow
# Run the norne case
cd norne
mkdir $SIM
$WORKSPACE/$configuration/build-opm-simulators/bin/$SIM deck_filename=NORNE_ATW2013.DATA output_dir=$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
Expand Down
6 changes: 3 additions & 3 deletions jenkins/run-spe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ EXE=flow_legacy

# Run the SPE1/3/9 cases
cd spe1
$WORKSPACE/$configuration/build-opm-simulators/bin/${EXE} deck_filename=SPE1CASE2.DATA
$WORKSPACE/$configuration/build-opm-simulators/bin/${EXE} SPE1CASE2.DATA
test $? -eq 0 || exit 1
cd ..
cd spe3
$WORKSPACE/$configuration/build-opm-simulators/bin/${EXE} max_iter=50 deck_filename=SPE3CASE1.DATA
$WORKSPACE/$configuration/build-opm-simulators/bin/${EXE} --flow-newton-max-iterations=50 SPE3CASE1.DATA
test $? -eq 0 || exit 1
cd ..
cd spe9
$WORKSPACE/$configuration/build-opm-simulators/bin/${EXE} max_iter=50 deck_filename=SPE9_CP.DATA
$WORKSPACE/$configuration/build-opm-simulators/bin/${EXE} --flow-newton-max-iterations=50 SPE9_CP.DATA
test $? -eq 0 || exit 1
cd ..

Expand Down

0 comments on commit b036761

Please sign in to comment.