rock-physics-open 0.2.3__tar.gz → 0.3.1__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.
- rock_physics_open-0.3.1/.devcontainer/devcontainer.json +68 -0
- rock_physics_open-0.3.1/.github/release-please-manifest.json +1 -0
- rock_physics_open-0.3.1/.github/workflows/lint-and-format.yaml +25 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/.github/workflows/on-pull-request.yaml +3 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/.github/workflows/on-push-main.yaml +11 -4
- rock_physics_open-0.3.1/.github/workflows/test.yaml +40 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/.gitignore +0 -1
- rock_physics_open-0.3.1/.pre-commit-config.yaml +41 -0
- rock_physics_open-0.3.1/.python-version +1 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/CHANGELOG.md +28 -0
- {rock_physics_open-0.2.3/src/rock_physics_open.egg-info → rock_physics_open-0.3.1}/PKG-INFO +4 -8
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/README.md +1 -1
- rock_physics_open-0.3.1/pyproject.toml +140 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/images/bw_1992_fig_10_oil_viscosity.png +0 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/images/bw_1992_fig_12_brine_velocity.png +0 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/images/bw_1992_fig_13_brine_density.png +0 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/images/bw_1992_fig_14_brine_bulk_modulus.png +0 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/images/bw_1992_fig_15_brine_viscosity.png +0 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/images/bw_1992_fig_2_gas_density.png +0 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/images/bw_1992_fig_3_gas_bulk_modulus.png +0 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/images/bw_1992_fig_4_gas_viscosity.png +0 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/images/bw_1992_fig_5_oil_density.png +0 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/images/bw_1992_fig_7_oil_bulk_modulus.png +0 -0
- rock_physics_open-0.3.1/scripts_and_notebooks/test_batzle_wang_figures.ipynb +450 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/gen_utilities/dict_to_float.py +6 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/gen_utilities/dim_check_vector.py +35 -5
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/gen_utilities/filter_input.py +11 -6
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/gen_utilities/filter_output.py +29 -19
- rock_physics_open-0.3.1/src/rock_physics_open/equinor_utilities/machine_learning_utilities/__init__.py +15 -0
- rock_physics_open-0.3.1/src/rock_physics_open/equinor_utilities/machine_learning_utilities/base_pressure_model.py +172 -0
- rock_physics_open-0.3.1/src/rock_physics_open/equinor_utilities/machine_learning_utilities/exponential_model.py +133 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/machine_learning_utilities/import_ml_models.py +7 -4
- rock_physics_open-0.3.1/src/rock_physics_open/equinor_utilities/machine_learning_utilities/polynomial_model.py +128 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/machine_learning_utilities/run_regression.py +6 -4
- rock_physics_open-0.3.1/src/rock_physics_open/equinor_utilities/machine_learning_utilities/sigmoidal_model.py +237 -0
- rock_physics_open-0.3.1/src/rock_physics_open/equinor_utilities/optimisation_utilities/__init__.py +19 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/snapshot_test_utilities/compare_snapshots.py +1 -2
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/backus_ave.py +16 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/dvorkin_nur.py +10 -2
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/gassmann.py +32 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/hashin_shtrikman.py +36 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/hertz_mindlin.py +9 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/moduli_velocity.py +22 -6
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/reflection_eq.py +28 -6
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/rho.py +12 -2
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/voigt_reuss_hill.py +25 -4
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/walton.py +8 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/wood_brie.py +20 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/display_result_statistics.py +16 -9
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/gassmann_dry_mod.py +21 -2
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/gassmann_mod.py +21 -2
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/gassmann_sub_mod.py +23 -12
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/hs_average.py +20 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/pressure.py +9 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/reflectivity.py +26 -10
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/timeshift.py +15 -2
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/vp_vs_rho_set_statistics.py +40 -24
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/vrh_3_min.py +24 -2
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/brine_model/brine_properties.py +70 -35
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/gas_model/gas_properties.py +79 -37
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/oil_model/dead_oil_density.py +21 -16
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/oil_model/dead_oil_velocity.py +9 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/oil_model/live_oil_density.py +16 -13
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/oil_model/live_oil_velocity.py +3 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/oil_model/oil_properties.py +59 -29
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/__init__.py +2 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/constant_cement_optimisation.py +4 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/friable_models.py +6 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/friable_optimisation.py +4 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/patchy_cement_model.py +103 -5
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/patchy_cement_optimisation.py +4 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/__init__.py +0 -10
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/carbonate_pressure_substitution.py +1 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/curvefit_t_matrix_exp.py +1 -2
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_opt_fluid_sub_exp.py +3 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_opt_fluid_sub_petec.py +5 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_opt_forward_model_exp.py +5 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_opt_forward_model_min.py +4 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_parameter_optimisation_exp.py +5 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_parameter_optimisation_min.py +4 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/ternary_plots/ternary_plot_utilities.py +3 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/version.py +3 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1/src/rock_physics_open.egg-info}/PKG-INFO +4 -8
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open.egg-info/SOURCES.txt +22 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open.egg-info/requires.txt +0 -6
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/classification_functions_tests/test_class_stats.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/classification_functions_tests/test_lin_class.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/classification_functions_tests/test_mahal_class.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/classification_functions_tests/test_norm_class.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/classification_functions_tests/test_poly_class.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/classification_functions_tests/test_two_step_class.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/conftest.py +4 -1
- rock_physics_open-0.3.1/tests/data/snapshots/test_brine_properties_test_brine_density.npz +0 -0
- rock_physics_open-0.3.1/tests/data/snapshots/test_brine_properties_test_brine_properties.npz +0 -0
- rock_physics_open-0.3.1/tests/data/snapshots/test_brine_properties_test_brine_velocity.npz +0 -0
- rock_physics_open-0.3.1/tests/data/snapshots/test_brine_properties_test_water_density.npz +0 -0
- rock_physics_open-0.3.1/tests/data/snapshots/test_brine_properties_test_water_properties.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_brine_properties_test_water_velocity.npz +0 -0
- rock_physics_open-0.3.1/tests/data/snapshots/test_gas_properties_test_gas_properties.npz +0 -0
- rock_physics_open-0.3.1/tests/data/snapshots/test_multi_vp_vs_rho_stats.csv +4 -0
- rock_physics_open-0.3.1/tests/data/snapshots/test_oil_properties_test_live_oil_density.npz +0 -0
- rock_physics_open-0.3.1/tests/data/snapshots/vp_vs_rho_stats.csv +2 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/fluid_model_tests/test_brine_properties.py +8 -9
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/fluid_model_tests/test_oil_properties.py +4 -6
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/gen_utilities_tests/test_dict_to_float.py +1 -7
- rock_physics_open-0.3.1/tests/gen_utilities_tests/test_dim_check_vector.py +66 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/gen_utilities_tests/test_filter_input.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/gen_utilities_tests/test_filter_output.py +1 -7
- rock_physics_open-0.3.1/tests/machine_learning_utilities_test/test_pressure_models.py +315 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/sandstone_model_tests/test_patchy_cement_fluid_sub_model.py +2 -5
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/sandstone_model_tests/test_sandstone_optimisation.py +3 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_backus_average.py +1 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_dvorkin_nur.py +1 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_gassmann.py +1 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_hashin_shtrikman.py +1 -3
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_hertz_mindlin.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_moduli_velocity.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_reflectivity.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_rho.py +2 -4
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_voigt_reuss_hill.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_walton.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/std_functions_tests/test_wood_brie.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/t_matrix_model_tests/test_opt_param_to_ascii.py +3 -1
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/t_matrix_model_tests/test_t_matrix_optimisation.py +4 -5
- rock_physics_open-0.3.1/tests/various_utilities_tests/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/various_utilities_tests/test_hs_average.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/various_utilities_tests/test_pressure.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/various_utilities_tests/test_reflectivity.py +3 -8
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/various_utilities_tests/test_time_shift.py +1 -7
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/various_utilities_tests/test_vrh_3_min.py +1 -7
- rock_physics_open-0.3.1/uv.lock +1221 -0
- rock_physics_open-0.2.3/.github/release-please-manifest.json +0 -1
- rock_physics_open-0.2.3/.github/workflows/lint-and-format.yaml +0 -21
- rock_physics_open-0.2.3/.github/workflows/test.yaml +0 -63
- rock_physics_open-0.2.3/.pre-commit-config.yaml +0 -24
- rock_physics_open-0.2.3/pyproject.toml +0 -99
- rock_physics_open-0.2.3/pytest.ini +0 -6
- rock_physics_open-0.2.3/src/rock_physics_open/equinor_utilities/machine_learning_utilities/__init__.py +0 -14
- rock_physics_open-0.2.3/src/rock_physics_open/equinor_utilities/machine_learning_utilities/exponential_model.py +0 -119
- rock_physics_open-0.2.3/src/rock_physics_open/equinor_utilities/machine_learning_utilities/sigmoidal_model.py +0 -188
- rock_physics_open-0.2.3/tests/config.py +0 -28
- rock_physics_open-0.2.3/tests/data/snapshots/test_brine_properties_test_brine_density.npz +0 -0
- rock_physics_open-0.2.3/tests/data/snapshots/test_brine_properties_test_brine_properties.npz +0 -0
- rock_physics_open-0.2.3/tests/data/snapshots/test_brine_properties_test_brine_velocity.npz +0 -0
- rock_physics_open-0.2.3/tests/data/snapshots/test_brine_properties_test_water_density.npz +0 -0
- rock_physics_open-0.2.3/tests/data/snapshots/test_brine_properties_test_water_properties.npz +0 -0
- rock_physics_open-0.2.3/tests/data/snapshots/test_gas_properties_test_gas_properties.npz +0 -0
- rock_physics_open-0.2.3/tests/data/snapshots/test_oil_properties_test_live_oil_density.npz +0 -0
- rock_physics_open-0.2.3/tests/gen_utilities_tests/test_dim_check_vector.py +0 -38
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/.github/CODEOWNERS +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/.github/dependabot.yaml +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/.github/release-please-config.json +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/.github/workflows/release-please.yaml +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/CONTRIBUTING.md +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/LICENSE +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/SECURITY.md +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/setup.cfg +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/anisotropy.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/classification_functions/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/classification_functions/class_stats.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/classification_functions/lin_class.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/classification_functions/mahal_class.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/classification_functions/norm_class.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/classification_functions/poly_class.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/classification_functions/post_prob.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/classification_functions/two_step_classification.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/conversions.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/gen_utilities/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/machine_learning_utilities/dummy_vars.py +0 -0
- {rock_physics_open-0.2.3/src/rock_physics_open/t_matrix_models → rock_physics_open-0.3.1/src/rock_physics_open/equinor_utilities/optimisation_utilities}/opt_subst_utilities.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/snapshot_test_utilities/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/snapshot_test_utilities/snapshots.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/std_functions/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/Equinor_logo.gif +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/Equinor_logo.ico +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/equinor_utilities/various_utilities/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/brine_model/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/gas_model/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/oil_model/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/fluid_models/oil_model/oil_bubble_point.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/cemented_shalysand_sandyshale_models.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/constant_cement_models.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/contact_cement_model.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/curvefit_sandstone_models.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/friable_shalysand_sandyshale_models.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/patchy_cement_fluid_substitution_model.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/unresolved_cemented_sandshale_models.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/sandstone_models/unresolved_friable_sandshale_models.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/shale_models/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/shale_models/dem.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/shale_models/dem_dual_por.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/shale_models/kus_tok.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/shale_models/multi_sca.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/shale_models/pq.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/shale_models/sca.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/shale_models/shale4_mineral.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/shale_models/shale4_mineral_dem_overlay.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/span_wagner/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/span_wagner/co2_properties.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/span_wagner/coefficients.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/span_wagner/equations.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/span_wagner/tables/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/span_wagner/tables/carbon_dioxide_density.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/span_wagner/tables/lookup_table.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/Equinor_logo.ico +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/curvefit_t_matrix_min.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/parse_t_matrix_inputs.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/run_t_matrix.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_C.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/array_functions.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_c_eff.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_isolated.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_kd.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_kd_eff.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_kd_uuv.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_pressure.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_t.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_td.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_theta.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_x.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/calc_z.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/check_and_tile.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/g_tensor.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/iso_av.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/iso_ave_all.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/pressure_input.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/t_matrix_vec.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/t_matrix_vector/velocity_vti_angles.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/tmatrix_python.dll +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/t_matrix_models/tmatrix_python.so +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/ternary_plots/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/ternary_plots/gen_ternary_plot.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/ternary_plots/shale_prop_ternary.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/ternary_plots/ternary_patches.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open/ternary_plots/unconventionals_ternary.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open.egg-info/dependency_links.txt +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/src/rock_physics_open.egg-info/top_level.txt +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/classification_functions_tests/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/.gitattributes +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/exp_opt_param.pkl +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/exp_opt_param_test.pkl +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/petec_opt_param.pkl +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/petec_opt_param_test.pkl +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/sandstone_optimisation.csv +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/multi_vp_vs_rho_stats.csv +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_co2_properties_test_co2_properties.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_constant_cement_model_test_constant_cement_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_constant_cement_model_test_constant_cement_model_dry.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_constant_cement_model_test_constant_cement_model_high_phi.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_constant_cement_model_test_constant_cement_model_high_phi_extrapolate.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_contact_cement_model_test_contact_cement_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_dem_models_test_dem_4_min_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_dem_models_test_dem_4_min_overlay_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_dem_models_test_dem_dual_por_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_dem_models_test_dem_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_friable_models_test_friable_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_friable_models_test_friable_model_dry.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_gassmann_test_gassmann.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_gassmann_test_gassmann_dry.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_gassmann_test_gassmann_sub.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_kus_tok_model_test_kus_tok_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_oil_properties_test_live_oil_velocity.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_oil_properties_test_oil_prop.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_patchy_cement_fluid_sub_model_test_patchy_cement_fluid_sub_model_cem_frac.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_patchy_cement_fluid_sub_model_test_patchy_cement_fluid_sub_model_cem_frac_snap.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_patchy_cement_fluid_sub_model_test_patchy_cement_fluid_sub_model_no_change.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_patchy_cement_fluid_sub_model_test_patchy_cement_fluid_sub_model_weight.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_patchy_cement_fluid_sub_model_test_patchy_cement_fluid_sub_model_weight_snap.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_patchy_cement_fluid_sub_model_test_patchy_cement_model_cem_frac.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_patchy_cement_fluid_sub_model_test_patchy_cement_model_exceed_phi_extrapolate.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_patchy_cement_fluid_sub_model_test_patchy_cement_model_weight.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_run_t_matrix_test_run_t_matrix.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_run_t_matrix_test_run_t_matrix_porosity_vectorised.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_run_t_matrix_with_opt_params_test_run_t_matrix_opt_forward_model_exp.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_run_t_matrix_with_opt_params_test_run_t_matrix_opt_forward_model_petec.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_run_t_matrix_with_opt_params_test_run_t_matrix_with_opt_params_exp.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_run_t_matrix_with_opt_params_test_run_t_matrix_with_opt_params_petec.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_sandstone_optimisation_test_constant_cement_optimisation.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_sandstone_optimisation_test_friable_optimisation.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_sandstone_optimisation_test_patchy_cement_optimisation.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_sandy_shale_models_test_cemented_sandy_shale_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_sandy_shale_models_test_friable_sandy_shale_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_sca_models_test_multi_sca_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_sca_models_test_sca_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_t_matrix_c_test_t_matrix_c.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_t_matrix_c_test_t_matrix_vectorised.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_t_matrix_optimisation_test_optimisation_part.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_t_matrix_optimisation_test_t_matrix_opt_params_exp.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_t_matrix_optimisation_test_t_matrix_opt_params_petec.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_ternary_plots_test_ternary.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_unresolved_models_test_unresolved_cemented_sand_shale_model.npz +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/snapshots/test_unresolved_models_test_unresolved_friable_sand_shale_model.npz +0 -0
- /rock_physics_open-0.2.3/tests/data/snapshots/vp_vs_rho_stats.csv → /rock_physics_open-0.3.1/tests/data/snapshots/test_vp_vs_rho_stats.csv +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/test_well.csv +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/data/tmatrix_test_data.csv +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/fluid_model_tests/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/fluid_model_tests/test_gas_properties.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/gen_utilities_tests/__init__.py +0 -0
- {rock_physics_open-0.2.3/tests/sandstone_model_tests → rock_physics_open-0.3.1/tests/machine_learning_utilities_test}/__init__.py +0 -0
- {rock_physics_open-0.2.3/tests/shale_model_tests → rock_physics_open-0.3.1/tests/sandstone_model_tests}/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/sandstone_model_tests/test_constant_cement_model.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/sandstone_model_tests/test_contact_cement_model.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/sandstone_model_tests/test_friable_models.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/sandstone_model_tests/test_sandy_shale_models.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/sandstone_model_tests/test_unresolved_models.py +0 -0
- {rock_physics_open-0.2.3/tests/span_wagner → rock_physics_open-0.3.1/tests/shale_model_tests}/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/shale_model_tests/test_dem_models.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/shale_model_tests/test_kus_tok_model.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/shale_model_tests/test_sca_models.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/shale_model_tests/test_ternary_plots.py +0 -0
- {rock_physics_open-0.2.3/tests/std_functions_tests → rock_physics_open-0.3.1/tests/span_wagner}/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/span_wagner/test_co2_properties.py +0 -0
- {rock_physics_open-0.2.3/tests/t_matrix_model_tests → rock_physics_open-0.3.1/tests/std_functions_tests}/__init__.py +0 -0
- {rock_physics_open-0.2.3/tests/various_utilities_tests → rock_physics_open-0.3.1/tests/t_matrix_model_tests}/__init__.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/t_matrix_model_tests/test_run_t_matrix.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/t_matrix_model_tests/test_run_t_matrix_with_opt_params.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/t_matrix_model_tests/test_t_matrix_c.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/various_utilities_tests/test_gassmann.py +0 -0
- {rock_physics_open-0.2.3 → rock_physics_open-0.3.1}/tests/various_utilities_tests/test_vp_vs_rho_stats.py +0 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
// Definition for the devcontainer used by GitHub Codespaces.
|
|
2
|
+
{
|
|
3
|
+
"name": "Full-stack devcontainer (Backend & Frontend)",
|
|
4
|
+
"image": "mcr.microsoft.com/devcontainers/universal:2",
|
|
5
|
+
"remoteEnv": {
|
|
6
|
+
"COMPOSE_BAKE": "true"
|
|
7
|
+
},
|
|
8
|
+
"customizations": {
|
|
9
|
+
"vscode": {
|
|
10
|
+
"settings": {
|
|
11
|
+
// Set formatter for specific filetypes and enable format on save
|
|
12
|
+
"[toml]": {
|
|
13
|
+
"editor.defaultFormatter": "tamasfe.even-better-toml",
|
|
14
|
+
"editor.formatOnSave": true
|
|
15
|
+
},
|
|
16
|
+
"[json][jsonc]": {
|
|
17
|
+
"editor.defaultFormatter": "vscode.json-language-features",
|
|
18
|
+
"editor.formatOnSave": true
|
|
19
|
+
},
|
|
20
|
+
"[dockercompose]": {
|
|
21
|
+
"editor.defaultFormatter": "ms-azuretools.vscode-containers",
|
|
22
|
+
"editor.formatOnSave": true
|
|
23
|
+
},
|
|
24
|
+
"[github-actions-workflow][github-workflow][yaml]": {
|
|
25
|
+
"editor.defaultFormatter": "redhat.vscode-yaml",
|
|
26
|
+
"editor.formatOnSave": true
|
|
27
|
+
},
|
|
28
|
+
"[python]": {
|
|
29
|
+
"editor.formatOnSave": true,
|
|
30
|
+
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
31
|
+
"editor.codeActionsOnSave": {
|
|
32
|
+
"source.organizeImports": "explicit",
|
|
33
|
+
"source.fixAll": "explicit"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"[typescriptreact][typescript][javascript][javascriptreact][css]": {
|
|
37
|
+
"editor.formatOnSave": true,
|
|
38
|
+
"editor.defaultFormatter": "biomejs.biome",
|
|
39
|
+
"editor.codeActionsOnSave": {
|
|
40
|
+
"source.organizeImports.biome": "explicit",
|
|
41
|
+
"source.fixAll.biome": "explicit"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
// Python specific settings
|
|
45
|
+
"notebook.formatOnSave.enabled": true,
|
|
46
|
+
"basedpyright.analysis.diagnosticMode": "openFilesOnly",
|
|
47
|
+
},
|
|
48
|
+
// Extensions that is handy to have in the devcontainer
|
|
49
|
+
"extensions": [
|
|
50
|
+
"biomejs.biome",
|
|
51
|
+
"charliermarsh.ruff",
|
|
52
|
+
"ms-python.python",
|
|
53
|
+
"ms-toolsai.jupyter",
|
|
54
|
+
"detachhead.basedpyright",
|
|
55
|
+
"tamasfe.even-better-toml",
|
|
56
|
+
"docker.docker",
|
|
57
|
+
"redhat.vscode-yaml",
|
|
58
|
+
"eamodio.gitlens",
|
|
59
|
+
"ms-azuretools.vscode-containers",
|
|
60
|
+
"streetsidesoftware.code-spell-checker",
|
|
61
|
+
"streetsidesoftware.code-spell-checker-norwegian-bokmal",
|
|
62
|
+
"streetsidesoftware.code-spell-checker-scientific-terms",
|
|
63
|
+
"github.vscode-github-actions",
|
|
64
|
+
"DavidAnson.vscode-markdownlint"
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{".":"0.3.1"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: lint-and-format
|
|
2
|
+
permissions:
|
|
3
|
+
contents: read
|
|
4
|
+
|
|
5
|
+
on:
|
|
6
|
+
workflow_call:
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
pre-commit:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout
|
|
14
|
+
uses: actions/checkout@v5
|
|
15
|
+
|
|
16
|
+
- name: Install uv
|
|
17
|
+
uses: astral-sh/setup-uv@v6
|
|
18
|
+
with:
|
|
19
|
+
enable-cache: true
|
|
20
|
+
|
|
21
|
+
- name: Install dependencies
|
|
22
|
+
run: uv sync --locked --all-extras --dev
|
|
23
|
+
|
|
24
|
+
- name: Run pre-commit
|
|
25
|
+
run: uv run pre-commit run --all-files
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
name: push to main branch
|
|
2
2
|
|
|
3
|
+
permissions:
|
|
4
|
+
contents: read
|
|
5
|
+
|
|
3
6
|
on:
|
|
4
7
|
push:
|
|
5
8
|
branches:
|
|
@@ -14,6 +17,10 @@ jobs:
|
|
|
14
17
|
|
|
15
18
|
release-please:
|
|
16
19
|
needs: test
|
|
20
|
+
permissions:
|
|
21
|
+
contents: write
|
|
22
|
+
issues: write
|
|
23
|
+
pull-requests: write
|
|
17
24
|
uses: ./.github/workflows/release-please.yaml
|
|
18
25
|
|
|
19
26
|
build:
|
|
@@ -23,12 +30,12 @@ jobs:
|
|
|
23
30
|
runs-on: ubuntu-latest
|
|
24
31
|
steps:
|
|
25
32
|
- name: Checkout
|
|
26
|
-
uses: actions/checkout@
|
|
33
|
+
uses: actions/checkout@v5
|
|
27
34
|
with:
|
|
28
35
|
fetch-depth: 0
|
|
29
36
|
|
|
30
37
|
- name: Setup Python
|
|
31
|
-
uses: actions/setup-python@
|
|
38
|
+
uses: actions/setup-python@v6
|
|
32
39
|
with:
|
|
33
40
|
python-version: 3.11
|
|
34
41
|
|
|
@@ -51,11 +58,11 @@ jobs:
|
|
|
51
58
|
name: pypi
|
|
52
59
|
url: https://pypi.org/p/rock-physics-open
|
|
53
60
|
permissions:
|
|
54
|
-
id-token: write
|
|
61
|
+
id-token: write # required for Trusted Publishing to PyPI
|
|
55
62
|
|
|
56
63
|
steps:
|
|
57
64
|
- name: Download Artifact
|
|
58
|
-
uses: actions/download-artifact@
|
|
65
|
+
uses: actions/download-artifact@v5
|
|
59
66
|
with:
|
|
60
67
|
name: distribution
|
|
61
68
|
path: dist/
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
name: test
|
|
2
|
+
permissions:
|
|
3
|
+
contents: read
|
|
4
|
+
|
|
5
|
+
on:
|
|
6
|
+
workflow_call:
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
test:
|
|
11
|
+
strategy:
|
|
12
|
+
fail-fast: false
|
|
13
|
+
matrix:
|
|
14
|
+
os: [windows-latest, ubuntu-latest, macos-latest]
|
|
15
|
+
python-version: ["3.11", "3.12", "3.13"]
|
|
16
|
+
runs-on: ${{ matrix.os }}
|
|
17
|
+
name: ${{ matrix.os }} / ${{ matrix.python-version }}
|
|
18
|
+
steps:
|
|
19
|
+
- name: Checkout
|
|
20
|
+
uses: actions/checkout@v5
|
|
21
|
+
|
|
22
|
+
- name: Install uv
|
|
23
|
+
uses: astral-sh/setup-uv@v6
|
|
24
|
+
with:
|
|
25
|
+
enable-cache: true
|
|
26
|
+
python-version: ${{ matrix.python-version }}
|
|
27
|
+
|
|
28
|
+
- name: Show Machine Information
|
|
29
|
+
run: uvx --from py-cpuinfo cpuinfo
|
|
30
|
+
|
|
31
|
+
- name: Install dependencies
|
|
32
|
+
run: uv sync --locked --all-extras --dev
|
|
33
|
+
|
|
34
|
+
- name: Test
|
|
35
|
+
if: ${{ matrix.os == 'windows-latest' }}
|
|
36
|
+
run: uv run pytest
|
|
37
|
+
|
|
38
|
+
- name: Test ( -m "not use_graphics" )
|
|
39
|
+
if: ${{ matrix.os != 'windows-latest' }}
|
|
40
|
+
run: uv run pytest -m "not use_graphics"
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
default_stages: [pre-commit]
|
|
2
|
+
|
|
3
|
+
repos:
|
|
4
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
5
|
+
rev: v5.0.0
|
|
6
|
+
hooks:
|
|
7
|
+
- id: check-ast
|
|
8
|
+
language_version: python3.11
|
|
9
|
+
- id: debug-statements
|
|
10
|
+
- id: check-merge-conflict
|
|
11
|
+
- id: detect-private-key
|
|
12
|
+
- id: check-case-conflict
|
|
13
|
+
- id: check-toml
|
|
14
|
+
- id: check-yaml
|
|
15
|
+
- id: check-json
|
|
16
|
+
exclude: ".devcontainer|.vscode"
|
|
17
|
+
- id: trailing-whitespace
|
|
18
|
+
- id: end-of-file-fixer
|
|
19
|
+
|
|
20
|
+
- repo: local
|
|
21
|
+
hooks:
|
|
22
|
+
- id: ruff
|
|
23
|
+
name: "Python: lint"
|
|
24
|
+
entry: uv run ruff check --fix
|
|
25
|
+
language: system
|
|
26
|
+
files: .*\.py$
|
|
27
|
+
pass_filenames: false
|
|
28
|
+
|
|
29
|
+
- id: ruff-format
|
|
30
|
+
name: "Python: format"
|
|
31
|
+
entry: uv run ruff format
|
|
32
|
+
language: system
|
|
33
|
+
pass_filenames: false
|
|
34
|
+
files: .*\.py$
|
|
35
|
+
|
|
36
|
+
- id: basedpyright
|
|
37
|
+
name: "Python: static type checking"
|
|
38
|
+
entry: uv run basedpyright
|
|
39
|
+
language: system
|
|
40
|
+
pass_filenames: false
|
|
41
|
+
files: .*\.py$
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.11
|
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.1](https://github.com/equinor/rock-physics-open/compare/v0.3.0...v0.3.1) (2025-10-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Add static typing to std_functions and various_utilities ([1ed5353](https://github.com/equinor/rock-physics-open/commit/1ed5353d0886e0d7625ae1e998535bd5c78b9e31))
|
|
9
|
+
* catch cases with non-consistent input lengths ([7843c8e](https://github.com/equinor/rock-physics-open/commit/7843c8ed3e9d4144bbe7079d314af20c087d48be))
|
|
10
|
+
* make proper reference to cell in numpy array with ndim > 0 ([0abca8f](https://github.com/equinor/rock-physics-open/commit/0abca8fcb82a5d35a990857d4ecbd2f050077b08))
|
|
11
|
+
* remove redundant prototypes ([7843c8e](https://github.com/equinor/rock-physics-open/commit/7843c8ed3e9d4144bbe7079d314af20c087d48be))
|
|
12
|
+
|
|
13
|
+
## [0.3.0](https://github.com/equinor/rock-physics-open/compare/v0.2.3...v0.3.0) (2025-10-21)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* add an abstract base class for all pressure sensitivity models, add models for polynomial, friable, patchy cement; add tests ([a8cfbdb](https://github.com/equinor/rock-physics-open/commit/a8cfbdb4e7d890f5199a18cf06a98c030003fbc9))
|
|
19
|
+
* Add static type checking to gen_utilities ([f3c9424](https://github.com/equinor/rock-physics-open/commit/f3c94246e86810cc40e2a51682e8168ad8f0a28c))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* enforce SI units in all fluid models, update snapshots ([c8fe5c0](https://github.com/equinor/rock-physics-open/commit/c8fe5c0f443c7821036e56153f82503a6b098642))
|
|
25
|
+
* Potential fix for code scanning alert no. 3: Workflow does not contain permissions ([8f520ec](https://github.com/equinor/rock-physics-open/commit/8f520ec8fe9990c50dd0d64611022e5a7c233a3d))
|
|
26
|
+
* Potential fix for code scanning alert no. 6: Workflow does not contain permissions ([55fe74e](https://github.com/equinor/rock-physics-open/commit/55fe74eedd4c38f1de54a65e7d9980f0f858e785))
|
|
27
|
+
* Potential fix for code scanning alert no. 7: Workflow does not contain permissions ([09aa44f](https://github.com/equinor/rock-physics-open/commit/09aa44f936522c541269b3c0aeab7674084b745b))
|
|
28
|
+
* Potential fix for code scanning alert no. 9: Workflow does not contain permissions ([d8983f4](https://github.com/equinor/rock-physics-open/commit/d8983f45542dee6c5d6f253273ee35055d44ef07))
|
|
29
|
+
* revert isinstance checking ([f3c9424](https://github.com/equinor/rock-physics-open/commit/f3c94246e86810cc40e2a51682e8168ad8f0a28c))
|
|
30
|
+
|
|
3
31
|
## [0.2.3](https://github.com/equinor/rock-physics-open/compare/v0.2.2...v0.2.3) (2025-08-21)
|
|
4
32
|
|
|
5
33
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rock_physics_open
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Equinor Rock Physics Module
|
|
5
5
|
Author-email: Harald Flesche <hfle@equinor.com>, Eivind Jahren <ejah@equinor.com>, Jimmy Zurcher <jiz@equinor.com>
|
|
6
|
-
Maintainer-email: Harald Flesche <hfle@equinor.com>, Eirik Ola Aksnes <eoaksnes@equinor.com>,
|
|
6
|
+
Maintainer-email: Harald Flesche <hfle@equinor.com>, Eirik Ola Aksnes <eoaksnes@equinor.com>, Sivert Utne <sutn@equinor.com>, Einar Wigum Arbo <earb@equinor.com>
|
|
7
7
|
Project-URL: Repository, https://github.com/equinor/rock-physics-open
|
|
8
8
|
Project-URL: Homepage, https://github.com/equinor/rock-physics-open
|
|
9
9
|
Project-URL: Changelog, https://github.com/equinor/rock-physics-open/blob/main/CHANGELOG.md
|
|
@@ -16,6 +16,7 @@ Classifier: Topic :: Utilities
|
|
|
16
16
|
Classifier: Operating System :: POSIX :: Linux
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
20
|
Classifier: Natural Language :: English
|
|
20
21
|
Requires-Python: >=3.11
|
|
21
22
|
Description-Content-Type: text/markdown
|
|
@@ -27,11 +28,6 @@ Requires-Dist: scipy<2,>=1.10.1
|
|
|
27
28
|
Requires-Dist: scikit-learn>=1.2.2
|
|
28
29
|
Requires-Dist: sympy>=1.13.3
|
|
29
30
|
Requires-Dist: tmatrix>=1.0.0
|
|
30
|
-
Provides-Extra: tests
|
|
31
|
-
Requires-Dist: pytest>=8.3.5; extra == "tests"
|
|
32
|
-
Requires-Dist: pytest-cov>=6.1.1; extra == "tests"
|
|
33
|
-
Requires-Dist: ruff>=0.11.6; extra == "tests"
|
|
34
|
-
Requires-Dist: pre-commit>=4.2.0; extra == "tests"
|
|
35
31
|
Dynamic: license-file
|
|
36
32
|
|
|
37
33
|
<div align="center">
|
|
@@ -80,7 +76,7 @@ Alternatively, you can update the dependencies in your `pyproject.toml` file:
|
|
|
80
76
|
<!-- x-release-please-start-version -->
|
|
81
77
|
```toml
|
|
82
78
|
dependencies = [
|
|
83
|
-
"rock-physics-open == 0.
|
|
79
|
+
"rock-physics-open == 0.3.1",
|
|
84
80
|
]
|
|
85
81
|
```
|
|
86
82
|
<!-- x-release-please-end-version -->
|
|
@@ -44,7 +44,7 @@ Alternatively, you can update the dependencies in your `pyproject.toml` file:
|
|
|
44
44
|
<!-- x-release-please-start-version -->
|
|
45
45
|
```toml
|
|
46
46
|
dependencies = [
|
|
47
|
-
"rock-physics-open == 0.
|
|
47
|
+
"rock-physics-open == 0.3.1",
|
|
48
48
|
]
|
|
49
49
|
```
|
|
50
50
|
<!-- x-release-please-end-version -->
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools >= 69.5.1", "setuptools_scm[toml] >= 7.1.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[tool.setuptools_scm]
|
|
6
|
+
write_to = "src/rock_physics_open/version.py"
|
|
7
|
+
version_scheme = "only-version"
|
|
8
|
+
local_scheme = "no-local-version"
|
|
9
|
+
|
|
10
|
+
[tool.setuptools]
|
|
11
|
+
include-package-data = true
|
|
12
|
+
|
|
13
|
+
[tool.setuptools.packages.find]
|
|
14
|
+
where = ["src"]
|
|
15
|
+
|
|
16
|
+
[tool.setuptools.package-data]
|
|
17
|
+
"*" = ["*.dll", "*.so", "*.ini", "*.h5", "*.pkl"]
|
|
18
|
+
|
|
19
|
+
[project]
|
|
20
|
+
name = "rock_physics_open"
|
|
21
|
+
description = "Equinor Rock Physics Module"
|
|
22
|
+
authors = [
|
|
23
|
+
{ name = "Harald Flesche", email = "hfle@equinor.com" },
|
|
24
|
+
{ name = "Eivind Jahren", email = "ejah@equinor.com" },
|
|
25
|
+
{ name = "Jimmy Zurcher", email = "jiz@equinor.com" },
|
|
26
|
+
]
|
|
27
|
+
maintainers = [
|
|
28
|
+
{ name = "Harald Flesche", email = "hfle@equinor.com" },
|
|
29
|
+
{ name = "Eirik Ola Aksnes", email = "eoaksnes@equinor.com" },
|
|
30
|
+
{ name = "Sivert Utne", email = "sutn@equinor.com" },
|
|
31
|
+
{ name = "Einar Wigum Arbo", email = "earb@equinor.com" },
|
|
32
|
+
]
|
|
33
|
+
readme = "README.md"
|
|
34
|
+
requires-python = ">=3.11"
|
|
35
|
+
keywords = [
|
|
36
|
+
"energy",
|
|
37
|
+
"subsurface",
|
|
38
|
+
"seismic",
|
|
39
|
+
"rock physics",
|
|
40
|
+
"scientific",
|
|
41
|
+
"engineering",
|
|
42
|
+
]
|
|
43
|
+
classifiers = [
|
|
44
|
+
"Intended Audience :: Science/Research",
|
|
45
|
+
"Topic :: Scientific/Engineering",
|
|
46
|
+
"Topic :: Scientific/Engineering :: Physics",
|
|
47
|
+
"Topic :: Software Development :: Libraries",
|
|
48
|
+
"Topic :: Utilities",
|
|
49
|
+
"Operating System :: POSIX :: Linux",
|
|
50
|
+
"Programming Language :: Python :: 3.11",
|
|
51
|
+
"Programming Language :: Python :: 3.12",
|
|
52
|
+
"Programming Language :: Python :: 3.13",
|
|
53
|
+
"Natural Language :: English",
|
|
54
|
+
]
|
|
55
|
+
dynamic = ["version"]
|
|
56
|
+
dependencies = [
|
|
57
|
+
"numpy >= 1.26.4",
|
|
58
|
+
"pandas >= 2.0.2",
|
|
59
|
+
"matplotlib >= 3.7.1",
|
|
60
|
+
"scipy >= 1.10.1, < 2",
|
|
61
|
+
"scikit-learn >= 1.2.2",
|
|
62
|
+
"sympy >= 1.13.3", # TODO: remove? (only used 1 place in span_wagner co2 equations)
|
|
63
|
+
"tmatrix >= 1.0.0",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
[project.urls]
|
|
68
|
+
Repository = "https://github.com/equinor/rock-physics-open"
|
|
69
|
+
Homepage = "https://github.com/equinor/rock-physics-open"
|
|
70
|
+
Changelog = "https://github.com/equinor/rock-physics-open/blob/main/CHANGELOG.md"
|
|
71
|
+
|
|
72
|
+
[dependency-groups]
|
|
73
|
+
dev = [
|
|
74
|
+
"basedpyright>=1.31.4",
|
|
75
|
+
"matplotlib-stubs>=0.3.3",
|
|
76
|
+
"pandas-stubs>=2.3.2.250827",
|
|
77
|
+
"pre-commit>=4.3.0",
|
|
78
|
+
"pytest>=8.4.1",
|
|
79
|
+
"pytest-cov>=6.2.1",
|
|
80
|
+
"ruff>=0.12.11",
|
|
81
|
+
"scipy-stubs>=1.16.1.1",
|
|
82
|
+
]
|
|
83
|
+
|
|
84
|
+
[tool.ruff]
|
|
85
|
+
lint.select = [
|
|
86
|
+
"C", # Complexity
|
|
87
|
+
"E", # Errors
|
|
88
|
+
"F", # Flake (unused variables etc.)
|
|
89
|
+
"I", # Imports
|
|
90
|
+
"NPY", # Numpy
|
|
91
|
+
"PIE", # Python idioms and style
|
|
92
|
+
"PLR1711", # Redundant Return
|
|
93
|
+
"PT", # PyTest
|
|
94
|
+
"Q", # Quotes
|
|
95
|
+
"RET", # Return statements
|
|
96
|
+
"RSE", # Raising exceptions
|
|
97
|
+
"SIM", # Code simplification
|
|
98
|
+
"W", # Warnings
|
|
99
|
+
]
|
|
100
|
+
lint.ignore = [
|
|
101
|
+
"C901", # Complex Code (too many branches/statements)
|
|
102
|
+
"E501", # Line Too Long
|
|
103
|
+
]
|
|
104
|
+
line-length = 88
|
|
105
|
+
|
|
106
|
+
[tool.ruff.lint.isort]
|
|
107
|
+
combine-as-imports = true
|
|
108
|
+
|
|
109
|
+
[tool.ruff.lint.per-file-ignores]
|
|
110
|
+
"*.ipynb" = ["E402", "E501"]
|
|
111
|
+
|
|
112
|
+
[tool.pytest.ini_options]
|
|
113
|
+
markers = [
|
|
114
|
+
"use_graphics", # marks test as dependent on display (deselect with '-m "not use_graphics")]
|
|
115
|
+
]
|
|
116
|
+
addopts = ["--color=yes", "--strict-markers"]
|
|
117
|
+
|
|
118
|
+
[tool.basedpyright]
|
|
119
|
+
pythonVersion = "3.11"
|
|
120
|
+
include = [
|
|
121
|
+
# Currently only enabling on general utilities and the corresponding tests
|
|
122
|
+
"src/rock_physics_open/equinor_utilities/gen_utilities/*.py",
|
|
123
|
+
"src/rock_physics_open/equinor_utilities/various_utilities/*.py",
|
|
124
|
+
"src/rock_physics_open/equinor_utilities/std_functions/*.py",
|
|
125
|
+
"tests/gen_utilities_tests/*.py",
|
|
126
|
+
]
|
|
127
|
+
exclude = ["src/**/version.py"]
|
|
128
|
+
allowedUntypedLibraries = [
|
|
129
|
+
"pandas",
|
|
130
|
+
"sklearn",
|
|
131
|
+
"tkinter",
|
|
132
|
+
"sympy",
|
|
133
|
+
"matplotlib.pyplot",
|
|
134
|
+
"matplotlib",
|
|
135
|
+
"pyplot",
|
|
136
|
+
"plt",
|
|
137
|
+
]
|
|
138
|
+
reportAny = false
|
|
139
|
+
reportExplicitAny = false
|
|
140
|
+
reportMissingTypeStubs = false
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|