subscript 1.14.3__tar.gz → 1.14.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {subscript-1.14.3 → subscript-1.14.4}/.github/workflows/codecov.yml +2 -3
- {subscript-1.14.3 → subscript-1.14.4}/.github/workflows/linting.yml +2 -2
- {subscript-1.14.3 → subscript-1.14.4}/.github/workflows/publish.yml +2 -2
- {subscript-1.14.3 → subscript-1.14.4}/.github/workflows/subscript.yml +3 -5
- {subscript-1.14.3 → subscript-1.14.4}/PKG-INFO +4 -2
- {subscript-1.14.3 → subscript-1.14.4}/README.md +1 -1
- {subscript-1.14.3 → subscript-1.14.4}/ci/testkomodo.sh +2 -1
- {subscript-1.14.3 → subscript-1.14.4}/docs/contributing.rst +17 -9
- {subscript-1.14.3 → subscript-1.14.4}/docs/overview.rst +1 -0
- subscript-1.14.4/docs/scripts/create_date_files.rst +8 -0
- {subscript-1.14.3 → subscript-1.14.4}/pyproject.toml +26 -21
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/__init__.py +1 -22
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/casegen_upcars/casegen_upcars.py +3 -1
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/casegen_upcars/model.py +37 -40
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/check_swatinit/check_swatinit.py +1 -1
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/convert_grid_format/convert_grid_format.py +2 -2
- subscript-1.14.4/src/subscript/create_date_files/create_date_files.py +242 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/csv_stack/csv_stack.py +0 -7
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/eclcompress/eclcompress.py +6 -7
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/field_statistics/field_statistics.py +2 -3
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/fmu_copy_revision/fmu_copy_revision.py +1 -1
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/fmuobs/parsers.py +3 -1
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/grav_subs_maps/grav_subs_maps.py +2 -2
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/grav_subs_points/grav_subs_points.py +4 -2
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/hook_implementations/forward_model_steps.py +59 -1
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/interp_relperm/interp_relperm.py +28 -17
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/merge_unrst_files/merge_unrst_files.py +5 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/ofmvol2csv/ofmvol2csv.py +5 -1
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/pack_sim/pack_sim.py +5 -6
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/prtvol2csv/prtvol2csv.py +3 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/restartthinner/restartthinner.py +1 -1
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/sector2fluxnum/flux_util.py +1 -5
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/summaryplot/summaryplot.py +3 -4
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/sw_model_utilities/sw_model_utilities.py +3 -3
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/version.py +3 -3
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript.egg-info/PKG-INFO +4 -2
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript.egg-info/SOURCES.txt +4 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript.egg-info/entry_points.txt +1 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript.egg-info/requires.txt +1 -0
- subscript-1.14.4/tests/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_bjobsusers.py +0 -5
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_casegen_upcars.py +9 -2
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_check_swatinit.py +3 -6
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_check_swatinit_simulators.py +2 -3
- subscript-1.14.4/tests/test_create_date_files.py +263 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_csv2ofmvol.py +0 -3
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_csv_merge.py +0 -3
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_csv_stack.py +0 -6
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_ecldiff2roff.py +0 -11
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_eclinit2roff.py +0 -2
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_field_statistics.py +25 -49
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_fmuobs.py +0 -5
- subscript-1.14.4/tests/test_hook_implementations.py +122 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_interp_relperm.py +1 -2
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_merge_rft_ertobs.py +0 -7
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_merge_unrst_files.py +0 -2
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_ofmvol2csv.py +0 -4
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_params2csv.py +0 -4
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_prtvol2csv.py +0 -1
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_rmsecl_volumetrics.py +0 -2
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_sector2fluxnum.py +0 -2
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_subscriptlogger.py +0 -10
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_sunsch.py +0 -2
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_welltest_dpds.py +0 -2
- subscript-1.14.4/tests/utils.py +141 -0
- subscript-1.14.3/tests/test_hook_implementations.py +0 -75
- subscript-1.14.3/tests/utils.py +0 -68
- {subscript-1.14.3 → subscript-1.14.4}/.gitignore +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/LICENSE +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/SECURITY.md +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/Makefile +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/_static/equinor-logo.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/_static/equinor-logo2.jpg +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/_static/equinor-logo2.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/_static/equinor_logo.jpg +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/_static/equinor_logo_only.jpg +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/_templates/layout.html +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/conf.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/history.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/index.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/make.bat +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/bjobsusers.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/casegen_upcars.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/check_swatinit.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/convert_grid_format.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/csv2ofmvol.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/csv_merge.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/csv_stack.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/eclcompress.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/ecldiff2roff.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/field_statistics.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/fmu_copy_revision.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/fmuobs.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/grav_subs_maps.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/grav_subs_points.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/Pack_sim_overview.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/Summaryplot-ensemble.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/Summaryplot-ert.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/Summaryplot-normalizeexample.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/Workflow_sector2fluxnum.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/casegen_upcars_geometry.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/check_swatinit_scatter.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/check_swatinit_volplot.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/ecl-swat-initialization.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/make_check_swatinit_images.sh +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/images/resinsight_wells_project_example.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/interp_relperm.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/merge_rft_ertobs.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/merge_unrst_files.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/ofmvol2csv.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/pack_sim.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/params2csv.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/presentvalue.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/prtvol2csv.csv +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/prtvol2csv.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/restartthinner.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/rmsecl_volumetrics.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/sector2fluxnum.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/summaryplot.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/sunsch.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/sw_model_utilities.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/vfp2csv.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/scripts/welltest_dpds.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/docs/usage.rst +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/setup.cfg +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/bjobsusers/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/bjobsusers/bjobsusers.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/casegen_upcars/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/casegen_upcars/udf.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/casegen_upcars/udf_arg_parser.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/check_swatinit/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/check_swatinit/constants.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/check_swatinit/pillarmodel.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/check_swatinit/plotter.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/convert_grid_format/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/csv2ofmvol → subscript-1.14.4/src/subscript/create_date_files}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/csv_merge → subscript-1.14.4/src/subscript/csv2ofmvol}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/csv2ofmvol/csv2ofmvol.py +0 -0
- {subscript-1.14.3/src/subscript/csv_stack → subscript-1.14.4/src/subscript/csv_merge}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/csv_merge/csv_merge.py +0 -0
- {subscript-1.14.3/src/subscript/eclcompress → subscript-1.14.4/src/subscript/csv_stack}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/ecldiff2roff → subscript-1.14.4/src/subscript/eclcompress}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/eclcompress/allowlist.py +0 -0
- {subscript-1.14.3/src/subscript/field_statistics → subscript-1.14.4/src/subscript/ecldiff2roff}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/ecldiff2roff/ecldiff2roff.py +0 -0
- {subscript-1.14.3/src/subscript/fmu_copy_revision → subscript-1.14.4/src/subscript/field_statistics}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/fmuobs → subscript-1.14.4/src/subscript/fmu_copy_revision}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/grav_subs_maps → subscript-1.14.4/src/subscript/fmuobs}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/fmuobs/fmuobs.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/fmuobs/util.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/fmuobs/writers.py +0 -0
- {subscript-1.14.3/src/subscript/grav_subs_points → subscript-1.14.4/src/subscript/grav_subs_maps}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/hook_implementations → subscript-1.14.4/src/subscript/grav_subs_points}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/interp_relperm → subscript-1.14.4/src/subscript/hook_implementations}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/merge_rft_ertobs → subscript-1.14.4/src/subscript/interp_relperm}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/legacy/duf +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/legacy/eclmanual +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/legacy/ertwatch +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/legacy/list_rms_usage +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/legacy/nosim +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/legacy/runeclipse +0 -0
- {subscript-1.14.3/src/subscript/merge_unrst_files → subscript-1.14.4/src/subscript/merge_rft_ertobs}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/merge_rft_ertobs/merge_rft_ertobs.py +0 -0
- {subscript-1.14.3/src/subscript/ofmvol2csv → subscript-1.14.4/src/subscript/merge_unrst_files}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/pack_sim → subscript-1.14.4/src/subscript/ofmvol2csv}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/params2csv → subscript-1.14.4/src/subscript/pack_sim}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/presentvalue → subscript-1.14.4/src/subscript/params2csv}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/params2csv/params2csv.py +0 -0
- {subscript-1.14.3/src/subscript/prtvol2csv → subscript-1.14.4/src/subscript/presentvalue}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/presentvalue/presentvalue.py +0 -0
- {subscript-1.14.3/src/subscript/restartthinner → subscript-1.14.4/src/subscript/prtvol2csv}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/rmsecl_volumetrics → subscript-1.14.4/src/subscript/restartthinner}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/sector2fluxnum → subscript-1.14.4/src/subscript/rmsecl_volumetrics}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/rmsecl_volumetrics/rmsecl_volumetrics.py +0 -0
- {subscript-1.14.3/src/subscript/summaryplot → subscript-1.14.4/src/subscript/sector2fluxnum}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/sector2fluxnum/completions.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/sector2fluxnum/datafile_obj.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/sector2fluxnum/flux_obj.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/sector2fluxnum/fluxfile_obj.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/sector2fluxnum/sector2fluxnum.py +0 -0
- {subscript-1.14.3/src/subscript/sunsch → subscript-1.14.4/src/subscript/summaryplot}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/sw_model_utilities → subscript-1.14.4/src/subscript/sunsch}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/sunsch/sunsch.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/sunsch/time_vector.py +0 -0
- {subscript-1.14.3/src/subscript/vfp2csv → subscript-1.14.4/src/subscript/sw_model_utilities}/__init__.py +0 -0
- {subscript-1.14.3/src/subscript/welltest_dpds → subscript-1.14.4/src/subscript/vfp2csv}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/vfp2csv/vfp2csv.py +0 -0
- {subscript-1.14.3/tests → subscript-1.14.4/src/subscript/welltest_dpds}/__init__.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript/welltest_dpds/welltest_dpds.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript.egg-info/dependency_links.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/src/subscript.egg-info/top_level.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args0.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args1.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args10.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args11.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args2.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args3.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args4.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args5.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args6.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args7.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args8.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/baseline/test_summaryplotter_mpl_test_cmd_args9.png +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/conftest.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/edit/drogon.trans +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/grid/drogon.faults +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/grid/drogon.grid +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/grid/drogon.multnum +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/grid/drogon.multregt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/grid/drogon.perm +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/grid/drogon.poro +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/props/drogon.pvt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/props/drogon.sattab +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/props/drogon.swatinit +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/regions/drogon.eqlnum +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/regions/drogon.fipnum +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/regions/drogon.fipzon +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/regions/drogon.pvtnum +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/regions/drogon.satnum +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/runspec/drogon.dimens +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/runspec/drogon.eqldims +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/runspec/drogon.gridopts +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/runspec/drogon.regdims +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/runspec/drogon.tabdims +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/schedule/55_33-1.sch +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/schedule/55_33-1.wells +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/schedule/drogon_hist.sch +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/schedule/vfp/A-1.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/schedule/vfp/A-2.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/schedule/vfp/A-3.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/schedule/vfp/A-4.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/solution/drogon.equil +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/solution/drogon.rxvd +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/solution/drogon.thpres +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/include/summary/drogon.summary +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/drogon/eclipse/model/DROGON-0.DATA +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/grid/reek.faults +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/grid/reek.grid +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/grid/reek.multflt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/grid/reek.multz +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/grid/reek.perm +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/grid/reek.poro +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/props/let-sgof.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/props/let-swof.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/props/reek.endpoints +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/props/reek.pvt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/props/reek.swatinit +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/props/sgof.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/props/swof.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/props/swof.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/regions/reek.eqlnum +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/regions/reek.fipnum +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/schedule/reek_history.sch +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/solution/reek.equil +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/include/summary/reek.smry +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/2_R001_REEK-0.DATA +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/2_R001_REEK-0.ECLEND +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/2_R001_REEK-0.EGRID +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/2_R001_REEK-0.INIT +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/2_R001_REEK-0.LOG +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/2_R001_REEK-0.PRT +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/2_R001_REEK-0.RFT +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/2_R001_REEK-0.SMSPEC +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/2_R001_REEK-0.UNRST +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/2_R001_REEK-0.UNSMRY +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/eclipse/model/parameters.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/parameters.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/rms/README +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/rms/reek.rms10.1.3/.master +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/reek/rms/reek.rms11.1.0/.master +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/vfp/GasProd.VFP +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/vfp/pd2.VFP +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/welltest/eclipse/model/DROGON_DST_PLT-0.SMSPEC +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/data/welltest/eclipse/model/DROGON_DST_PLT-0.UNSMRY +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_convert_grid_format.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_docs.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_eclcompress.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_fmu_copy_revision.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_fmuobs_parsers.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_fmuobs_writers.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_grav_subs_maps.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_grav_subs_points.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_pack_sim.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_presentvalue.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_restartthinner.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_summaryplot.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_sw_model_utilities.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/test_vfp2csv.py +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_casegen_upcars/demo_large_scale.yaml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_casegen_upcars/demo_small_scale.yaml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_casegen_upcars/dump_value.tmpl +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_casegen_upcars/upcars_eclipse_ref_lg.tmpl +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_casegen_upcars/upcars_eclipse_ref_ss.tmpl +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_eclcompress/permxyz.grdecl +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/config_example.yml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/ERTBOX.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/Geogrid.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/files.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/mean_A_P1_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/mean_A_P1_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/mean_A_P2_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/mean_A_P2_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/mean_B_P1_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/mean_B_P1_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/mean_C_P2_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/mean_C_P2_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/nactive_A_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/nactive_A_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/nactive_B_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/nactive_B_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/nactive_C_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/nactive_C_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_A_F1_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_A_F1_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_A_F2_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_A_F2_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_A_F3_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_A_F3_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_B_F1_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_B_F1_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_B_F2_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_B_F2_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_B_F3_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_B_F3_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_C_F1_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_C_F1_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_C_F2_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_C_F2_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_C_F3_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/prob_C_F3_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/stdev_A_P1_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/stdev_A_P1_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/stdev_A_P2_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/stdev_A_P2_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/stdev_B_P1_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/stdev_B_P1_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/stdev_C_P2_0.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ensemble/share/grid_statistics/referencedata/stdev_C_P2_3.roff +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/ert/model/0readme +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/fmuconfig/output/global_variables.yml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_field_statistics/rms/output/aps/ERTBOX.EGRID +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_fmuobs/drogon_wbhp_rft_wct_gor_tracer_4d.obs +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_fmuobs/ert-doc.csv +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_fmuobs/ert-doc.obs +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_fmuobs/ert-doc.yml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_fmuobs/fmu-ensemble-obs.yml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_fmuobs/hist_obs_wells.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_fmuobs/ri-obs.csv +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_gravity/HIST.EGRID +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_gravity/HIST.INIT +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_gravity/HIST.UNRST +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_gravity/global_variables.yml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_gravity/grav_subs_maps.yml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_gravity/grav_subs_points.yml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_gravity/seabed.gri +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_gravity/station_coordinates.csv +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_interp_relperm/cfg.yml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_interp_relperm/sgof_base.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_interp_relperm/sgof_opt.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_interp_relperm/sgof_pes.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_interp_relperm/swof_base.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_interp_relperm/swof_opt.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_interp_relperm/swof_pes.inc +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/gendata_rft.csv +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/R_A2.obs +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/R_A2.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/R_A3.obs +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/R_A3.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/R_A4.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/R_A4_1.obs +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/R_A5.obs +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/R_A5.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/R_A6.obs +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/R_A6.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_rft_ertobs/drogon/rft/well_date_rft.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_unrst_files/HIST.UNRST +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_merge_unrst_files/PRED.UNRST +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_ofmvol2csv/fileA.vol +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_ofmvol2csv/fileB.vol +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_ofmvol2csv/fileC.vol +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_ofmvol2csv/ofm_example.vol +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_prtvol2csv/0readme.txt +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_prtvol2csv/DROGON_FIPNUM.PRT +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_prtvol2csv/DROGON_FIPZON.PRT +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_prtvol2csv/DROGON_INACTIVE_FIPNUM.PRT +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_prtvol2csv/DROGON_NO_INITIAL_BALANCE.PRT +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_prtvol2csv/DROGON_NO_INITIAL_BALANCE_FLOW.PRT +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sector2fluxnum/DUMPFLUX_TEST.DATA +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sector2fluxnum/DUMPFLUX_TEST.EGRID +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sector2fluxnum/DUMPFLUX_TEST.FLUX +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sector2fluxnum/OUT_COARSE.FLUX +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sector2fluxnum/TEST.DATA +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sector2fluxnum/TEST.EGRID +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sector2fluxnum/TEST.INIT +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sector2fluxnum/TEST.UNRST +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sunsch/config.yml +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sunsch/emptyinit.sch +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sunsch/foo1.sch +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sunsch/footemplate.sch +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sunsch/initwithdates.sch +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sunsch/merge2.sch +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sunsch/mergeme.sch +0 -0
- {subscript-1.14.3 → subscript-1.14.4}/tests/testdata_sunsch/options3.sch +0 -0
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
name: codecoverage
|
|
2
2
|
on:
|
|
3
3
|
pull_request:
|
|
4
|
-
branches: [main]
|
|
5
4
|
push:
|
|
6
5
|
branches: [main]
|
|
7
6
|
|
|
@@ -30,12 +29,12 @@ jobs:
|
|
|
30
29
|
- uses: actions/checkout@v5
|
|
31
30
|
|
|
32
31
|
- name: Setup Python
|
|
33
|
-
uses: actions/setup-python@
|
|
32
|
+
uses: actions/setup-python@v6
|
|
34
33
|
with:
|
|
35
34
|
python-version: 3.12
|
|
36
35
|
|
|
37
36
|
- name: Install uv
|
|
38
|
-
uses: astral-sh/setup-uv@
|
|
37
|
+
uses: astral-sh/setup-uv@v7
|
|
39
38
|
with:
|
|
40
39
|
enable-cache: true
|
|
41
40
|
python-version: "3.12"
|
|
@@ -26,7 +26,7 @@ jobs:
|
|
|
26
26
|
runs-on: ubuntu-latest
|
|
27
27
|
strategy:
|
|
28
28
|
matrix:
|
|
29
|
-
python-version: ["3.
|
|
29
|
+
python-version: ["3.13"]
|
|
30
30
|
|
|
31
31
|
steps:
|
|
32
32
|
- name: Checkout commit locally
|
|
@@ -40,7 +40,7 @@ jobs:
|
|
|
40
40
|
python-version: ${{ matrix.python-version }}
|
|
41
41
|
|
|
42
42
|
- name: Install uv
|
|
43
|
-
uses: astral-sh/setup-uv@
|
|
43
|
+
uses: astral-sh/setup-uv@v7
|
|
44
44
|
with:
|
|
45
45
|
enable-cache: true
|
|
46
46
|
python-version: ${{ matrix.python-version }}
|
|
@@ -16,12 +16,12 @@ jobs:
|
|
|
16
16
|
|
|
17
17
|
steps:
|
|
18
18
|
- name: Checkout
|
|
19
|
-
uses: actions/checkout@
|
|
19
|
+
uses: actions/checkout@v5
|
|
20
20
|
with:
|
|
21
21
|
fetch-depth: 0
|
|
22
22
|
|
|
23
23
|
- name: Set up Python 3.12
|
|
24
|
-
uses: actions/setup-python@
|
|
24
|
+
uses: actions/setup-python@v6
|
|
25
25
|
with:
|
|
26
26
|
python-version: 3.12
|
|
27
27
|
|
|
@@ -5,8 +5,6 @@ on:
|
|
|
5
5
|
branches:
|
|
6
6
|
- main
|
|
7
7
|
pull_request:
|
|
8
|
-
branches:
|
|
9
|
-
- main
|
|
10
8
|
release:
|
|
11
9
|
types:
|
|
12
10
|
- published
|
|
@@ -27,7 +25,7 @@ jobs:
|
|
|
27
25
|
runs-on: ubuntu-latest
|
|
28
26
|
strategy:
|
|
29
27
|
matrix:
|
|
30
|
-
python-version: ["3.11", "3.12"]
|
|
28
|
+
python-version: ["3.11", "3.12", "3.13"]
|
|
31
29
|
|
|
32
30
|
steps:
|
|
33
31
|
|
|
@@ -42,12 +40,12 @@ jobs:
|
|
|
42
40
|
fetch-depth: 0
|
|
43
41
|
|
|
44
42
|
- name: Set up Python ${{ matrix.python-version }}
|
|
45
|
-
uses: actions/setup-python@
|
|
43
|
+
uses: actions/setup-python@v6
|
|
46
44
|
with:
|
|
47
45
|
python-version: ${{ matrix.python-version }}
|
|
48
46
|
|
|
49
47
|
- name: Install uv
|
|
50
|
-
uses: astral-sh/setup-uv@
|
|
48
|
+
uses: astral-sh/setup-uv@v7
|
|
51
49
|
with:
|
|
52
50
|
enable-cache: true
|
|
53
51
|
python-version: ${{ matrix.python-version }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: subscript
|
|
3
|
-
Version: 1.14.
|
|
3
|
+
Version: 1.14.4
|
|
4
4
|
Summary: Equinor's collection of subsurface reservoir modelling scripts
|
|
5
5
|
Author-email: Equinor <rnyb@equinor.com>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -691,6 +691,7 @@ Classifier: Topic :: Utilities
|
|
|
691
691
|
Classifier: Operating System :: POSIX :: Linux
|
|
692
692
|
Classifier: Programming Language :: Python :: 3.11
|
|
693
693
|
Classifier: Programming Language :: Python :: 3.12
|
|
694
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
694
695
|
Classifier: Natural Language :: English
|
|
695
696
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
696
697
|
Requires-Python: >=3.11
|
|
@@ -701,6 +702,7 @@ Requires-Dist: res2df
|
|
|
701
702
|
Requires-Dist: ert>=10.2.0b13
|
|
702
703
|
Requires-Dist: fmu-tools
|
|
703
704
|
Requires-Dist: grid3d_maps
|
|
705
|
+
Requires-Dist: jinja2
|
|
704
706
|
Requires-Dist: matplotlib
|
|
705
707
|
Requires-Dist: numpy
|
|
706
708
|
Requires-Dist: opm>=2023.04
|
|
@@ -741,7 +743,7 @@ Dynamic: license-file
|
|
|
741
743
|
|
|
742
744
|
[](https://github.com/equinor/subscript/actions/workflows/subscript.yml)
|
|
743
745
|
[](https://codecov.io/gh/equinor/subscript)
|
|
744
|
-

|
|
746
|
+

|
|
745
747
|
[](https://www.gnu.org/licenses/gpl-3.0)
|
|
746
748
|
[](https://github.com/astral-sh/ruff)
|
|
747
749
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/equinor/subscript/actions/workflows/subscript.yml)
|
|
4
4
|
[](https://codecov.io/gh/equinor/subscript)
|
|
5
|
-

|
|
5
|
+

|
|
6
6
|
[](https://www.gnu.org/licenses/gpl-3.0)
|
|
7
7
|
[](https://github.com/astral-sh/ruff)
|
|
8
8
|
|
|
@@ -12,12 +12,13 @@ get_os_arch () {
|
|
|
12
12
|
|
|
13
13
|
rhel7=$(echo "$uname_info" | grep "el7")
|
|
14
14
|
rhel8=$(echo "$uname_info" | grep "el8")
|
|
15
|
+
rhel9=$(echo "$uname_info" | grep "el9")
|
|
15
16
|
|
|
16
17
|
os_arch="undetermined"
|
|
17
18
|
|
|
18
19
|
if [ "$rhel7" ]; then
|
|
19
20
|
os_arch="x86_64_RH_7"
|
|
20
|
-
elif [ "$rhel8" ]; then
|
|
21
|
+
elif [ "$rhel8" ] || [ "$rhel9" ]; then
|
|
21
22
|
os_arch="x86_64_RH_8"
|
|
22
23
|
else
|
|
23
24
|
echo "$os_arch"
|
|
@@ -10,7 +10,7 @@ Getting started
|
|
|
10
10
|
---------------
|
|
11
11
|
|
|
12
12
|
We recommend developing from a personal fork rather than branches on the
|
|
13
|
-
upstream repository. Create a fork from the repository and then clone it
|
|
13
|
+
upstream repository. Create a fork from the repository and then clone it
|
|
14
14
|
to your machine:
|
|
15
15
|
|
|
16
16
|
.. code-block:: console
|
|
@@ -24,7 +24,7 @@ Then add the upstream repository:
|
|
|
24
24
|
|
|
25
25
|
git remote add upstream git@github.com:equinor/subscript
|
|
26
26
|
|
|
27
|
-
After cloning, you need a Python virtual environment in which you install
|
|
27
|
+
After cloning, you need a Python virtual environment in which you install
|
|
28
28
|
subscript and its dependencies. If you develop on an Equinor computer you
|
|
29
29
|
should use ``komodoenv``; instructions for how to do this can be found
|
|
30
30
|
`here <https://fmu-docs.equinor.com/docs/komodo/equinor_komodo_usage.html>`_
|
|
@@ -70,7 +70,7 @@ the linting done in CI:
|
|
|
70
70
|
|
|
71
71
|
.. code-block:: console
|
|
72
72
|
|
|
73
|
-
ruff .
|
|
73
|
+
ruff check .
|
|
74
74
|
ruff format .
|
|
75
75
|
mypy src/subscript
|
|
76
76
|
rstcheck -r docs
|
|
@@ -92,20 +92,28 @@ Repository conventions
|
|
|
92
92
|
----------------------
|
|
93
93
|
|
|
94
94
|
* Each tool has its own subdirectory under ``src/subscript``.
|
|
95
|
-
* Use ``pyproject.toml`` for installing endpoints that users should have in
|
|
95
|
+
* Use ``pyproject.toml`` for installing endpoints that users should have in
|
|
96
96
|
their ``$PATH``
|
|
97
|
-
* Use ``argparse``, and with a specific ``get_parser()`` function to facilitate
|
|
97
|
+
* Use ``argparse``, and with a specific ``get_parser()`` function to facilitate
|
|
98
98
|
``sphinx-argparse``
|
|
99
|
-
* Always use the ``if __name__ = "__main__"`` idiom. Scripts should not start
|
|
99
|
+
* Always use the ``if __name__ = "__main__"`` idiom. Scripts should not start
|
|
100
100
|
if they are imported, this is to facilitate testing.
|
|
101
|
-
* There must be at least test code that directly test that the endpoint is
|
|
101
|
+
* There must be at least test code that directly test that the endpoint is
|
|
102
102
|
installed and that it does at least something to a standard input. Preferably
|
|
103
103
|
unit test code for isolated parts of the code as well.
|
|
104
104
|
* Docstrings on all functions. Docstrings can include RST formatting and will
|
|
105
|
-
be checked for compliance with sphinx on every pull request. Warnings from
|
|
105
|
+
be checked for compliance with sphinx on every pull request. Warnings from
|
|
106
106
|
sphinx must be fixed.
|
|
107
107
|
* For a new script, write a new file ``docs/scripts/scriptname.rst`` describing
|
|
108
|
-
the script, its usage, and examples. Use sphinx-argparse to document the
|
|
108
|
+
the script, its usage, and examples. Use sphinx-argparse to document the
|
|
109
109
|
command line syntax.
|
|
110
110
|
* Type hinting is encouraged. If type hinting is included in the source, it has
|
|
111
111
|
to pass mypy.
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
ERT plugin
|
|
115
|
+
----------
|
|
116
|
+
|
|
117
|
+
One can hook a script to `ERT` as a forward model by adding it to the
|
|
118
|
+
``src/subscript/hook_implementations/forward_model_steps.py`` and
|
|
119
|
+
``tests/test_hook_implementations.py`` files.
|
|
@@ -28,6 +28,7 @@ classifiers = [
|
|
|
28
28
|
"Operating System :: POSIX :: Linux",
|
|
29
29
|
"Programming Language :: Python :: 3.11",
|
|
30
30
|
"Programming Language :: Python :: 3.12",
|
|
31
|
+
"Programming Language :: Python :: 3.13",
|
|
31
32
|
"Natural Language :: English",
|
|
32
33
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
33
34
|
]
|
|
@@ -38,6 +39,7 @@ dependencies = [
|
|
|
38
39
|
"ert>=10.2.0b13",
|
|
39
40
|
"fmu-tools",
|
|
40
41
|
"grid3d_maps",
|
|
42
|
+
"jinja2",
|
|
41
43
|
"matplotlib",
|
|
42
44
|
"numpy",
|
|
43
45
|
"opm>=2023.04",
|
|
@@ -88,6 +90,7 @@ bjobsusers = "subscript.bjobsusers.bjobsusers:main"
|
|
|
88
90
|
casegen_upcars = "subscript.casegen_upcars.casegen_upcars:main"
|
|
89
91
|
check_swatinit = "subscript.check_swatinit.check_swatinit:main"
|
|
90
92
|
convert_grid_format = "subscript.convert_grid_format.convert_grid_format:main"
|
|
93
|
+
create_date_files = "subscript.create_date_files.create_date_files:main"
|
|
91
94
|
csv2ofmvol = "subscript.csv2ofmvol.csv2ofmvol:main"
|
|
92
95
|
csv_merge = "subscript.csv_merge.csv_merge:main"
|
|
93
96
|
csv_stack = "subscript.csv_stack.csv_stack:main"
|
|
@@ -148,20 +151,13 @@ module = [
|
|
|
148
151
|
"resdata.*",
|
|
149
152
|
"res2df.*",
|
|
150
153
|
"ert",
|
|
151
|
-
"resfo",
|
|
152
154
|
"grid3d_maps.*",
|
|
153
155
|
"fmu.tools.*",
|
|
154
|
-
"pyscal",
|
|
155
156
|
"cwrap",
|
|
156
157
|
"grpc"
|
|
157
158
|
]
|
|
158
159
|
ignore_missing_imports = true
|
|
159
160
|
|
|
160
|
-
[tool.pylint]
|
|
161
|
-
# Module docstrings are not required, there are other means of documenting at
|
|
162
|
-
# that level in subscript
|
|
163
|
-
disable = "missing-module-docstring"
|
|
164
|
-
|
|
165
161
|
[tool.pytest.ini_options]
|
|
166
162
|
norecursedirs = [
|
|
167
163
|
".git",
|
|
@@ -187,23 +183,32 @@ line-length = 88
|
|
|
187
183
|
[tool.ruff.lint]
|
|
188
184
|
select = [
|
|
189
185
|
"C",
|
|
190
|
-
"E",
|
|
191
|
-
"F",
|
|
192
|
-
"I",
|
|
193
|
-
"PIE",
|
|
194
|
-
"Q",
|
|
195
|
-
"RET",
|
|
196
|
-
"RSE",
|
|
197
|
-
"SIM",
|
|
198
|
-
"W",
|
|
199
|
-
"PD",
|
|
200
|
-
"UP",
|
|
201
|
-
"RUF",
|
|
186
|
+
"E", # pycodestyle error
|
|
187
|
+
"F", # pyflakes
|
|
188
|
+
"I", # isort
|
|
189
|
+
"PIE", # flake8-pie
|
|
190
|
+
"Q", # flake8-quotes
|
|
191
|
+
"RET", # flake8-return
|
|
192
|
+
"RSE", # flake8-raise
|
|
193
|
+
"SIM", # flake8-simplify
|
|
194
|
+
"W", # pycodestyle warning
|
|
195
|
+
"PD", # pandas-vet
|
|
196
|
+
"UP", # pyupgrade
|
|
197
|
+
"RUF", # RUFF specific rules
|
|
198
|
+
"PL", # pylint
|
|
199
|
+
"B", # flake8-bugbear
|
|
202
200
|
]
|
|
203
201
|
ignore = [
|
|
204
|
-
"C901",
|
|
205
|
-
"PD013",
|
|
202
|
+
"C901", # complex-structure
|
|
203
|
+
"PD013", # pandas-use-of-dot-stack
|
|
204
|
+
"PLR0915", # too-many-statements
|
|
205
|
+
"PLR0912", # too-many-branches
|
|
206
|
+
"PLR2004", # magic-value-comparison
|
|
207
|
+
"PLW2901", # redefined-loop-name
|
|
206
208
|
]
|
|
207
209
|
|
|
208
210
|
[tool.ruff.lint.isort]
|
|
209
211
|
combine-as-imports = true
|
|
212
|
+
|
|
213
|
+
[tool.ruff.lint.pylint]
|
|
214
|
+
max-args = 35
|
|
@@ -1,28 +1,12 @@
|
|
|
1
1
|
import logging
|
|
2
2
|
import sys
|
|
3
|
-
from pathlib import Path
|
|
4
3
|
|
|
5
4
|
try:
|
|
6
5
|
from importlib import metadata
|
|
7
6
|
|
|
8
7
|
__version__ = metadata.version(__name__)
|
|
9
8
|
except metadata.PackageNotFoundError:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
def detect_os(release_file: Path = Path("/etc/redhat-release")) -> str:
|
|
14
|
-
"""Detect operating system string in runtime, just use default if not found."""
|
|
15
|
-
default_os_version = "x86_64_RH_7"
|
|
16
|
-
|
|
17
|
-
if release_file.is_file():
|
|
18
|
-
with open(release_file, encoding="utf-8") as buffer:
|
|
19
|
-
tokens = buffer.read().split()
|
|
20
|
-
for t in tokens:
|
|
21
|
-
if "." in t:
|
|
22
|
-
major = t.split(".")[0]
|
|
23
|
-
return f"x86_64_RH_{major}"
|
|
24
|
-
raise ValueError("Could not detect RHEL version")
|
|
25
|
-
return default_os_version
|
|
9
|
+
__version__ = "0.0.0"
|
|
26
10
|
|
|
27
11
|
|
|
28
12
|
def getLogger(module_name="subscript"):
|
|
@@ -56,11 +40,6 @@ def getLogger(module_name="subscript"):
|
|
|
56
40
|
if not module_name:
|
|
57
41
|
return getLogger("subscript")
|
|
58
42
|
|
|
59
|
-
# This logger is also used by subscript-internal, but we
|
|
60
|
-
# don't want to expose that detail and repo difference in
|
|
61
|
-
# the log output:
|
|
62
|
-
module_name = module_name.replace("subscript_internal", "subscript")
|
|
63
|
-
|
|
64
43
|
compressed_name = []
|
|
65
44
|
for elem in module_name.split("."):
|
|
66
45
|
if len(compressed_name) == 0 or elem != compressed_name[-1]:
|
|
@@ -248,7 +248,7 @@ def main():
|
|
|
248
248
|
throws_j2 = throws_section["j2"]
|
|
249
249
|
throws_dz = throws_section["dz"]
|
|
250
250
|
for _i1, _i2, _j1, _j2, _dz in zip(
|
|
251
|
-
throws_i1, throws_i2, throws_j1, throws_j2, throws_dz
|
|
251
|
+
throws_i1, throws_i2, throws_j1, throws_j2, throws_dz, strict=False
|
|
252
252
|
):
|
|
253
253
|
throws.append([_i1, _i2, _j1, _j2, _dz])
|
|
254
254
|
else:
|
|
@@ -462,6 +462,7 @@ def main():
|
|
|
462
462
|
[matrix_poro, matrix_multpv, matrix_multx, matrix_multy],
|
|
463
463
|
[streak_poro, streak_multpv, streak_multx, streak_multy],
|
|
464
464
|
[fracture_poro, fracture_multpv, fracture_multx, fracture_multy],
|
|
465
|
+
strict=False,
|
|
465
466
|
):
|
|
466
467
|
grid.set_fracture_property(keyword, var_fracture)
|
|
467
468
|
grid.set_layers_property(keyword, var_matrix, var_layer)
|
|
@@ -494,6 +495,7 @@ def main():
|
|
|
494
495
|
[vug1_satnum, vug2_satnum, vug3_satnum],
|
|
495
496
|
[vug1_swatinit, vug2_swatinit, vug3_swatinit],
|
|
496
497
|
],
|
|
498
|
+
strict=False,
|
|
497
499
|
):
|
|
498
500
|
logger.info("Exporting " + keyword + " include file")
|
|
499
501
|
include_file = f"{keyword.lower()}_file"
|
|
@@ -20,13 +20,12 @@ def fracture_idx(matrix_elements, fracture_cell_count, boundary_fracture):
|
|
|
20
20
|
for idx in matrix_elements:
|
|
21
21
|
offset += idx + fracture_cell_count
|
|
22
22
|
result.append(offset)
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
elif len(matrix_elements) > 1:
|
|
24
|
+
offset = matrix_elements[0]
|
|
25
|
+
result.append(offset)
|
|
26
|
+
for idx in matrix_elements[1:-1]:
|
|
27
|
+
offset += idx + fracture_cell_count
|
|
26
28
|
result.append(offset)
|
|
27
|
-
for idx in matrix_elements[1:-1]:
|
|
28
|
-
offset += idx + fracture_cell_count
|
|
29
|
-
result.append(offset)
|
|
30
29
|
return np.asarray(result, dtype=np.int16)
|
|
31
30
|
|
|
32
31
|
|
|
@@ -107,7 +106,7 @@ class Model:
|
|
|
107
106
|
|
|
108
107
|
prts = [-1] * nz
|
|
109
108
|
if streak_k is not None:
|
|
110
|
-
for idx, (_k, _nz) in enumerate(zip(streak_k, streak_nz)):
|
|
109
|
+
for idx, (_k, _nz) in enumerate(zip(streak_k, streak_nz, strict=False)):
|
|
111
110
|
if _nz > 0:
|
|
112
111
|
if _k - 1 < 0 or _k + _nz - 1 > nz:
|
|
113
112
|
print(
|
|
@@ -170,21 +169,20 @@ class Model:
|
|
|
170
169
|
self._fracture_offset_x = listify(fracture_offset_x, self._n_faults_y, float)
|
|
171
170
|
self._fracture_height_x = listify(fracture_height_x, self._n_faults_y, float)
|
|
172
171
|
self._fracture_zoffset_x = listify(fracture_zoffset_x, self._n_faults_y, float)
|
|
173
|
-
for
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
)
|
|
172
|
+
for var, title in zip(
|
|
173
|
+
[
|
|
174
|
+
self._fracture_length_x,
|
|
175
|
+
self._fracture_offset_x,
|
|
176
|
+
self._fracture_height_x,
|
|
177
|
+
self._fracture_zoffset_x,
|
|
178
|
+
],
|
|
179
|
+
[
|
|
180
|
+
"fracture length",
|
|
181
|
+
"fracture offset",
|
|
182
|
+
"fracture height",
|
|
183
|
+
"fracture vertical offset",
|
|
184
|
+
],
|
|
185
|
+
strict=False,
|
|
188
186
|
):
|
|
189
187
|
if len(var) != self._n_faults_y:
|
|
190
188
|
raise ValueError(
|
|
@@ -197,21 +195,20 @@ class Model:
|
|
|
197
195
|
self._fracture_offset_y = listify(fracture_offset_y, self._n_faults_x, float)
|
|
198
196
|
self._fracture_height_y = listify(fracture_height_y, self._n_faults_x, float)
|
|
199
197
|
self._fracture_zoffset_y = listify(fracture_zoffset_y, self._n_faults_x, float)
|
|
200
|
-
for
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
)
|
|
198
|
+
for var, title in zip(
|
|
199
|
+
[
|
|
200
|
+
self._fracture_length_y,
|
|
201
|
+
self._fracture_offset_y,
|
|
202
|
+
self._fracture_height_y,
|
|
203
|
+
self._fracture_zoffset_y,
|
|
204
|
+
],
|
|
205
|
+
[
|
|
206
|
+
"fracture length",
|
|
207
|
+
"fracture offset",
|
|
208
|
+
"fracture height",
|
|
209
|
+
"fracture vertical offset",
|
|
210
|
+
],
|
|
211
|
+
strict=False,
|
|
215
212
|
):
|
|
216
213
|
if len(var) != self._n_faults_x:
|
|
217
214
|
raise ValueError(
|
|
@@ -273,7 +270,7 @@ class Model:
|
|
|
273
270
|
self._streak_idx = np.full((self._total_nx, self._total_ny, self._total_nz), -1)
|
|
274
271
|
offset = 0
|
|
275
272
|
streak_idx = -1
|
|
276
|
-
for
|
|
273
|
+
for _prt, _nz in zip(layer_prt, layer_nz, strict=False):
|
|
277
274
|
if _prt >= 0:
|
|
278
275
|
# Streak
|
|
279
276
|
streak_idx += 1
|
|
@@ -846,7 +843,7 @@ Initializing model
|
|
|
846
843
|
list_value.append(props[idx])
|
|
847
844
|
list_count.append(1)
|
|
848
845
|
string_buffer = ""
|
|
849
|
-
for
|
|
846
|
+
for count, value in zip(list_count, list_value, strict=False):
|
|
850
847
|
string_new = (
|
|
851
848
|
(" {0}*{1:" + value_format + "}").format(count, value)
|
|
852
849
|
if count > 1
|
|
@@ -1021,7 +1018,7 @@ Initializing model
|
|
|
1021
1018
|
)
|
|
1022
1019
|
streak_box = []
|
|
1023
1020
|
for _k, nz_size, rect in zip(
|
|
1024
|
-
self._streak_k, self._streak_nz, self._streak_rect
|
|
1021
|
+
self._streak_k, self._streak_nz, self._streak_rect, strict=False
|
|
1025
1022
|
):
|
|
1026
1023
|
_k -= 1
|
|
1027
1024
|
box = self.bounded_box(
|
|
@@ -492,7 +492,7 @@ def _evaluate_pc(
|
|
|
492
492
|
swls = np.full(len(swats), sw_min)
|
|
493
493
|
if swus is None:
|
|
494
494
|
swus = np.full(len(swats), sw_max)
|
|
495
|
-
for swat, pc_scaling, swl, swu in zip(swats, scale_vert, swls, swus):
|
|
495
|
+
for swat, pc_scaling, swl, swu in zip(swats, scale_vert, swls, swus, strict=False):
|
|
496
496
|
p_cap.append(
|
|
497
497
|
np.interp(
|
|
498
498
|
swat,
|