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
20150426
Commit
20150426
authored
Aug 02, 2021
by
Hanchuan Wu
Browse files
[make_headercheck] Add missing guards when include headers
parent
ea81cb8c
Pipeline
#6874
waiting for manual action with stages
Changes
21
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
examples/2pinfiltration/properties.hh
View file @
20150426
...
...
@@ -26,7 +26,9 @@
// ### Includes
// The header includes will be mentioned in the text below.
// [[details]] header includes
#if HAVE_DUNE_ALUGRID
#include
<dune/alugrid/grid.hh>
#endif
#include
<dumux/common/properties.hh>
#include
<dumux/discretization/cctpfa.hh>
...
...
examples/porenetwork_upscaling/properties.hh
View file @
20150426
...
...
@@ -26,7 +26,9 @@
// [[content]]
// ### Includes
// [[details]] includes
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
// for `Dune::FoamGrid`
#endif
// 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
...
...
test/multidomain/boundary/darcydarcy/1p_2p/properties.hh
View file @
20150426
...
...
@@ -27,7 +27,9 @@
#include
<config.h>
#include
<dune/grid/yaspgrid.hh>
#if HAVE_DUNE_SUBGRID
#include
<dune/subgrid/subgrid.hh>
#endif
#include
<dumux/porousmediumflow/1p/model.hh>
#include
<dumux/porousmediumflow/2p/model.hh>
...
...
test/multidomain/embedded/1d3d/1p2c_richards2c/properties.hh
View file @
20150426
...
...
@@ -28,7 +28,9 @@
#include
<dune/grid/yaspgrid.hh>
#include
<dune/grid/uggrid.hh>
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/common/properties.hh>
#include
<dumux/discretization/cctpfa.hh>
...
...
test/multidomain/embedded/1d3d/1p_1p/properties.hh
View file @
20150426
...
...
@@ -36,7 +36,9 @@
#endif
#include
<dune/grid/yaspgrid.hh>
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/common/properties.hh>
#include
<dumux/discretization/box.hh>
...
...
test/multidomain/embedded/1d3d/1p_richards/properties.hh
View file @
20150426
...
...
@@ -27,7 +27,9 @@
#define SOILTYPETAG SoilCC
#endif
#include
<dune/grid/yaspgrid.hh>
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/common/properties.hh>
#include
<dumux/discretization/cctpfa.hh>
...
...
test/multidomain/embedded/2d3d/1p_1p/properties.hh
View file @
20150426
...
...
@@ -24,7 +24,10 @@
#ifndef DUMUX_FRACTURE_PROPERTIES_HH
#define DUMUX_FRACTURE_PROPERTIES_HH
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dune/grid/yaspgrid.hh>
#include
<dumux/discretization/cctpfa.hh>
...
...
test/multidomain/facet/1p_1p/analytical/properties.hh
View file @
20150426
...
...
@@ -25,8 +25,12 @@
#ifndef DUMUX_TEST_TPFAFACETCOUPLING_PROPERTIES_HH
#define DUMUX_TEST_TPFAFACETCOUPLING_PROPERTIES_HH
#if HAVE_DUNE_ALUGRID
#include
<dune/alugrid/grid.hh>
#endif
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/material/components/constant.hh>
#include
<dumux/material/fluidsystems/1pliquid.hh>
...
...
test/multidomain/facet/1p_1p/gravity/properties.hh
View file @
20150426
...
...
@@ -24,8 +24,12 @@
#ifndef DUMUX_TEST_TPFAFACETCOUPLING_ONEP_BULK_PROPERTIES_HH
#define DUMUX_TEST_TPFAFACETCOUPLING_ONEP_BULK_PROPERTIES_HH
#if HAVE_DUNE_ALUGRID
#include
<dune/alugrid/grid.hh>
#endif
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/material/components/constant.hh>
#include
<dumux/material/fluidsystems/1pliquid.hh>
...
...
test/multidomain/facet/1p_1p/linearprofile/properties.hh
View file @
20150426
...
...
@@ -24,8 +24,13 @@
#ifndef DUMUX_TEST_TPFAFACETCOUPLING_PROPERTIES_HH
#define DUMUX_TEST_TPFAFACETCOUPLING_PROPERTIES_HH
#if HAVE_DUNE_ALUGRID
#include
<dune/alugrid/grid.hh>
#endif
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/material/components/constant.hh>
#include
<dumux/material/fluidsystems/1pliquid.hh>
...
...
test/multidomain/facet/1p_1p/threedomain/properties.hh
View file @
20150426
...
...
@@ -25,8 +25,12 @@
#ifndef DUMUX_TEST_FACETCOUPLING_THREEDOMAIN_PROPERTIES_HH
#define DUMUX_TEST_FACETCOUPLING_THREEDOMAIN_PROPERTIES_HH
#if HAVE_DUNE_ALUGRID
#include
<dune/alugrid/grid.hh>
#endif
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/material/components/constant.hh>
#include
<dumux/material/fluidsystems/1pliquid.hh>
...
...
test/multidomain/facet/1pnc_1pnc/properties.hh
View file @
20150426
...
...
@@ -34,8 +34,12 @@
#define DIMWORLD 2
#endif
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#if HAVE_DUNE_ALUGRID
#include
<dune/alugrid/grid.hh>
#endif
#include
<dumux/material/fluidsystems/h2on2.hh>
#include
<dumux/material/fluidsystems/1padapter.hh>
...
...
test/multidomain/facet/tracer_tracer/properties.hh
View file @
20150426
...
...
@@ -25,8 +25,13 @@
#ifndef DUMUX_TEST_TPFAFACETCOUPLING_PROPERTIES_HH
#define DUMUX_TEST_TPFAFACETCOUPLING_PROPERTIES_HH
#if HAVE_DUNE_ALUGRID
#include
<dune/alugrid/grid.hh>
#endif
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/material/components/simpleh2o.hh>
#include
<dumux/material/fluidsystems/1pliquid.hh>
...
...
test/porenetwork/1p/noncreepingflow/properties.hh
View file @
20150426
...
...
@@ -24,7 +24,9 @@
#ifndef DUMUX_PNM1P_NONCREEPING_PROPERTIES_HH
#define DUMUX_PNM1P_NONCREEPING_PROPERTIES_HH
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/common/properties.hh>
#include
<dumux/porenetwork/1p/model.hh>
...
...
test/porenetwork/1p/properties.hh
View file @
20150426
...
...
@@ -24,7 +24,9 @@
#ifndef DUMUX_PNM1P_PROPERTIES_HH
#define DUMUX_PNM1P_PROPERTIES_HH
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/common/properties.hh>
...
...
test/porenetwork/1pnc/properties.hh
View file @
20150426
...
...
@@ -24,7 +24,9 @@
#ifndef DUMUX_PNM1P2C_PROPERTIES_HH
#define DUMUX_PNM1P2C_PROPERTIES_HH
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/porenetwork/1pnc/model.hh>
...
...
test/porenetwork/2p/properties.hh
View file @
20150426
...
...
@@ -24,7 +24,9 @@
#ifndef DUMUX_PNM2P_PROPERTIES_HH
#define DUMUX_PNM2P_PROPERTIES_HH
#if HAVE_DUNE_FOAMGRID
#include
<dune/foamgrid/foamgrid.hh>
#endif
#include
<dumux/porousmediumflow/problem.hh>
#include
<dumux/porenetwork/2p/model.hh>
...
...
test/porousmediumflow/2p/boxdfm/properties.hh
View file @
20150426
...
...
@@ -45,8 +45,7 @@
#include
"spatialparams.hh"
#ifndef GRIDTYPE
#include
<dune/alugrid/grid.hh>
#define GRIDTYPE Dune::ALUGrid<2, 2, Dune::simplex , Dune::conforming>;
#define GRIDTYPE Dune::YaspGrid<2>;
#endif
namespace
Dumux
::
Properties
{
...
...
test/porousmediumflow/2p/rotationsymmetry/properties.hh
View file @
20150426
...
...
@@ -20,7 +20,9 @@
#ifndef DUMUX_TEST_TWOP_ROTATIONALSYMMETRY_PROPERTIES_HH
#define DUMUX_TEST_TWOP_ROTATIONALSYMMETRY_PROPERTIES_HH
#if HAVE_DUNE_ALUGRID
#include
<dune/alugrid/grid.hh>
#endif
#include
<dumux/common/properties.hh>
...
...
test/porousmediumflow/co2/properties.hh
View file @
20150426
...
...
@@ -25,7 +25,9 @@
#ifndef DUMUX_HETEROGENEOUS_PROPERTIES_HH
#define DUMUX_HETEROGENEOUS_PROPERTIES_HH
#if HAVE_DUNE_ALUGRID
#include
<dune/alugrid/grid.hh>
#endif
#include
<dumux/discretization/cctpfa.hh>
#include
<dumux/discretization/ccmpfa.hh>
...
...
Prev
1
2
Next
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