Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
11b3748f
Commit
11b3748f
authored
Feb 27, 2021
by
Timo Koch
Browse files
[porenetwork] Fix missing includes
parent
831d0946
Changes
11
Hide whitespace changes
Inline
Side-by-side
dumux/flux/porenetwork/advection.hh
View file @
11b3748f
...
...
@@ -25,6 +25,9 @@
#ifndef DUMUX_FLUX_PNM_ADVECTION_HH
#define DUMUX_FLUX_PNM_ADVECTION_HH
#include
<array>
#include
<dumux/common/parameters.hh>
namespace
Dumux
::
PoreNetwork
::
Detail
{
template
<
class
...
TransmissibilityLawTypes
>
...
...
dumux/io/grid/porenetwork/dgfwriter.hh
View file @
11b3748f
...
...
@@ -26,6 +26,7 @@
#include
<string>
#include
<iostream>
#include
<fstream>
namespace
Dumux
::
PoreNetwork
{
...
...
dumux/io/grid/porenetwork/griddata.hh
View file @
11b3748f
...
...
@@ -34,6 +34,8 @@
#include
<dune/common/exceptions.hh>
#include
<dune/grid/common/gridfactory.hh>
#include
<dune/grid/common/mcmgmapper.hh>
#include
<dune/grid/io/file/dgfparser/gridptr.hh>
#include
<dune/grid/io/file/dgfparser/parser.hh>
#include
<dune/grid/utility/persistentcontainer.hh>
#include
<dune/geometry/axisalignedcubegeometry.hh>
...
...
dumux/io/grid/porenetwork/parametersforgeneratedgrid.hh
View file @
11b3748f
...
...
@@ -32,6 +32,9 @@
#include
<vector>
#include
<dune/common/exceptions.hh>
#include
<dune/grid/common/exceptions.hh>
#include
<dune/geometry/axisalignedcubegeometry.hh>
#include
<dumux/common/parameters.hh>
#include
<dumux/common/random.hh>
#include
<dumux/geometry/intersectspointgeometry.hh>
...
...
dumux/material/spatialparams/porenetwork/porenetworkbase.hh
View file @
11b3748f
...
...
@@ -25,8 +25,13 @@
#ifndef DUMUX_PNM_SPATIAL_PARAMS_BASE_HH
#define DUMUX_PNM_SPATIAL_PARAMS_BASE_HH
#include
<type_traits>
#include
<memory>
#include
<dune/common/fvector.hh>
#include
<dumux/common/parameters.hh>
namespace
Dumux
::
PoreNetwork
{
#ifndef DOXYGEN
...
...
dumux/porenetwork/2p/invasionstate.hh
View file @
11b3748f
...
...
@@ -28,6 +28,7 @@
#include
<type_traits>
#include
<dumux/common/parameters.hh>
#include
<dumux/common/typetraits/isvalid.hh>
#include
<dumux/porenetwork/common/labels.hh>
namespace
Dumux
::
PoreNetwork
{
...
...
dumux/porenetwork/2p/newtonconsistencychecks.hh
View file @
11b3748f
...
...
@@ -27,6 +27,7 @@
#include
<vector>
#include
<iostream>
#include
<dune/common/exceptions.hh>
#include
<dumux/common/exceptions.hh>
#include
<dumux/discretization/localview.hh>
namespace
Dumux
::
PoreNetwork
{
...
...
dumux/porenetwork/2p/volumevariables.hh
View file @
11b3748f
...
...
@@ -25,6 +25,7 @@
#ifndef DUMUX_PNM_2P_VOLUME_VARIABLES_HH
#define DUMUX_PNM_2P_VOLUME_VARIABLES_HH
#include
<dumux/common/parameters.hh>
#include
<dumux/porousmediumflow/2p/volumevariables.hh>
namespace
Dumux
::
PoreNetwork
{
...
...
dumux/porenetwork/common/boundaryflux.hh
View file @
11b3748f
...
...
@@ -25,7 +25,14 @@
#define DUMUX_PNM_BOUNDARYFLUX_HH
#include
<algorithm>
#include
<numeric>
#include
<vector>
#include
<type_traits>
#include
<unordered_map>
#include
<string>
#include
<iostream>
#include
<dune/common/exceptions.hh>
#include
<dumux/common/typetraits/problem.hh>
#include
<dumux/discretization/box/elementboundarytypes.hh>
...
...
examples/porenetwork_upscaling/properties.hh
View file @
11b3748f
...
...
@@ -26,8 +26,7 @@
// [[content]]
// ### Includes
// [[details]] includes
#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-
// phase flow simulations in DuMu<sup>x</sup>. We will use this in the following to inherit the
...
...
examples/porenetwork_upscaling/upscalinghelper.hh
View file @
11b3748f
...
...
@@ -25,6 +25,11 @@
// This file contains the __upscaling helper struct__ which considers the volume flux leaving
// the pore network in flow direction in order to find the upscaled Darcy permeability.
// [[content]]
#include
<iostream>
#include
<ostream>
#include
<iomanip>
#include
<numeric>
#include
<functional>
namespace
Dumux
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment