// -*- 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 . *
*****************************************************************************/
/*!
* \file
* \ingroup BoundaryTests
* \brief A Darcy test problem using Maxwell-Stefan diffusion.
*/
#ifndef DUMUX_STOKESDARCY_PROPERTIES_HH
#define DUMUX_STOKESDARCY_PROPERTIES_HH
#include
#include
#include
#include
#include
#include
#include
#include "h2n2co2fluidsystem.hh"
#include "problem_darcy.hh"
#include "problem_stokes.hh"
namespace Dumux::Properties {
// Create new type tags
namespace TTag {
struct DarcyOnePThreeC { using InheritsFrom = std::tuple; };
} // end namespace TTag
// Set the problem property
template
struct Problem { using type = Dumux::DarcySubProblem; };
template
struct FluidSystem { using type = FluidSystems::H2N2CO2FluidSystem>; };
// Use moles
template
struct UseMoles { static constexpr bool value = true; };
// Do not replace one equation with a total mass balance
template
struct ReplaceCompEqIdx { static constexpr int value = 3; };
//! Use a model with constant tortuosity for the effective diffusivity
template
struct EffectiveDiffusivityModel
{ using type = DiffusivityConstantTortuosity>; };
// Set the grid type
template
struct Grid { using type = Dune::YaspGrid<2>; };
//Set the diffusion type
template
struct MolecularDiffusionType { using type = MaxwellStefansLaw; };
// Set the spatial paramaters type
template
struct SpatialParams
{
using GridGeometry = GetPropType;
using Scalar = GetPropType;
using type = OnePSpatialParams;
};
// Create new type tags
namespace TTag {
struct StokesOnePThreeC { using InheritsFrom = std::tuple; };
} // end namespace TTag
// Set the fluid system
template
struct FluidSystem { using type = FluidSystems::H2N2CO2FluidSystem>; };
// Set the grid type
template
struct Grid { using type = Dune::YaspGrid<2, Dune::EquidistantOffsetCoordinates, 2> >; };
// Set the problem property
template
struct Problem { using type = Dumux::StokesSubProblem ; };
template
struct EnableGridGeometryCache { static constexpr bool value = true; };
template
struct EnableGridFluxVariablesCache { static constexpr bool value = true; };
template
struct EnableGridVolumeVariablesCache { static constexpr bool value = true; };
// Use moles
template
struct UseMoles { static constexpr bool value = true; };
// Set the grid type
template
struct MolecularDiffusionType { using type = MaxwellStefansLaw; };
// Do not replace one equation with a total mass balance
template
struct ReplaceCompEqIdx { static constexpr int value = 3; };
template
struct CouplingManager
{
using Traits = StaggeredMultiDomainTraits;
using type = Dumux::StokesDarcyCouplingManager;
};
template
struct CouplingManager
{
using Traits = StaggeredMultiDomainTraits;
using type = Dumux::StokesDarcyCouplingManager;
};
} // end namespace Dumux::Properties
#endif