Skip to content
Snippets Groups Projects
Commit 22e7ecb8 authored by Dennis Gläser's avatar Dennis Gläser Committed by Timo Koch
Browse files

[facet][tpfa] implement fouriers law

parent ffc18322
No related branches found
No related tags found
1 merge request!1891Feature/nonisothermal facet coupling
......@@ -3,5 +3,6 @@ couplingmanager.hh
couplingmapper.hh
darcyslaw.hh
fickslaw.hh
fourierslaw.hh
properties.hh
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/multidomain/facet/cellcentered/tpfa)
This diff is collapsed.
......@@ -35,6 +35,7 @@
#include <dumux/multidomain/facet/cellcentered/localresidual.hh>
#include <dumux/multidomain/facet/cellcentered/tpfa/darcyslaw.hh>
#include <dumux/multidomain/facet/cellcentered/tpfa/fickslaw.hh>
#include <dumux/multidomain/facet/cellcentered/tpfa/fourierslaw.hh>
#include <dumux/porousmediumflow/fluxvariables.hh>
......@@ -64,6 +65,13 @@ struct MolecularDiffusionType<TypeTag, TTag::CCTpfaFacetCouplingModel>
using type = CCTpfaFacetCouplingFicksLaw< TypeTag >;
};
//! Use the tpfa facet coupling-specific Ficks's law
template<class TypeTag>
struct HeatConductionType<TypeTag, TTag::CCTpfaFacetCouplingModel>
{
using type = CCTpfaFacetCouplingFouriersLaw< TypeTag >;
};
//! Use the cc local residual for models with facet coupling
template<class TypeTag>
struct BaseLocalResidual<TypeTag, TTag::CCTpfaFacetCouplingModel> { using type = CCFacetCouplingLocalResidual<TypeTag>; };
......
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