Skip to content
GitLab
Menu
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-course
Commits
56f5085d
Commit
56f5085d
authored
Apr 13, 2020
by
Ned Coltman
Browse files
[ex-coupling-ffpm] fix headercheck
parent
7127abdf
Changes
15
Hide whitespace changes
Inline
Side-by-side
exercises/exercise-coupling-ff-pm/interface/properties.hh
View file @
56f5085d
...
...
@@ -25,6 +25,8 @@
// Both Domains
#include <dune/grid/yaspgrid.hh>
#include <dumux/multidomain/staggeredtraits.hh>
#include <dumux/multidomain/boundary/stokesdarcy/couplingmanager.hh>
// TODO: dumux-course-task 1.C
//****** uncomment for the last exercise *****//
...
...
exercises/exercise-coupling-ff-pm/models/freeflowsubproblem.hh
View file @
56f5085d
...
...
@@ -24,11 +24,12 @@
#ifndef DUMUX_STOKES1P2C_SUBPROBLEM_HH
#define DUMUX_STOKES1P2C_SUBPROBLEM_HH
#include <dumux/freeflow/navierstokes/problem.hh>
#include <dumux/common/properties.hh>
#include <dumux/common/timeloop.hh>
namespace
Dumux
{
#include <dumux/freeflow/navierstokes/problem.hh>
namespace
Dumux
{
/*!
* \ingroup NavierStokesTests
* \brief Test problem for the one-phase compositional (Navier-) Stokes problem.
...
...
exercises/exercise-coupling-ff-pm/models/porousmediumsubproblem.hh
View file @
56f5085d
...
...
@@ -24,8 +24,11 @@
#ifndef DUMUX_DARCY_SUBPROBLEM_HH
#define DUMUX_DARCY_SUBPROBLEM_HH
#include <dumux/porousmediumflow/problem.hh>
#include <dumux/common/properties.hh>
#include <dumux/common/timeloop.hh>
#include <dumux/io/gnuplotinterface.hh>
#include <dumux/porousmediumflow/problem.hh>
namespace
Dumux
{
...
...
exercises/exercise-coupling-ff-pm/models/properties.hh
View file @
56f5085d
...
...
@@ -26,6 +26,8 @@
// Both Domains
#include <dune/grid/yaspgrid.hh>
#include <dumux/multidomain/staggeredtraits.hh>
#include <dumux/multidomain/boundary/stokesdarcy/couplingmanager.hh>
#include <dumux/io/gnuplotinterface.hh>
#include <dumux/material/fluidsystems/1padapter.hh>
...
...
exercises/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh
View file @
56f5085d
...
...
@@ -23,13 +23,15 @@
#ifndef DUMUX_FREEFLOW1P2C_SUBPROBLEM_HH
#define DUMUX_FREEFLOW1P2C_SUBPROBLEM_HH
#include <dumux/common/properties.hh>
#include <dumux/common/timeloop.hh>
#include <dumux/multidomain/boundary/stokesdarcy/couplingdata.hh>
// TODO: dumux-course-task 3.A
// Include headers for turbulence problem (rans) here.
#include <dumux/freeflow/navierstokes/problem.hh>
#include <dumux/common/properties.hh>
namespace
Dumux
{
/*!
* \brief The free-flow sub problem
*/
...
...
exercises/exercise-coupling-ff-pm/turbulence/porousmediumsubproblem.hh
View file @
56f5085d
...
...
@@ -26,6 +26,8 @@
#include <dumux/porousmediumflow/problem.hh>
#include <dumux/common/properties.hh>
#include <dumux/common/timeloop.hh>
#include <dumux/multidomain/boundary/stokesdarcy/couplingdata.hh>
namespace
Dumux
{
...
...
exercises/exercise-coupling-ff-pm/turbulence/properties.hh
View file @
56f5085d
...
...
@@ -26,6 +26,8 @@
// Both domain
#include <dune/grid/yaspgrid.hh>
#include <dumux/multidomain/staggeredtraits.hh>
#include <dumux/multidomain/boundary/stokesdarcy/couplingmanager.hh>
#include <dumux/material/fluidsystems/h2oair.hh>
#include <dumux/material/fluidsystems/1padapter.hh>
...
...
exercises/solution/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh
View file @
56f5085d
...
...
@@ -23,11 +23,12 @@
#ifndef DUMUX_STOKES_SUBPROBLEM_HH
#define DUMUX_STOKES_SUBPROBLEM_HH
#include <dumux/freeflow/navierstokes/problem.hh>
#include <dumux/common/properties.hh>
#include <dumux/common/timeloop.hh>
namespace
Dumux
{
#include <dumux/freeflow/navierstokes/problem.hh>
namespace
Dumux
{
/*!
* \brief The free flow sub problem
*/
...
...
exercises/solution/exercise-coupling-ff-pm/interface/properties.hh
View file @
56f5085d
...
...
@@ -26,6 +26,8 @@
// Both domains
#include <dune/grid/yaspgrid.hh>
#include <dumux/multidomain/staggeredtraits.hh>
#include <dumux/multidomain/boundary/stokesdarcy/couplingmanager.hh>
#if EXNUMBER >= 3
#include <dumux/io/grid/gridmanager_sub.hh>
...
...
exercises/solution/exercise-coupling-ff-pm/models/freeflowsubproblem.hh
View file @
56f5085d
...
...
@@ -24,11 +24,12 @@
#ifndef DUMUX_STOKES1P2C_SUBPROBLEM_HH
#define DUMUX_STOKES1P2C_SUBPROBLEM_HH
#include <dumux/freeflow/navierstokes/problem.hh>
#include <dumux/common/properties.hh>
#include <dumux/common/timeloop.hh>
namespace
Dumux
{
#include <dumux/freeflow/navierstokes/problem.hh>
namespace
Dumux
{
/*!
* \ingroup NavierStokesTests
* \brief Test problem for the one-phase compositional (Navier-) Stokes problem.
...
...
exercises/solution/exercise-coupling-ff-pm/models/porousmediumsubproblem.hh
View file @
56f5085d
...
...
@@ -24,11 +24,13 @@
#ifndef DUMUX_DARCY_SUBPROBLEM_HH
#define DUMUX_DARCY_SUBPROBLEM_HH
#include <dumux/porousmediumflow/problem.hh>
#include <dumux/common/properties.hh>
#include <dumux/common/timeloop.hh>
namespace
Dumux
{
#include <dumux/io/gnuplotinterface.hh>
#include <dumux/porousmediumflow/problem.hh>
namespace
Dumux
{
/*!
* \brief The porous medium flow sub problem
*/
...
...
exercises/solution/exercise-coupling-ff-pm/models/properties.hh
View file @
56f5085d
...
...
@@ -30,6 +30,8 @@
#include <dumux/io/gnuplotinterface.hh>
#include <dumux/material/fluidsystems/1padapter.hh>
#include <dumux/material/fluidsystems/h2oair.hh>
#include <dumux/multidomain/staggeredtraits.hh>
#include <dumux/multidomain/boundary/stokesdarcy/couplingmanager.hh>
// Porous medium flow domain
#include <dumux/discretization/cctpfa.hh>
...
...
exercises/solution/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh
View file @
56f5085d
...
...
@@ -29,7 +29,9 @@
#include <dumux/freeflow/navierstokes/problem.hh>
#endif
#include <dumux/common/timeloop.hh>
#include <dumux/common/properties.hh>
#include <dumux/multidomain/boundary/stokesdarcy/couplingdata.hh>
namespace
Dumux
{
...
...
exercises/solution/exercise-coupling-ff-pm/turbulence/porousmediumsubproblem.hh
View file @
56f5085d
...
...
@@ -24,11 +24,13 @@
#ifndef DUMUX_DARCY2P2C_SUBPROBLEM_HH
#define DUMUX_DARCY2P2C_SUBPROBLEM_HH
#include <dumux/porousmediumflow/problem.hh>
#include <dumux/common/properties.hh>
#include <dumux/common/timeloop.hh>
namespace
Dumux
{
#include <dumux/porousmediumflow/problem.hh>
#include <dumux/multidomain/boundary/stokesdarcy/couplingdata.hh>
namespace
Dumux
{
/*!
* \brief The porous medium sub problem
*/
...
...
exercises/solution/exercise-coupling-ff-pm/turbulence/properties.hh
View file @
56f5085d
...
...
@@ -29,6 +29,8 @@
#include <dumux/material/fluidsystems/1padapter.hh>
#include <dumux/material/fluidsystems/h2oair.hh>
#include <dumux/multidomain/staggeredtraits.hh>
#include <dumux/multidomain/boundary/stokesdarcy/couplingmanager.hh>
// Porous medium flow domain
#include <dumux/porousmediumflow/2p2c/model.hh>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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