From 5d6bb3b8d6046db38e05b76d8933d8b3d312a2f5 Mon Sep 17 00:00:00 2001 From: Martin Schneider <martin.schneider@iws.uni-stuttgart.de> Date: Tue, 4 Apr 2023 18:50:23 +0200 Subject: [PATCH] [ex][ffpm] Fix bracket --- .../exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/exercises/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh b/exercises/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh index 6859b9c6..213b32fd 100644 --- a/exercises/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh +++ b/exercises/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh @@ -51,8 +51,8 @@ class FreeFlowSubProblem : public NavierStokesStaggeredProblem<TypeTag> using FluidSystem = GetPropType<TypeTag, Properties::FluidSystem>; using Indices = typename GetPropType<TypeTag, Properties::ModelTraits>::Indices; using ModelTraits = GetPropType<TypeTag, Properties::ModelTraits>; -// TODO: dumux-course-task 3.A -// Change the boundary types to Dumux::RANSBoundaryTypes<ModelTraits, ModelTraits::numEq()> + // TODO: dumux-course-task 3.A + // Change the boundary types to Dumux::RANSBoundaryTypes<ModelTraits, ModelTraits::numEq()> using BoundaryTypes = Dumux::NavierStokesBoundaryTypes<GetPropType<TypeTag, Properties::ModelTraits>::numEq()>; using FVGridGeometry = GetPropType<TypeTag, Properties::GridGeometry>; using FVElementGeometry = typename FVGridGeometry::LocalView; @@ -191,7 +191,6 @@ public: // values[Indices::turbulentKineticEnergyIdx] = 0.0; // values[Indices::dissipationIdx] = 0.0; // } - } return values; } -- GitLab