diff --git a/tests/jobs/localisation/example_case/sim_field_local.ert b/tests/jobs/localisation/example_case/sim_field_local.ert index e0e243463..6acb507a0 100644 --- a/tests/jobs/localisation/example_case/sim_field_local.ert +++ b/tests/jobs/localisation/example_case/sim_field_local.ert @@ -1,5 +1,4 @@ DEFINE $USER -DEFINE /scratch/fmu DEFINE sim_field_local_A DEFINE randomseeds.txt DEFINE /example_test_config_A.yml @@ -10,7 +9,6 @@ INSTALL_JOB SIM_FIELD scripts/FM_SIM_FIELD DEFINE /observations/observations.obs OBS_CONFIG -TIME_MAP time_map.txt JOBNAME sim_fields_ @@ -19,12 +17,13 @@ NUM_REALIZATIONS 10 -- Set number of realizations to run MAX_RUNTIME 18000 -- Set the maximum allowed run time (in seconds) MIN_REALIZATIONS 1 -- Success criteria MAX_SUBMIT 1 -- How many times should the queue system retry a simulation. -QUEUE_OPTION LSF MAX_RUNNING 100 -- Choke the number of simultaneous run -QUEUE_OPTION LSF LSF_QUEUE mr -- Assign LSF cluster queue to use - -RUNPATH ///realization-/iter- +-- QUEUE_OPTION LSF MAX_RUNNING 100 -- Choke the number of simultaneous run +-- QUEUE_OPTION LSF LSF_QUEUE mr -- Assign LSF cluster queue to use +QUEUE_SYSTEM LOCAL +QUEUE_OPTION LOCAL MAX_RUNNING 10 RANDOM_SEED 123456 -- ERT seed value +RUNPATH simulations//realization-/iter- ENSPATH output//storage -- Storage of internal ert data UPDATE_LOG_PATH output//update_log -- Info of active and inactive data points RUNPATH_FILE output//runpath_file -- List of runpaths @@ -46,12 +45,12 @@ FORWARD_MODEL MAKE_DIRECTORY(=) FORWARD_MODEL COPY_FILE(=/, =/) -- For QC purpose only FORWARD_MODEL COPY_FILE(=/init_files/ObsField.roff, =/init_files/ObsField.roff) -FORWARD_MODEL MAKE_SYMLINK(=/GRID.EGRID, =/GRID.EGRID) -FORWARD_MODEL MAKE_SYMLINK(=/UpscaleGrid.EGRID, =/UpscaleGrid.EGRID) +FORWARD_MODEL MAKE_SYMLINK(=/GRID_STANDARD.EGRID, =/GRID_STANDARD.EGRID) +FORWARD_MODEL MAKE_SYMLINK(=/GRID_STANDARD_UPSCALED.EGRID, =/GRID_STANDARD_UPSCALED.EGRID) -- The main forward model simulating gaussian field with trend, and upscale -FORWARD_MODEL SIM_FIELD(=, =, =) +FORWARD_MODEL SIM_FIELD(=, =, =, =) -GRID /GRID.EGRID -- Necessary for AHM using field parameters +GRID /GRID_STANDARD.EGRID -- Necessary for AHM using field parameters FIELD FIELDPAR PARAMETER FieldParam.roff INIT_FILES:init_files/FieldParam.roff MIN:-5.0 MAX:5.0 FORWARD_INIT:True diff --git a/tests/jobs/localisation/example_case/test_full.py b/tests/jobs/localisation/example_case/test_full.py index ecd1dbdab..150663499 100644 --- a/tests/jobs/localisation/example_case/test_full.py +++ b/tests/jobs/localisation/example_case/test_full.py @@ -323,14 +323,14 @@ def test_that_localization_works_with_different_settings( parser = ArgumentParser(prog="test_main") - ert_config_file = "sim_field_local.ert" + ert_config_file = "sim_field_local_case_A.ert" shutil.copy(Path(__file__).parent / ert_config_file, ert_config_file) shutil.copy( - Path(__file__).parent / "FieldParam_real5_iter0_A_local.grdecl", + Path(__file__).parent / "init_files" / "FieldParam_real5_iter0_A_local.grdecl", "FieldParam_real5_iter0_A_local.grdecl", ) shutil.copy( - Path(__file__).parent / "FieldParam_real5_iter1_A_local.grdecl", + Path(__file__).parent / "init_files" / "FieldParam_real5_iter1_A_local.grdecl", "FieldParam_real5_iter1_A_local.grdecl", ) shutil.copy(Path(__file__).parent / "localisation.wf", "localisation.wf")