Skip to content
Snippets Groups Projects
Commit 1573e4e2 authored by Timo Koch's avatar Timo Koch
Browse files

[material] Remove deprecated effective diffusivity laws

parent 1088807d
No related branches found
No related tags found
2 merge requests!708Fix/headercheck next,!617[WIP] Next
......@@ -6,8 +6,6 @@ add_subdirectory("mp")
#install headers
install(FILES
diffusivityconstant.hh
diffusivityconstanttau.hh
diffusivityconstanttortuosity.hh
diffusivitymillingtonquirk.hh
permeabilitykozenycarman.hh
......
// -*- 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 <http://www.gnu.org/licenses/>. *
*****************************************************************************/
/*!
* \file
* \ingroup fluidmatrixinteractionslaws
* \brief Relation for the saturation-dependent effective diffusion coefficient
*/
#ifndef DIFFUSIVITY_CONSTANT_HH
#define DIFFUSIVITY_CONSTANT_HH
#include <dune/common/deprecated.hh>
#include "diffusivityconstanttortuosity.hh"
namespace Dumux
{
template<class TypeTag>
using DiffusivityConstant DUNE_DEPRECATED_MSG("Use DiffusivityConstantTortuosity instead")
= DiffusivityConstantTortuosity<typename GET_PROP_TYPE(TypeTag, Scalar)>;
}
#endif // DIFFUSIVITY_CONSTANT_HH
// -*- 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 <http://www.gnu.org/licenses/>. *
*****************************************************************************/
/*!
* \file
* \ingroup fluidmatrixinteractionslaws
* \brief Relation for the saturation-dependent effective diffusion coefficient
*/
#ifndef DIFFUSIVITY_CONSTANT_TAU_HH
#define DIFFUSIVITY_CONSTANT_TAU_HH
#include <dune/common/deprecated.hh>
#include "diffusivityconstanttortuosity.hh"
namespace Dumux
{
template<class TypeTag, class Scalar>
using DiffusivityConstantTau DUNE_DEPRECATED_MSG("Use DiffusivityConstantTortuosity instead")
= DiffusivityConstantTortuosity<Scalar>;
}
#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