diff --git a/examples/tutorialproblem_coupled.hh b/examples/tutorialproblem_coupled.hh index bf94e53b5..c7651b62a 100644 --- a/examples/tutorialproblem_coupled.hh +++ b/examples/tutorialproblem_coupled.hh @@ -57,8 +57,8 @@ SET_PROP(TutorialProblemCoupled, Grid) /*@\label{tutorial-coupled:set-grid}@*/ Dune::FieldVector cellRes; Dune::FieldVector lowerLeft(0.0); Dune::FieldVector upperRight; - cellRes[0] = 30; - cellRes[1] = 10; + cellRes[0] = 100; + cellRes[1] = 1; upperRight[0] = 300; upperRight[1] = 60; return new Dune::SGrid<2,2>(cellRes, @@ -192,10 +192,10 @@ public: fvElemGeom.boundaryFace[boundaryFaceIdx].ipGlobal; Scalar right = this->bboxMax()[0]; // extraction of oil on the right boundary for approx. 1.e6 seconds - if (pos[0] > right - eps_ && this->timeManager().time() <= 1.e6) { - // oil outflux of 0.3 g/(m * s) on the right boundary. + if (pos[0] > right - eps_) { + // oil outflux of 30 g/(m * s) on the right boundary. values[Indices::contiWEqIdx] = 0; - values[Indices::contiNEqIdx] = 3e-4; + values[Indices::contiNEqIdx] = 3e-2; } else { // no-flow on the remaining Neumann-boundaries. values[Indices::contiWEqIdx] = 0; diff --git a/examples/tutorialproblem_decoupled.hh b/examples/tutorialproblem_decoupled.hh index a91370826..2398b274b 100644 --- a/examples/tutorialproblem_decoupled.hh +++ b/examples/tutorialproblem_decoupled.hh @@ -184,7 +184,7 @@ public: bool shouldWriteOutput() const /*@\label{tutorial-decoupled:output}@*/ { return this->timeManager().timeStepIndex() > 0 && - (this->timeManager().timeStepIndex() % 1 == 0); + (this->timeManager().timeStepIndex() % 20 == 0); } //! Returns the temperature within the domain. @@ -262,7 +262,7 @@ public: std::vector neumannFlux(2,0.0); if (globalPos[0] > this->bboxMax()[0] - eps_) { - neumannFlux[nPhaseIdx] = 3e-4; + neumannFlux[nPhaseIdx] = 3e-2; } return neumannFlux; } diff --git a/examples/tutorialspatialparameters_coupled.hh b/examples/tutorialspatialparameters_coupled.hh index 88c616167..b6f62f29a 100644 --- a/examples/tutorialspatialparameters_coupled.hh +++ b/examples/tutorialspatialparameters_coupled.hh @@ -104,7 +104,7 @@ public: materialParams_.setSnr(0.0); //linear material law - materialParams_.setPe(1000.0); + materialParams_.setPe(500.0); materialParams_.setAlpha(2); } diff --git a/examples/tutorialspatialparameters_decoupled.hh b/examples/tutorialspatialparameters_decoupled.hh index 997d7dc24..22479f852 100644 --- a/examples/tutorialspatialparameters_decoupled.hh +++ b/examples/tutorialspatialparameters_decoupled.hh @@ -92,7 +92,7 @@ public: // parameters for the Brooks-Corey Law // entry pressures - materialLawParams_.setPe(1000); + materialLawParams_.setPe(500); // Brooks-Corey shape parameters materialLawParams_.setAlpha(2);