├── .coveragerc ├── .github └── workflows │ ├── draft-pdf.yml │ ├── pylint.yml │ └── python-package.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── changelog.rst ├── classes.curves.rst ├── classes.geo.rst ├── classes.linsolvers.rst ├── classes.local_coordinate_system.rst ├── classes.media.rst ├── classes.mesh.rst ├── classes.nonlinsolvers.rst ├── classes.parameters.rst ├── classes.processes.rst ├── classes.processvars.rst ├── classes.python_script.rst ├── classes.rst ├── classes.timeloop.rst ├── conf.py ├── contents.rst ├── index.rst ├── make.bat └── ogs_base.rst ├── examples ├── HeatTransportBHE_example.ipynb ├── addEffectiveThermalConductivityPorosityMixing.py ├── bhe_mesh.vtu ├── bhe_mesh_Back_inflowsf.vtu ├── bhe_mesh_bottomsf.vtu ├── bhe_mesh_topsf.vtu ├── compose_prj_from_csv │ ├── OGStemplate_main.prj │ ├── OGStemplate_medium.xml │ ├── Readme.md │ ├── compose_prj.py │ └── parameterTable.csv ├── example.py ├── example_THM.py ├── example_replace.py ├── generateInvalidMediaForHT.py ├── optimize_coupling_scheme_parameter │ ├── StaggeredInjectionProduction1D.prj │ ├── mesh_bottom.vtu │ ├── mesh_domain.vtu │ ├── mesh_injection.vtu │ ├── mesh_left.vtu │ ├── mesh_production.vtu │ ├── mesh_right.vtu │ ├── mesh_top.vtu │ ├── search_optimal_coupling_parameter.py │ └── search_toolbox.py ├── quarter_002_2nd.vtu ├── simple_mechanics.prj ├── square_1x1.gml ├── square_1x1_quad_1e2.vtu ├── square_1x1_thm.gml └── thm_test.prj ├── ogs6py ├── __init__.py ├── _version.py ├── classes │ ├── __init__.py │ ├── build_tree.py │ ├── curves.py │ ├── display.py │ ├── geo.py │ ├── linsolvers.py │ ├── local_coordinate_system.py │ ├── media.py │ ├── mesh.py │ ├── nonlinsolvers.py │ ├── parameters.py │ ├── processes.py │ ├── processvars.py │ ├── properties.py │ ├── python_script.py │ └── timeloop.py ├── log_parser │ ├── common_ogs_analyses.py │ └── log_parser.py ├── ogs.py └── ogs_regexes │ ├── __init__.py │ └── ogs_regexes.py ├── output_19_1.png ├── setup.cfg ├── setup.py └── tests ├── context.py ├── includetest.prj ├── parser ├── parallel_1_info.txt ├── parallel_3_debug.txt ├── serial_convergence_long.txt ├── serial_convergence_short.txt ├── serial_critical.txt ├── serial_info.txt ├── serial_time_step_rejected.txt └── serial_warning_only.txt ├── solid_inc.xml ├── test_ogs6py.py └── tunnel_ogs6py.prj /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/draft-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/.github/workflows/draft-pdf.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../CHANGELOG.md 2 | 3 | -------------------------------------------------------------------------------- /docs/classes.curves.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.curves.rst -------------------------------------------------------------------------------- /docs/classes.geo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.geo.rst -------------------------------------------------------------------------------- /docs/classes.linsolvers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.linsolvers.rst -------------------------------------------------------------------------------- /docs/classes.local_coordinate_system.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.local_coordinate_system.rst -------------------------------------------------------------------------------- /docs/classes.media.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.media.rst -------------------------------------------------------------------------------- /docs/classes.mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.mesh.rst -------------------------------------------------------------------------------- /docs/classes.nonlinsolvers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.nonlinsolvers.rst -------------------------------------------------------------------------------- /docs/classes.parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.parameters.rst -------------------------------------------------------------------------------- /docs/classes.processes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.processes.rst -------------------------------------------------------------------------------- /docs/classes.processvars.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.processvars.rst -------------------------------------------------------------------------------- /docs/classes.python_script.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.python_script.rst -------------------------------------------------------------------------------- /docs/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.rst -------------------------------------------------------------------------------- /docs/classes.timeloop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/classes.timeloop.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../README.md 2 | 3 | -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/ogs_base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/docs/ogs_base.rst -------------------------------------------------------------------------------- /examples/HeatTransportBHE_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/HeatTransportBHE_example.ipynb -------------------------------------------------------------------------------- /examples/addEffectiveThermalConductivityPorosityMixing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/addEffectiveThermalConductivityPorosityMixing.py -------------------------------------------------------------------------------- /examples/bhe_mesh.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/bhe_mesh.vtu -------------------------------------------------------------------------------- /examples/bhe_mesh_Back_inflowsf.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/bhe_mesh_Back_inflowsf.vtu -------------------------------------------------------------------------------- /examples/bhe_mesh_bottomsf.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/bhe_mesh_bottomsf.vtu -------------------------------------------------------------------------------- /examples/bhe_mesh_topsf.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/bhe_mesh_topsf.vtu -------------------------------------------------------------------------------- /examples/compose_prj_from_csv/OGStemplate_main.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/compose_prj_from_csv/OGStemplate_main.prj -------------------------------------------------------------------------------- /examples/compose_prj_from_csv/OGStemplate_medium.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/compose_prj_from_csv/OGStemplate_medium.xml -------------------------------------------------------------------------------- /examples/compose_prj_from_csv/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/compose_prj_from_csv/Readme.md -------------------------------------------------------------------------------- /examples/compose_prj_from_csv/compose_prj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/compose_prj_from_csv/compose_prj.py -------------------------------------------------------------------------------- /examples/compose_prj_from_csv/parameterTable.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/compose_prj_from_csv/parameterTable.csv -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/example.py -------------------------------------------------------------------------------- /examples/example_THM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/example_THM.py -------------------------------------------------------------------------------- /examples/example_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/example_replace.py -------------------------------------------------------------------------------- /examples/generateInvalidMediaForHT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/generateInvalidMediaForHT.py -------------------------------------------------------------------------------- /examples/optimize_coupling_scheme_parameter/StaggeredInjectionProduction1D.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/optimize_coupling_scheme_parameter/StaggeredInjectionProduction1D.prj -------------------------------------------------------------------------------- /examples/optimize_coupling_scheme_parameter/mesh_bottom.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/optimize_coupling_scheme_parameter/mesh_bottom.vtu -------------------------------------------------------------------------------- /examples/optimize_coupling_scheme_parameter/mesh_domain.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/optimize_coupling_scheme_parameter/mesh_domain.vtu -------------------------------------------------------------------------------- /examples/optimize_coupling_scheme_parameter/mesh_injection.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/optimize_coupling_scheme_parameter/mesh_injection.vtu -------------------------------------------------------------------------------- /examples/optimize_coupling_scheme_parameter/mesh_left.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/optimize_coupling_scheme_parameter/mesh_left.vtu -------------------------------------------------------------------------------- /examples/optimize_coupling_scheme_parameter/mesh_production.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/optimize_coupling_scheme_parameter/mesh_production.vtu -------------------------------------------------------------------------------- /examples/optimize_coupling_scheme_parameter/mesh_right.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/optimize_coupling_scheme_parameter/mesh_right.vtu -------------------------------------------------------------------------------- /examples/optimize_coupling_scheme_parameter/mesh_top.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/optimize_coupling_scheme_parameter/mesh_top.vtu -------------------------------------------------------------------------------- /examples/optimize_coupling_scheme_parameter/search_optimal_coupling_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/optimize_coupling_scheme_parameter/search_optimal_coupling_parameter.py -------------------------------------------------------------------------------- /examples/optimize_coupling_scheme_parameter/search_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/optimize_coupling_scheme_parameter/search_toolbox.py -------------------------------------------------------------------------------- /examples/quarter_002_2nd.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/quarter_002_2nd.vtu -------------------------------------------------------------------------------- /examples/simple_mechanics.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/simple_mechanics.prj -------------------------------------------------------------------------------- /examples/square_1x1.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/square_1x1.gml -------------------------------------------------------------------------------- /examples/square_1x1_quad_1e2.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/square_1x1_quad_1e2.vtu -------------------------------------------------------------------------------- /examples/square_1x1_thm.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/square_1x1_thm.gml -------------------------------------------------------------------------------- /examples/thm_test.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/examples/thm_test.prj -------------------------------------------------------------------------------- /ogs6py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/__init__.py -------------------------------------------------------------------------------- /ogs6py/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/_version.py -------------------------------------------------------------------------------- /ogs6py/classes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/__init__.py -------------------------------------------------------------------------------- /ogs6py/classes/build_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/build_tree.py -------------------------------------------------------------------------------- /ogs6py/classes/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/curves.py -------------------------------------------------------------------------------- /ogs6py/classes/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/display.py -------------------------------------------------------------------------------- /ogs6py/classes/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/geo.py -------------------------------------------------------------------------------- /ogs6py/classes/linsolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/linsolvers.py -------------------------------------------------------------------------------- /ogs6py/classes/local_coordinate_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/local_coordinate_system.py -------------------------------------------------------------------------------- /ogs6py/classes/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/media.py -------------------------------------------------------------------------------- /ogs6py/classes/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/mesh.py -------------------------------------------------------------------------------- /ogs6py/classes/nonlinsolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/nonlinsolvers.py -------------------------------------------------------------------------------- /ogs6py/classes/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/parameters.py -------------------------------------------------------------------------------- /ogs6py/classes/processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/processes.py -------------------------------------------------------------------------------- /ogs6py/classes/processvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/processvars.py -------------------------------------------------------------------------------- /ogs6py/classes/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/properties.py -------------------------------------------------------------------------------- /ogs6py/classes/python_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/python_script.py -------------------------------------------------------------------------------- /ogs6py/classes/timeloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/classes/timeloop.py -------------------------------------------------------------------------------- /ogs6py/log_parser/common_ogs_analyses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/log_parser/common_ogs_analyses.py -------------------------------------------------------------------------------- /ogs6py/log_parser/log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/log_parser/log_parser.py -------------------------------------------------------------------------------- /ogs6py/ogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/ogs.py -------------------------------------------------------------------------------- /ogs6py/ogs_regexes/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ogs_regexes -------------------------------------------------------------------------------- /ogs6py/ogs_regexes/ogs_regexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/ogs6py/ogs_regexes/ogs_regexes.py -------------------------------------------------------------------------------- /output_19_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/output_19_1.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/setup.py -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/includetest.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/includetest.prj -------------------------------------------------------------------------------- /tests/parser/parallel_1_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/parser/parallel_1_info.txt -------------------------------------------------------------------------------- /tests/parser/parallel_3_debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/parser/parallel_3_debug.txt -------------------------------------------------------------------------------- /tests/parser/serial_convergence_long.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/parser/serial_convergence_long.txt -------------------------------------------------------------------------------- /tests/parser/serial_convergence_short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/parser/serial_convergence_short.txt -------------------------------------------------------------------------------- /tests/parser/serial_critical.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/parser/serial_critical.txt -------------------------------------------------------------------------------- /tests/parser/serial_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/parser/serial_info.txt -------------------------------------------------------------------------------- /tests/parser/serial_time_step_rejected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/parser/serial_time_step_rejected.txt -------------------------------------------------------------------------------- /tests/parser/serial_warning_only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/parser/serial_warning_only.txt -------------------------------------------------------------------------------- /tests/solid_inc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/solid_inc.xml -------------------------------------------------------------------------------- /tests/test_ogs6py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/test_ogs6py.py -------------------------------------------------------------------------------- /tests/tunnel_ogs6py.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joergbuchwald/ogs6py/HEAD/tests/tunnel_ogs6py.prj --------------------------------------------------------------------------------