From b1910d7f331cdd9ecd4d071efeb6da630c35af0e Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Wed, 7 Apr 2021 08:13:26 +0200 Subject: [PATCH] [multishapelocalules] Pass ScalarT --- .../porenetwork/pore/2p/multishapelocalrules.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dumux/material/fluidmatrixinteractions/porenetwork/pore/2p/multishapelocalrules.hh b/dumux/material/fluidmatrixinteractions/porenetwork/pore/2p/multishapelocalrules.hh index e248654efb..68ea4c5a67 100644 --- a/dumux/material/fluidmatrixinteractions/porenetwork/pore/2p/multishapelocalrules.hh +++ b/dumux/material/fluidmatrixinteractions/porenetwork/pore/2p/multishapelocalrules.hh @@ -34,11 +34,11 @@ namespace Dumux::PoreNetwork::FluidMatrix { template<class ScalarT> struct LocalRulesTraits { - using Tetrahedron = TwoPLocalRulesPlatonicBodyDefault<Pore::Shape::tetrahedron>; - using Cube = TwoPLocalRulesPlatonicBodyDefault<Pore::Shape::cube>; - using Octahedron = TwoPLocalRulesPlatonicBodyDefault<Pore::Shape::octahedron>; - using Icosahedron = TwoPLocalRulesPlatonicBodyDefault<Pore::Shape::icosahedron>; - using Dodecahedron = TwoPLocalRulesPlatonicBodyDefault<Pore::Shape::dodecahedron>; + using Tetrahedron = TwoPLocalRulesPlatonicBodyDefault<Pore::Shape::tetrahedron, ScalarT>; + using Cube = TwoPLocalRulesPlatonicBodyDefault<Pore::Shape::cube, ScalarT>; + using Octahedron = TwoPLocalRulesPlatonicBodyDefault<Pore::Shape::octahedron, ScalarT>; + using Icosahedron = TwoPLocalRulesPlatonicBodyDefault<Pore::Shape::icosahedron, ScalarT>; + using Dodecahedron = TwoPLocalRulesPlatonicBodyDefault<Pore::Shape::dodecahedron, ScalarT>; }; template<class ScalarT> -- GitLab