├── .coveragerc ├── .git-blame-ignore-revs ├── .github └── workflows │ ├── ci.yml │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yml ├── CITATION.cff ├── LICENSE ├── README.md ├── docs ├── 00tutorials │ ├── index.rst │ ├── tutorial0_well_single_layer_aquifer.ipynb │ └── tutorial1_well_multi_layer_aquifer.ipynb ├── 01howto │ ├── elements │ │ ├── areasinks.rst │ │ ├── constant.rst │ │ ├── index.rst │ │ ├── inhoms.rst │ │ ├── linedoublets.rst │ │ ├── linesinks.rst │ │ └── wells.rst │ ├── getting_started │ │ ├── create_basic_model.rst │ │ ├── cross_sections.rst │ │ ├── index.rst │ │ └── models.rst │ └── index.rst ├── 02concepts │ └── index.rst ├── 03examples │ ├── BuildingPit.ipynb │ ├── circareasink_example.ipynb │ ├── circular_buildingpit.ipynb │ ├── figs │ │ ├── inhomogeneity_exercise3.png │ │ ├── layout_exercise2.PNG │ │ ├── timml_notebook2_layout.png │ │ ├── timml_notebook2_layout_old.png │ │ └── timml_notebook5_layout.png │ ├── index.rst │ ├── lake_horizontal_well.ipynb │ ├── normal_flux.ipynb │ ├── test_linesink_discharge.ipynb │ ├── test_polygon_areasink.ipynb │ ├── test_well_near_lake.ipynb │ ├── timml_figures.ipynb │ ├── timml_notebook0_sol.ipynb │ ├── timml_notebook1_sol.ipynb │ ├── timml_notebook2_sol.ipynb │ ├── timml_notebook3_3D_sol.ipynb │ ├── timml_notebook3_sol.ipynb │ ├── timml_notebook4_sol.ipynb │ ├── timml_notebook5_sol.ipynb │ ├── timml_notebook6_sol.ipynb │ └── timml_notebook7.ipynb ├── 04xsections │ ├── index.rst │ └── timml_xsection.ipynb ├── 06about │ ├── index.rst │ └── publications.bib ├── Makefile ├── _static │ ├── css │ │ └── custom.css │ ├── example_output.png │ ├── model.png │ ├── model3d.png │ ├── modelmaq.png │ ├── tim_logo.png │ └── tim_logo_small.png ├── _templates │ └── autosummary │ │ ├── class.rst │ │ └── module.rst ├── conf.py ├── index.rst └── make.bat ├── examples ├── timml_notebook0_sol.py └── workshop_nhv │ ├── vlaketunnel-tim.ipynb │ └── vlaketunnel_functions.py ├── notebooks ├── anisotropy_pap_posted.ipynb ├── benchmarking_besselaes.ipynb ├── besselaesnew_test_data │ ├── potld_order0_lab0.txt │ ├── potld_order0_lab1.txt │ ├── potld_order0_lab2.txt │ ├── potld_order1_lab0.txt │ ├── potld_order1_lab1.txt │ ├── potld_order1_lab2.txt │ ├── potld_order2_lab0.txt │ ├── potld_order2_lab1.txt │ ├── potld_order2_lab2.txt │ ├── potls_order0_lab0.txt │ ├── potls_order0_lab1.txt │ ├── potls_order0_lab2.txt │ ├── potls_order1_lab0.txt │ ├── potls_order1_lab1.txt │ ├── potls_order1_lab2.txt │ ├── potls_order2_lab0.txt │ ├── potls_order2_lab1.txt │ ├── potls_order2_lab2.txt │ ├── qxld_order0_lab0.txt │ ├── qxld_order0_lab1.txt │ ├── qxld_order0_lab2.txt │ ├── qxld_order1_lab0.txt │ ├── qxld_order1_lab1.txt │ ├── qxld_order1_lab2.txt │ ├── qxld_order2_lab0.txt │ ├── qxld_order2_lab1.txt │ ├── qxld_order2_lab2.txt │ ├── qxls_order0_lab0.txt │ ├── qxls_order0_lab1.txt │ ├── qxls_order0_lab2.txt │ ├── qxls_order1_lab0.txt │ ├── qxls_order1_lab1.txt │ ├── qxls_order1_lab2.txt │ ├── qxls_order2_lab0.txt │ ├── qxls_order2_lab1.txt │ ├── qxls_order2_lab2.txt │ ├── qyld_order0_lab0.txt │ ├── qyld_order0_lab1.txt │ ├── qyld_order0_lab2.txt │ ├── qyld_order1_lab0.txt │ ├── qyld_order1_lab1.txt │ ├── qyld_order1_lab2.txt │ ├── qyld_order2_lab0.txt │ ├── qyld_order2_lab1.txt │ ├── qyld_order2_lab2.txt │ ├── qyls_order0_lab0.txt │ ├── qyls_order0_lab1.txt │ ├── qyls_order0_lab2.txt │ ├── qyls_order1_lab0.txt │ ├── qyls_order1_lab1.txt │ ├── qyls_order1_lab2.txt │ ├── qyls_order2_lab0.txt │ ├── qyls_order2_lab1.txt │ └── qyls_order2_lab2.txt ├── large_diameter_experimental.ipynb └── timml_besselaesnew_test.ipynb ├── pyproject.toml ├── pytest.ini ├── tests ├── test_besselaes.py ├── test_import.py └── test_notebooks.py └── timml ├── __init__.py ├── aquifer.py ├── aquifer_parameters.py ├── bessel.py ├── besselaesnumba ├── __init__.py ├── besselaesnumba.py └── besselaesnumba_old.py ├── circareasink.py ├── circinhom.py ├── constant.py ├── controlpoints.py ├── element.py ├── equation.py ├── inhomogeneity.py ├── inhomogeneity1d.py ├── intlinesink.py ├── linedoublet.py ├── linedoublet1d.py ├── linesink.py ├── linesink1d.py ├── model.py ├── plots.py ├── src ├── besselaesnew.cpython-37m-darwin.so.dSYM │ └── Contents │ │ └── Info.plist └── besselaesnew.f95 ├── stripareasink.py ├── trace.py ├── uflow.py ├── version.py └── well.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/.coveragerc -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/README.md -------------------------------------------------------------------------------- /docs/00tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/00tutorials/index.rst -------------------------------------------------------------------------------- /docs/00tutorials/tutorial0_well_single_layer_aquifer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/00tutorials/tutorial0_well_single_layer_aquifer.ipynb -------------------------------------------------------------------------------- /docs/00tutorials/tutorial1_well_multi_layer_aquifer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/00tutorials/tutorial1_well_multi_layer_aquifer.ipynb -------------------------------------------------------------------------------- /docs/01howto/elements/areasinks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/elements/areasinks.rst -------------------------------------------------------------------------------- /docs/01howto/elements/constant.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/elements/constant.rst -------------------------------------------------------------------------------- /docs/01howto/elements/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/elements/index.rst -------------------------------------------------------------------------------- /docs/01howto/elements/inhoms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/elements/inhoms.rst -------------------------------------------------------------------------------- /docs/01howto/elements/linedoublets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/elements/linedoublets.rst -------------------------------------------------------------------------------- /docs/01howto/elements/linesinks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/elements/linesinks.rst -------------------------------------------------------------------------------- /docs/01howto/elements/wells.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/elements/wells.rst -------------------------------------------------------------------------------- /docs/01howto/getting_started/create_basic_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/getting_started/create_basic_model.rst -------------------------------------------------------------------------------- /docs/01howto/getting_started/cross_sections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/getting_started/cross_sections.rst -------------------------------------------------------------------------------- /docs/01howto/getting_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/getting_started/index.rst -------------------------------------------------------------------------------- /docs/01howto/getting_started/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/getting_started/models.rst -------------------------------------------------------------------------------- /docs/01howto/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/01howto/index.rst -------------------------------------------------------------------------------- /docs/02concepts/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/02concepts/index.rst -------------------------------------------------------------------------------- /docs/03examples/BuildingPit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/BuildingPit.ipynb -------------------------------------------------------------------------------- /docs/03examples/circareasink_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/circareasink_example.ipynb -------------------------------------------------------------------------------- /docs/03examples/circular_buildingpit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/circular_buildingpit.ipynb -------------------------------------------------------------------------------- /docs/03examples/figs/inhomogeneity_exercise3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/figs/inhomogeneity_exercise3.png -------------------------------------------------------------------------------- /docs/03examples/figs/layout_exercise2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/figs/layout_exercise2.PNG -------------------------------------------------------------------------------- /docs/03examples/figs/timml_notebook2_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/figs/timml_notebook2_layout.png -------------------------------------------------------------------------------- /docs/03examples/figs/timml_notebook2_layout_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/figs/timml_notebook2_layout_old.png -------------------------------------------------------------------------------- /docs/03examples/figs/timml_notebook5_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/figs/timml_notebook5_layout.png -------------------------------------------------------------------------------- /docs/03examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/index.rst -------------------------------------------------------------------------------- /docs/03examples/lake_horizontal_well.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/lake_horizontal_well.ipynb -------------------------------------------------------------------------------- /docs/03examples/normal_flux.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/normal_flux.ipynb -------------------------------------------------------------------------------- /docs/03examples/test_linesink_discharge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/test_linesink_discharge.ipynb -------------------------------------------------------------------------------- /docs/03examples/test_polygon_areasink.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/test_polygon_areasink.ipynb -------------------------------------------------------------------------------- /docs/03examples/test_well_near_lake.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/test_well_near_lake.ipynb -------------------------------------------------------------------------------- /docs/03examples/timml_figures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/timml_figures.ipynb -------------------------------------------------------------------------------- /docs/03examples/timml_notebook0_sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/timml_notebook0_sol.ipynb -------------------------------------------------------------------------------- /docs/03examples/timml_notebook1_sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/timml_notebook1_sol.ipynb -------------------------------------------------------------------------------- /docs/03examples/timml_notebook2_sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/timml_notebook2_sol.ipynb -------------------------------------------------------------------------------- /docs/03examples/timml_notebook3_3D_sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/timml_notebook3_3D_sol.ipynb -------------------------------------------------------------------------------- /docs/03examples/timml_notebook3_sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/timml_notebook3_sol.ipynb -------------------------------------------------------------------------------- /docs/03examples/timml_notebook4_sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/timml_notebook4_sol.ipynb -------------------------------------------------------------------------------- /docs/03examples/timml_notebook5_sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/timml_notebook5_sol.ipynb -------------------------------------------------------------------------------- /docs/03examples/timml_notebook6_sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/timml_notebook6_sol.ipynb -------------------------------------------------------------------------------- /docs/03examples/timml_notebook7.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/03examples/timml_notebook7.ipynb -------------------------------------------------------------------------------- /docs/04xsections/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/04xsections/index.rst -------------------------------------------------------------------------------- /docs/04xsections/timml_xsection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/04xsections/timml_xsection.ipynb -------------------------------------------------------------------------------- /docs/06about/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/06about/index.rst -------------------------------------------------------------------------------- /docs/06about/publications.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/06about/publications.bib -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/_static/example_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/_static/example_output.png -------------------------------------------------------------------------------- /docs/_static/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/_static/model.png -------------------------------------------------------------------------------- /docs/_static/model3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/_static/model3d.png -------------------------------------------------------------------------------- /docs/_static/modelmaq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/_static/modelmaq.png -------------------------------------------------------------------------------- /docs/_static/tim_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/_static/tim_logo.png -------------------------------------------------------------------------------- /docs/_static/tim_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/_static/tim_logo_small.png -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/_templates/autosummary/module.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/timml_notebook0_sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/examples/timml_notebook0_sol.py -------------------------------------------------------------------------------- /examples/workshop_nhv/vlaketunnel-tim.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/examples/workshop_nhv/vlaketunnel-tim.ipynb -------------------------------------------------------------------------------- /examples/workshop_nhv/vlaketunnel_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/examples/workshop_nhv/vlaketunnel_functions.py -------------------------------------------------------------------------------- /notebooks/anisotropy_pap_posted.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/anisotropy_pap_posted.ipynb -------------------------------------------------------------------------------- /notebooks/benchmarking_besselaes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/benchmarking_besselaes.ipynb -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potld_order0_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potld_order0_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potld_order0_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potld_order0_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potld_order0_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potld_order0_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potld_order1_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potld_order1_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potld_order1_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potld_order1_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potld_order1_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potld_order1_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potld_order2_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potld_order2_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potld_order2_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potld_order2_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potld_order2_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potld_order2_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potls_order0_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potls_order0_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potls_order0_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potls_order0_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potls_order0_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potls_order0_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potls_order1_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potls_order1_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potls_order1_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potls_order1_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potls_order1_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potls_order1_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potls_order2_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potls_order2_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potls_order2_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potls_order2_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/potls_order2_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/potls_order2_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxld_order0_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxld_order0_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxld_order0_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxld_order0_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxld_order0_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxld_order0_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxld_order1_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxld_order1_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxld_order1_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxld_order1_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxld_order1_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxld_order1_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxld_order2_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxld_order2_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxld_order2_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxld_order2_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxld_order2_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxld_order2_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxls_order0_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxls_order0_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxls_order0_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxls_order0_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxls_order0_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxls_order0_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxls_order1_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxls_order1_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxls_order1_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxls_order1_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxls_order1_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxls_order1_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxls_order2_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxls_order2_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxls_order2_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxls_order2_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qxls_order2_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qxls_order2_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyld_order0_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyld_order0_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyld_order0_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyld_order0_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyld_order0_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyld_order0_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyld_order1_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyld_order1_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyld_order1_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyld_order1_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyld_order1_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyld_order1_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyld_order2_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyld_order2_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyld_order2_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyld_order2_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyld_order2_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyld_order2_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyls_order0_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyls_order0_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyls_order0_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyls_order0_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyls_order0_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyls_order0_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyls_order1_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyls_order1_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyls_order1_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyls_order1_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyls_order1_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyls_order1_lab2.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyls_order2_lab0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyls_order2_lab0.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyls_order2_lab1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyls_order2_lab1.txt -------------------------------------------------------------------------------- /notebooks/besselaesnew_test_data/qyls_order2_lab2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/besselaesnew_test_data/qyls_order2_lab2.txt -------------------------------------------------------------------------------- /notebooks/large_diameter_experimental.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/large_diameter_experimental.ipynb -------------------------------------------------------------------------------- /notebooks/timml_besselaesnew_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/notebooks/timml_besselaesnew_test.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/pytest.ini -------------------------------------------------------------------------------- /tests/test_besselaes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/tests/test_besselaes.py -------------------------------------------------------------------------------- /tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/tests/test_import.py -------------------------------------------------------------------------------- /tests/test_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/tests/test_notebooks.py -------------------------------------------------------------------------------- /timml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/__init__.py -------------------------------------------------------------------------------- /timml/aquifer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/aquifer.py -------------------------------------------------------------------------------- /timml/aquifer_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/aquifer_parameters.py -------------------------------------------------------------------------------- /timml/bessel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/bessel.py -------------------------------------------------------------------------------- /timml/besselaesnumba/__init__.py: -------------------------------------------------------------------------------- 1 | # ruff: noqa: D104 2 | -------------------------------------------------------------------------------- /timml/besselaesnumba/besselaesnumba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/besselaesnumba/besselaesnumba.py -------------------------------------------------------------------------------- /timml/besselaesnumba/besselaesnumba_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/besselaesnumba/besselaesnumba_old.py -------------------------------------------------------------------------------- /timml/circareasink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/circareasink.py -------------------------------------------------------------------------------- /timml/circinhom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/circinhom.py -------------------------------------------------------------------------------- /timml/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/constant.py -------------------------------------------------------------------------------- /timml/controlpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/controlpoints.py -------------------------------------------------------------------------------- /timml/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/element.py -------------------------------------------------------------------------------- /timml/equation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/equation.py -------------------------------------------------------------------------------- /timml/inhomogeneity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/inhomogeneity.py -------------------------------------------------------------------------------- /timml/inhomogeneity1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/inhomogeneity1d.py -------------------------------------------------------------------------------- /timml/intlinesink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/intlinesink.py -------------------------------------------------------------------------------- /timml/linedoublet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/linedoublet.py -------------------------------------------------------------------------------- /timml/linedoublet1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/linedoublet1d.py -------------------------------------------------------------------------------- /timml/linesink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/linesink.py -------------------------------------------------------------------------------- /timml/linesink1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/linesink1d.py -------------------------------------------------------------------------------- /timml/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/model.py -------------------------------------------------------------------------------- /timml/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/plots.py -------------------------------------------------------------------------------- /timml/src/besselaesnew.cpython-37m-darwin.so.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/src/besselaesnew.cpython-37m-darwin.so.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /timml/src/besselaesnew.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/src/besselaesnew.f95 -------------------------------------------------------------------------------- /timml/stripareasink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/stripareasink.py -------------------------------------------------------------------------------- /timml/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/trace.py -------------------------------------------------------------------------------- /timml/uflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/uflow.py -------------------------------------------------------------------------------- /timml/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/version.py -------------------------------------------------------------------------------- /timml/well.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbakker7/timml/HEAD/timml/well.py --------------------------------------------------------------------------------