From b03676187236089ed23ece51e8ab845e47fa2780 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Fri, 17 Aug 2018 09:38:06 +0200 Subject: [PATCH] fixed: run-norne and run-spe for new parameter system --- jenkins/run-norne.sh | 2 +- jenkins/run-spe.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/jenkins/run-norne.sh b/jenkins/run-norne.sh index 9151393ee..55b53f9f8 100755 --- a/jenkins/run-norne.sh +++ b/jenkins/run-norne.sh @@ -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 diff --git a/jenkins/run-spe.sh b/jenkins/run-spe.sh index 98dfd7e88..88a494e7e 100755 --- a/jenkins/run-spe.sh +++ b/jenkins/run-spe.sh @@ -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 ..