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

[properties] Remove obsolete non-equil properties AwXSurface

parent 5da9b0e9
No related branches found
No related tags found
2 merge requests!1337WIP Fix/dirichlet caching v2,!1195Cleanup/interfacial areas
......@@ -266,12 +266,6 @@ struct NumEnergyEqFluid { using type = UndefinedProperty; };
template<class TypeTag, class MyTypeTag>
struct NumEnergyEqSolid { using type = UndefinedProperty; };
template<class TypeTag, class MyTypeTag>
struct AwnSurface { using type = UndefinedProperty; };
template<class TypeTag, class MyTypeTag>
struct AwsSurface { using type = UndefinedProperty; };
template<class TypeTag, class MyTypeTag>
struct AnsSurface { using type = UndefinedProperty; };
template<class TypeTag, class MyTypeTag>
struct NusseltFormulation { using type = UndefinedProperty; };
template<class TypeTag, class MyTypeTag>
......
......@@ -124,42 +124,6 @@ struct SpatialParams<TypeTag, TTag::EvaporationAtmosphere>
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
using type = EvaporationAtmosphereSpatialParams<FVGridGeometry, Scalar>;
};
// Set the interfacial area relation: wetting -- non-wetting
template<class TypeTag>
struct AwnSurface<TypeTag, TTag::EvaporationAtmosphere>
{
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
using MaterialLaw = typename GetPropType<TypeTag, Properties::SpatialParams>::MaterialLaw;
using MaterialLawParams = typename MaterialLaw::Params;
using EffectiveIALaw = AwnSurfacePcMaxFct<Scalar>;
public:
using type = EffToAbsLawIA<EffectiveIALaw, MaterialLawParams>;
};
// Set the interfacial area relation: wetting -- solid
template<class TypeTag>
struct AwsSurface<TypeTag, TTag::EvaporationAtmosphere>
{
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
using MaterialLaw = typename GetPropType<TypeTag, Properties::SpatialParams>::MaterialLaw;
using MaterialLawParams = typename MaterialLaw::Params;
using EffectiveIALaw = AwnSurfacePolynomial2ndOrder<Scalar>;
public:
using type = EffToAbsLawIA<EffectiveIALaw, MaterialLawParams>;
};
// Set the interfacial area relation: non-wetting -- solid
template<class TypeTag>
struct AnsSurface<TypeTag, TTag::EvaporationAtmosphere>
{
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
using MaterialLaw = typename GetPropType<TypeTag, Properties::SpatialParams>::MaterialLaw;
using MaterialLawParams = typename MaterialLaw::Params;
using EffectiveIALaw = AwnSurfaceExpSwPcTo3<Scalar>;
public:
using type = EffToAbsLawIA<EffectiveIALaw, MaterialLawParams>;
};
} // end namespace Properties
/*!
......
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