├── .gitignore ├── .travis.yml ├── LICENSE ├── PRESTO.png ├── README.md ├── docker └── presto │ └── Dockerfile ├── examples └── preprocess │ ├── HOWTO │ ├── multiscale │ ├── structured.cfg │ └── structured2D.cfg │ └── upscale │ └── structured.cfg ├── presto ├── Preprocessors │ ├── Common │ │ └── __init__.py │ ├── Multiscale │ │ ├── Structured │ │ │ ├── Preprocessor.py │ │ │ ├── StructuredMultiscaleMesh.py │ │ │ └── __init__.py │ │ ├── Structured2D │ │ │ ├── Preprocessor.py │ │ │ ├── StructuredMultiscaleMesh.py │ │ │ └── __init__.py │ │ └── __init__.py │ ├── Upscale │ │ ├── Structured │ │ │ ├── Preprocessor.py │ │ │ ├── StructuredUpscalingMethods.py │ │ │ └── __init__.py │ │ ├── __init__.py │ │ └── main_coarse.py │ └── __init__.py ├── __init__.py └── tpfa_solver │ ├── makefile │ ├── makefile.config │ ├── makefile.config.in │ ├── parallel_tpfa_solver.cpp │ ├── simple_mesh_generator.py │ ├── tpfa_partitioning.cpp │ └── tpfa_run.sh └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/LICENSE -------------------------------------------------------------------------------- /PRESTO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/PRESTO.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/README.md -------------------------------------------------------------------------------- /docker/presto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/docker/presto/Dockerfile -------------------------------------------------------------------------------- /examples/preprocess/HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/examples/preprocess/HOWTO -------------------------------------------------------------------------------- /examples/preprocess/multiscale/structured.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/examples/preprocess/multiscale/structured.cfg -------------------------------------------------------------------------------- /examples/preprocess/multiscale/structured2D.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/examples/preprocess/multiscale/structured2D.cfg -------------------------------------------------------------------------------- /examples/preprocess/upscale/structured.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/examples/preprocess/upscale/structured.cfg -------------------------------------------------------------------------------- /presto/Preprocessors/Common/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Common functionalities for PRESTO preprocessors. 3 | """ 4 | -------------------------------------------------------------------------------- /presto/Preprocessors/Multiscale/Structured/Preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Multiscale/Structured/Preprocessor.py -------------------------------------------------------------------------------- /presto/Preprocessors/Multiscale/Structured/StructuredMultiscaleMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Multiscale/Structured/StructuredMultiscaleMesh.py -------------------------------------------------------------------------------- /presto/Preprocessors/Multiscale/Structured/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Multiscale/Structured/__init__.py -------------------------------------------------------------------------------- /presto/Preprocessors/Multiscale/Structured2D/Preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Multiscale/Structured2D/Preprocessor.py -------------------------------------------------------------------------------- /presto/Preprocessors/Multiscale/Structured2D/StructuredMultiscaleMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Multiscale/Structured2D/StructuredMultiscaleMesh.py -------------------------------------------------------------------------------- /presto/Preprocessors/Multiscale/Structured2D/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Multiscale/Structured2D/__init__.py -------------------------------------------------------------------------------- /presto/Preprocessors/Multiscale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Multiscale/__init__.py -------------------------------------------------------------------------------- /presto/Preprocessors/Upscale/Structured/Preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Upscale/Structured/Preprocessor.py -------------------------------------------------------------------------------- /presto/Preprocessors/Upscale/Structured/StructuredUpscalingMethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Upscale/Structured/StructuredUpscalingMethods.py -------------------------------------------------------------------------------- /presto/Preprocessors/Upscale/Structured/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Upscale/Structured/__init__.py -------------------------------------------------------------------------------- /presto/Preprocessors/Upscale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Upscale/__init__.py -------------------------------------------------------------------------------- /presto/Preprocessors/Upscale/main_coarse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/Preprocessors/Upscale/main_coarse.py -------------------------------------------------------------------------------- /presto/Preprocessors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /presto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /presto/tpfa_solver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/tpfa_solver/makefile -------------------------------------------------------------------------------- /presto/tpfa_solver/makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/tpfa_solver/makefile.config -------------------------------------------------------------------------------- /presto/tpfa_solver/makefile.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/tpfa_solver/makefile.config.in -------------------------------------------------------------------------------- /presto/tpfa_solver/parallel_tpfa_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/tpfa_solver/parallel_tpfa_solver.cpp -------------------------------------------------------------------------------- /presto/tpfa_solver/simple_mesh_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/tpfa_solver/simple_mesh_generator.py -------------------------------------------------------------------------------- /presto/tpfa_solver/tpfa_partitioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/tpfa_solver/tpfa_partitioning.cpp -------------------------------------------------------------------------------- /presto/tpfa_solver/tpfa_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/presto/tpfa_solver/tpfa_run.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padmec-reservoir/PRESTO/HEAD/setup.py --------------------------------------------------------------------------------