From df30da5b16ee20f2189843a84def2ecd7d65a73b Mon Sep 17 00:00:00 2001 From: DennisGlaeser <dennis.glaeser@iws.uni-stuttgart.de> Date: Sat, 2 Dec 2017 13:28:54 +0100 Subject: [PATCH] [fluxvarsbase] cleanup comments --- dumux/discretization/fluxvariablesbase.hh | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/dumux/discretization/fluxvariablesbase.hh b/dumux/discretization/fluxvariablesbase.hh index c2cbfcfd2d..d2d74d03b7 100644 --- a/dumux/discretization/fluxvariablesbase.hh +++ b/dumux/discretization/fluxvariablesbase.hh @@ -109,18 +109,17 @@ public: const FVElementGeometry& fvGeometry, const SubControlVolumeFace& scvf) { - //! Give the upwind scheme access to the cached variables //! Forward to the discretization specific implementation return FluxStencil::stencil(element, fvGeometry, scvf); } private: - const Problem* problemPtr_; //! Pointer to the problem - const Element* elementPtr_; //! Pointer to the element at hand - const FVElementGeometry* fvGeometryPtr_; - const SubControlVolumeFace* scvFacePtr_; //! Pointer to the sub control volume face for which the flux variables are created - const ElementVolumeVariables* elemVolVarsPtr_; - const ElementFluxVariablesCache* elemFluxVarsCachePtr_; + const Problem* problemPtr_; //! Pointer to the problem + const Element* elementPtr_; //! Pointer to the element at hand + const FVElementGeometry* fvGeometryPtr_; //! Pointer to the current FVElementGeometry + const SubControlVolumeFace* scvFacePtr_; //! Pointer to the sub control volume face for which the flux variables are created + const ElementVolumeVariables* elemVolVarsPtr_; //! Pointer to the current element volume variables + const ElementFluxVariablesCache* elemFluxVarsCachePtr_; //! Pointer to the current element flux variables cache }; } // end namespace Dumux -- GitLab