Skip to content
Snippets Groups Projects
Commit 6de945c1 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

Merge branch 'fix/richardsnc-reference' into 'master'

Fix/richardsnc reference

See merge request !858
parents e4b8b21e 216ca551
No related branches found
No related tags found
1 merge request!858Fix/richardsnc reference
...@@ -101,7 +101,7 @@ template<int nComp> ...@@ -101,7 +101,7 @@ template<int nComp>
struct RichardsNCModelTraits struct RichardsNCModelTraits
{ {
static constexpr int numEq() { return nComp; } static constexpr int numEq() { return nComp; }
static constexpr int numPhases() { return 2; } static constexpr int numPhases() { return 1; }
static constexpr int numComponents() { return nComp; } static constexpr int numComponents() { return nComp; }
static constexpr bool enableAdvection() { return true; } static constexpr bool enableAdvection() { return true; }
......
...@@ -114,6 +114,7 @@ int main(int argc, char** argv) try ...@@ -114,6 +114,7 @@ int main(int argc, char** argv) try
// the problem (initial and boundary conditions) // the problem (initial and boundary conditions)
using Problem = typename GET_PROP_TYPE(TypeTag, Problem); using Problem = typename GET_PROP_TYPE(TypeTag, Problem);
auto problem = std::make_shared<Problem>(fvGridGeometry); auto problem = std::make_shared<Problem>(fvGridGeometry);
problem->computePointSourceMap(); // enable point sources
// the solution vector // the solution vector
using SolutionVector = typename GET_PROP_TYPE(TypeTag, SolutionVector); using SolutionVector = typename GET_PROP_TYPE(TypeTag, SolutionVector);
......
This diff is collapsed.
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