Skip to content
Snippets Groups Projects
Commit e0d0a5cd authored by Timo Koch's avatar Timo Koch
Browse files

[examples][pnm] Run generate_example_docs.py

parent e0018206
No related branches found
No related tags found
1 merge request!2514[examples][pnm] Run generate_example_docs.py
...@@ -44,8 +44,8 @@ Pore-Network-Model to evaluate the upscaled Darcy permeability of a given networ ...@@ -44,8 +44,8 @@ Pore-Network-Model to evaluate the upscaled Darcy permeability of a given networ
#include <dumux/io/grid/gridmanager_yasp.hh> #include <dumux/io/grid/gridmanager_yasp.hh>
#include <dumux/io/grid/porenetwork/gridmanager.hh> // for pore-network grid #include <dumux/io/grid/porenetwork/gridmanager.hh> // for pore-network grid
#include <dumux/porenetworkflow/common/pnmvtkoutputmodule.hh> #include <dumux/porenetwork/common/pnmvtkoutputmodule.hh>
#include <dumux/porenetworkflow/common/boundaryflux.hh> // for getting the total mass flux leaving the network #include <dumux/porenetwork/common/boundaryflux.hh> // for getting the total mass flux leaving the network
#include "upscalinghelper.hh" #include "upscalinghelper.hh"
#include "properties.hh" #include "properties.hh"
...@@ -245,3 +245,4 @@ catch (const Dune::Exception &e) ...@@ -245,3 +245,4 @@ catch (const Dune::Exception &e)
| [:arrow_left: Back to the main documentation](../README.md) | [:arrow_left: Go back to part 1](problem.md) | [:arrow_right: Continue with part 3](upscalinghelper.md) | | [:arrow_left: Back to the main documentation](../README.md) | [:arrow_left: Go back to part 1](problem.md) | [:arrow_right: Continue with part 3](upscalinghelper.md) |
|---|---|---:| |---|---|---:|
...@@ -23,7 +23,7 @@ which we specialize a number of compile-time `properties`. ...@@ -23,7 +23,7 @@ which we specialize a number of compile-time `properties`.
```cpp ```cpp
#include <dune/grid/yaspgrid.hh> // for `Dune::YaspGrid` #include <dune/foamgrid/foamgrid.hh> // for `Dune::FoamGrid`
``` ```
The `OneP` type tag specializes most of the `properties` required for single- The `OneP` type tag specializes most of the `properties` required for single-
...@@ -32,7 +32,7 @@ respective properties, and subsequently specialize those properties for our ...@@ -32,7 +32,7 @@ respective properties, and subsequently specialize those properties for our
type tag, which we want to modify or for which no meaningful default can be set. type tag, which we want to modify or for which no meaningful default can be set.
```cpp ```cpp
#include <dumux/porenetworkflow/1p/model.hh>// for `TTag::PNMOneP` #include <dumux/porenetwork/1p/model.hh>// for `TTag::PNMOneP`
``` ```
The local residual for incompressible flow is included. The local residual for incompressible flow is included.
......
...@@ -37,6 +37,11 @@ the pore network in flow direction in order to find the upscaled Darcy permeabil ...@@ -37,6 +37,11 @@ the pore network in flow direction in order to find the upscaled Darcy permeabil
```cpp ```cpp
#include <iostream>
#include <ostream>
#include <iomanip>
#include <numeric>
#include <functional>
namespace Dumux { namespace Dumux {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment