Skip to content
Snippets Groups Projects
Commit d70514e0 authored by Timo Koch's avatar Timo Koch Committed by Kilian Weishaupt
Browse files

[navierstokes] Cleanup fluxvarcache/filler

parent 1bfbe216
No related branches found
No related tags found
1 merge request!1555Improve flux variables cache filler handling
...@@ -140,8 +140,7 @@ public: ...@@ -140,8 +140,7 @@ public:
globalScvfIndices_.resize(numScvf); globalScvfIndices_.resize(numScvf);
// instantiate helper class to fill the caches // instantiate helper class to fill the caches
// FluxVariablesCacheFiller filler(gridFluxVarsCache().problem()); TODO: use proper ctor FluxVariablesCacheFiller filler(gridFluxVarsCache().problem());
FluxVariablesCacheFiller filler;
std::size_t localScvfIdx = 0; std::size_t localScvfIdx = 0;
// fill the containers // fill the containers
...@@ -164,8 +163,7 @@ public: ...@@ -164,8 +163,7 @@ public:
const ElementVolumeVariables& elemVolVars) const ElementVolumeVariables& elemVolVars)
{ {
// instantiate helper class to fill the caches // instantiate helper class to fill the caches
// FluxVariablesCacheFiller filler(problem); TODO: use proper ctor FluxVariablesCacheFiller filler(gridFluxVarsCache().problem());
FluxVariablesCacheFiller filler;
// find the number of scv faces that need to be prepared // find the number of scv faces that need to be prepared
const auto numScvf = fvGeometry.numScvf(); const auto numScvf = fvGeometry.numScvf();
......
...@@ -104,13 +104,11 @@ public: ...@@ -104,13 +104,11 @@ public:
bool forceUpdate = false) bool forceUpdate = false)
{ {
// only do the update if fluxes are solution dependent or if update is forced // only do the update if fluxes are solution dependent or if update is forced
// TODO: so far, the staggered models do not use any fluxVar caches, therefore an empty cache filler if (FluxVariablesCacheFiller::isSolDependent || forceUpdate)
// is used which does not implement isSolDependent
if (/*FluxVariablesCacheFiller::isSolDependent ||*/ forceUpdate)
{ {
// instantiate helper class to fill the caches // instantiate helper class to fill the caches
// FluxVariablesCacheFiller filler(problem()); TODO: use proper ctor // FluxVariablesCacheFiller filler(problem()); TODO: use proper ctor
FluxVariablesCacheFiller filler; FluxVariablesCacheFiller filler(problem());
fluxVarsCache_.resize(fvGridGeometry.numScvf()); fluxVarsCache_.resize(fvGridGeometry.numScvf());
for (const auto& element : elements(fvGridGeometry.gridView())) for (const auto& element : elements(fvGridGeometry.gridView()))
......
...@@ -184,10 +184,6 @@ public: ...@@ -184,10 +184,6 @@ public:
template<class TypeTag> template<class TypeTag>
struct FluxVariables<TypeTag, TTag::NavierStokesNC> { using type = FreeflowNCFluxVariables<TypeTag>; }; struct FluxVariables<TypeTag, TTag::NavierStokesNC> { using type = FreeflowNCFluxVariables<TypeTag>; };
//! The flux variables cache class, by default the one for free flow
template<class TypeTag>
struct FluxVariablesCache<TypeTag, TTag::NavierStokesNC> { using type = FreeFlowFluxVariablesCache<TypeTag>; };
//! The specific I/O fields //! The specific I/O fields
template<class TypeTag> template<class TypeTag>
struct IOFields<TypeTag, TTag::NavierStokesNC> { using type = FreeflowNCIOFields<NavierStokesIOFields>; }; struct IOFields<TypeTag, TTag::NavierStokesNC> { using type = FreeflowNCIOFields<NavierStokesIOFields>; };
......
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set et ts=4 sw=4 sts=4:
/*****************************************************************************
* See the file COPYING for full copying permissions. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
/*!
* \file
* \ingroup NavierStokesModel
* \copydoc Dumux::FreeFlowFluxVariablesCache
*/
#ifndef DUMUX_FREEFLOW_IMPLICIT_FLUXVARIABLESCACHE_HH
#define DUMUX_FREEFLOW_IMPLICIT_FLUXVARIABLESCACHE_HH
#include <dumux/common/properties.hh>
#include <dumux/discretization/method.hh>
namespace Dumux {
// forward declaration
template<class TypeTag, DiscretizationMethod discMethod>
class FreeFlowFluxVariablesCacheImplementation
{};
/*!
* \ingroup NavierStokesModel
* \brief The flux variables cache classes for the Navier-Stokes model.
* Store flux stencils and data required for flux calculation
*/
template<class TypeTag>
using FreeFlowFluxVariablesCache = FreeFlowFluxVariablesCacheImplementation<TypeTag, GetPropType<TypeTag, Properties::FVGridGeometry>::discMethod>;
/*!
* \ingroup NavierStokesModel
* \brief The flux variables cache classes for the Navier-Stokes model.
* Store flux stencils and data required for flux calculation. <BR>
* Specialization for the staggered grid discretization.
*/
template<class TypeTag>
class FreeFlowFluxVariablesCacheImplementation<TypeTag, DiscretizationMethod::staggered>
{
using Problem = GetPropType<TypeTag, Properties::Problem>;
using GridView = GetPropType<TypeTag, Properties::GridView>;
using FVElementGeometry = typename GetPropType<TypeTag, Properties::FVGridGeometry>::LocalView;
using ElementVolumeVariables = typename GetPropType<TypeTag, Properties::GridVolumeVariables>::LocalView;
using SubControlVolumeFace = typename FVElementGeometry::SubControlVolumeFace;
using Element = typename GridView::template Codim<0>::Entity;
public:
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
//! Do nothing for the staggered grid specialization.
void update(const Problem& problem,
const Element& element,
const FVElementGeometry& fvGeometry,
const ElementVolumeVariables& elemVolVars,
const SubControlVolumeFace &scvf)
{}
};
} // end namespace
#endif
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