// -*- 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 interface case. */ #ifndef DUMUX_EXERCISE_COUPLED_INTERFACE_PROPERTIES_HH #define DUMUX_EXERCISE_COUPLED_INTERFACE_PROPERTIES_HH // Both Domains #include #include #include // TODO: dumux-course-task 1.C //****** uncomment for the last exercise *****// // #include #include #include // Free-flow domain #include #include #include "freeflowsubproblem.hh" // Porous medium flow domain #include #include #include "../1pspatialparams.hh" #include "porousmediumsubproblem.hh" namespace Dumux::Properties { // Create new type tags namespace TTag { struct DarcyOneP { using InheritsFrom = std::tuple; }; struct StokesOneP { using InheritsFrom = std::tuple; }; } // 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::PorousMediumSubProblem; }; template struct Problem { using type = Dumux::FreeFlowSubProblem ; }; // the fluid system template struct FluidSystem { using Scalar = GetPropType; using type = FluidSystems::OnePLiquid > ; }; template struct FluidSystem { using Scalar = GetPropType; using type = FluidSystems::OnePLiquid > ; }; // Set the grid type template struct Grid { static constexpr auto dim = 2; using Scalar = GetPropType; using TensorGrid = Dune::YaspGrid<2, Dune::TensorProductCoordinates >; // TODO: dumux-course-task 1.C //****** comment out for the last exercise *****// using type = TensorGrid; //****** uncomment for the last exercise *****// // using HostGrid = TensorGrid; // using type = Dune::SubGrid; }; template struct Grid { static constexpr auto dim = 2; using Scalar = GetPropType; using TensorGrid = Dune::YaspGrid<2, Dune::TensorProductCoordinates >; // TODO: dumux-course-task 1.C //****** comment out for the last exercise *****// using type = TensorGrid; //****** uncomment for the last exercise *****// // using HostGrid = TensorGrid; // using type = Dune::SubGrid; }; template struct SpatialParams { using type = OnePSpatialParams, GetPropType>; }; 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