// -*- 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 2 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 * * \brief The coupled exercise properties file or the models case. */ #ifndef DUMUX_EXERCISE_COUPLED_MODELS_PROPERTIES_HH #define DUMUX_EXERCISE_COUPLED_MODELS_PROPERTIES_HH // Both domains #include #include #include #include #include #include // Porous medium flow domain #include #include #if EXNUMBER >= 1 #include #include "../2pspatialparams.hh" #else #include #include "../1pspatialparams.hh" #endif #include "porousmediumsubproblem.hh" // Free flow domain #include #include #include "freeflowsubproblem.hh" namespace Dumux::Properties { // Create new type tags namespace TTag { struct StokesNC { using InheritsFrom = std::tuple; }; #if EXNUMBER >= 1 struct DarcyOnePNC { using InheritsFrom = std::tuple; }; #else struct DarcyOnePNC { using InheritsFrom = std::tuple; }; #endif } // end namespace TTag // Set the coupling manager template struct CouplingManager { using Traits = StaggeredMultiDomainTraits; using type = Dumux::StokesDarcyCouplingManager; }; template struct CouplingManager { using Traits = StaggeredMultiDomainTraits; using type = Dumux::StokesDarcyCouplingManager; }; // Set the problem property template struct Problem { using type = Dumux::FreeFlowSubProblem ; }; template struct Problem { using type = Dumux::PorousMediumSubProblem; }; // Set the grid type template struct Grid { using type = Dune::YaspGrid<2, Dune::EquidistantOffsetCoordinates, 2> >; }; template struct Grid { using type = Dune::YaspGrid<2>; }; // The fluid system template struct FluidSystem { using H2OAir = FluidSystems::H2OAir>; using type = FluidSystems::OnePAdapter; }; template struct FluidSystem { using H2OAir = FluidSystems::H2OAir>; #if EXNUMBER == 0 using type = FluidSystems::OnePAdapter; #else using type = H2OAir; #endif }; // Do not replace one equation with a total mass balance template struct ReplaceCompEqIdx { static constexpr int value = 3; }; template struct ReplaceCompEqIdx { static constexpr int value = 3; }; // Use formulation based on mass fractions template struct UseMoles { static constexpr bool value = true; }; template struct UseMoles { static constexpr bool value = true; }; #if EXNUMBER >= 1 //! Set the default formulation to pw-Sn: This can be over written in the problem. template struct Formulation { static constexpr auto value = TwoPFormulation::p1s0; }; #endif // Set the spatial paramaters type #if EXNUMBER >= 1 template struct SpatialParams { using type = TwoPSpatialParams, GetPropType>; }; #else template struct SpatialParams { using type = OnePSpatialParams, GetPropType>; }; #endif //! Use a model with constant tortuosity for the effective diffusivity template struct EffectiveDiffusivityModel { using type = DiffusivityConstantTortuosity>; }; template struct EnableGridGeometryCache { static constexpr bool value = true; }; template struct EnableGridFluxVariablesCache { static constexpr bool value = true; }; template struct EnableGridVolumeVariablesCache { static constexpr bool value = true; }; } //end namespace Dumux::Properties #endif