From affc7093b1ddbce1583a54a00015359b432e3cd7 Mon Sep 17 00:00:00 2001 From: melaniel <melanie.lipp@iws.uni-stuttgart.de> Date: Fri, 20 Apr 2018 17:19:33 +0200 Subject: [PATCH] [staggered] Fixed typo. --- dumux/common/staggeredfvproblem.hh | 8 ++++---- dumux/freeflow/navierstokes/problem.hh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dumux/common/staggeredfvproblem.hh b/dumux/common/staggeredfvproblem.hh index adf519afa2..abb4397e96 100644 --- a/dumux/common/staggeredfvproblem.hh +++ b/dumux/common/staggeredfvproblem.hh @@ -118,21 +118,21 @@ public: // let the problem do the dirty work of nailing down // the initial solution. auto initPriVars = asImp_().initial(scv); - asImp_().applyInititalCellCenterSolution(sol, scv, initPriVars); + asImp_().applyInitialCellCenterSolution(sol, scv, initPriVars); } // loop over faces for(auto&& scvf : scvfs(fvGeometry)) { auto initPriVars = asImp_().initial(scvf); - asImp_().applyInititalFaceSolution(sol, scvf, initPriVars); + asImp_().applyInitialFaceSolution(sol, scvf, initPriVars); } } } //! Applys the initial cell center solution - void applyInititalCellCenterSolution(SolutionVector& sol, + void applyInitialCellCenterSolution(SolutionVector& sol, const SubControlVolume& scv, const PrimaryVariables& initSol) const { @@ -145,7 +145,7 @@ public: } //! Applys the initial face solution - void applyInititalFaceSolution(SolutionVector& sol, + void applyInitialFaceSolution(SolutionVector& sol, const SubControlVolumeFace& scvf, const PrimaryVariables& initSol) const { diff --git a/dumux/freeflow/navierstokes/problem.hh b/dumux/freeflow/navierstokes/problem.hh index 5a11a1d5e8..376b5d843f 100644 --- a/dumux/freeflow/navierstokes/problem.hh +++ b/dumux/freeflow/navierstokes/problem.hh @@ -122,7 +122,7 @@ public: //! Applys the initial face solution (velocities on the faces). Specialization for staggered grid discretization. template <class G = FVGridGeometry> typename std::enable_if<G::discMethod == DiscretizationMethod::staggered, void>::type - applyInititalFaceSolution(SolutionVector& sol, + applyInitialFaceSolution(SolutionVector& sol, const SubControlVolumeFace& scvf, const PrimaryVariables& initSol) const { -- GitLab