Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 2.68 KB

Readme.md

File metadata and controls

24 lines (19 loc) · 2.68 KB

Tutorials

This folder contains tutorials that show the basic workings of PorePy. To follow the tutorials, you can download the files (either by cloning the repository, or download the individual files), and run them as Jupyter Notebooks.

In addition to the tutorials contained herein, we are working on providing more advanced examples that further illustrate the usage of PorePy.

Overview

The PorePy tutorials are designed as stand-alone documentation of different components and capabilities. The appropriate order of reading may depend on the reader's background and ambitions. However, the following may serve as a general suggestion:

  1. introduction describes the overarching conceptual framework and its high-level implementation and lists some problems which may be solved using PorePy.
  2. grid_structure describes the structure of individual grids. It demonstrates construction of different types of grids. It also dives into the data structure, and shows how to access and manipulate grid quantities.
  3. meshing_of_fractures describes the construction of mixed-dimensional grids representing a fracture network and the surrounding porous medium.
  4. automatic_differentiation provides an introduction to automatic differentiation (AD) and how to solve a generic equation using the AD framework. The tutorial includes setup of parameters and discretizations.
  5. incompressible_flow_model describes how to use a model class Incompressible Flow. The tutorial exposes several extensions and how to solve a mixed-dimensional problem with a few lines of code.

More specific tutorials are also available:

  1. flux_discretizations shows different discretization methods available for diffusive fluxes, which are used for Darcy's law for fluid fluxes in a mass balance equation.
  2. stress_discretization describes the discretization method used for the vector version of 6. arising in the stress-strain relationship of Hooke's law.
  3. contact_mechanics_with_AD delves deeper into the model classes and their use of the ad framework.
  4. exporter documents how to export data from PorePy for external visualization (e.g. ParaView).
  5. equation_definition details the steps required to set up and solve a mixed-dimensional partial differential equation with emphasis on the PorePy AD framework.
  6. conventions defines some conventions used in PorePy related to signs, boundary conditions etc.