Skip to content
Snippets Groups Projects
Commit df30da5b authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[fluxvarsbase] cleanup comments

parent c152207c
No related branches found
No related tags found
Loading
...@@ -109,18 +109,17 @@ public: ...@@ -109,18 +109,17 @@ public:
const FVElementGeometry& fvGeometry, const FVElementGeometry& fvGeometry,
const SubControlVolumeFace& scvf) const SubControlVolumeFace& scvf)
{ {
//! Give the upwind scheme access to the cached variables
//! Forward to the discretization specific implementation //! Forward to the discretization specific implementation
return FluxStencil::stencil(element, fvGeometry, scvf); return FluxStencil::stencil(element, fvGeometry, scvf);
} }
private: private:
const Problem* problemPtr_; //! Pointer to the problem const Problem* problemPtr_; //! Pointer to the problem
const Element* elementPtr_; //! Pointer to the element at hand const Element* elementPtr_; //! Pointer to the element at hand
const FVElementGeometry* fvGeometryPtr_; 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 SubControlVolumeFace* scvFacePtr_; //! Pointer to the sub control volume face for which the flux variables are created
const ElementVolumeVariables* elemVolVarsPtr_; const ElementVolumeVariables* elemVolVarsPtr_; //! Pointer to the current element volume variables
const ElementFluxVariablesCache* elemFluxVarsCachePtr_; const ElementFluxVariablesCache* elemFluxVarsCachePtr_; //! Pointer to the current element flux variables cache
}; };
} // end namespace Dumux } // end namespace Dumux
......
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