Skip to content
Snippets Groups Projects
Commit d057f66e authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[poroelastic][cm] use correct domain prefix for function argument

parent f0437c5d
No related branches found
No related tags found
1 merge request!1467Cleanup/poroelastic
......@@ -335,15 +335,15 @@ public:
template< class PoroMechLocalAssembler >
typename LocalResidual<PoroMechId>::ElementResidualVector
evalCouplingResidual(Dune::index_constant<PoroMechId> poroMechDomainId,
const PoroMechLocalAssembler& pmFlowLocalAssembler,
const PoroMechLocalAssembler& poroMechLocalAssembler,
Dune::index_constant<PMFlowId> pmFlowDomainId,
GridIndexType<PMFlowId> dofIdxGlobalJ)
{
return pmFlowLocalAssembler.localResidual().evalFluxAndSource(pmFlowLocalAssembler.element(),
pmFlowLocalAssembler.fvGeometry(),
pmFlowLocalAssembler.curElemVolVars(),
pmFlowLocalAssembler.elemFluxVarsCache(),
pmFlowLocalAssembler.elemBcTypes());
return poroMechLocalAssembler.localResidual().evalFluxAndSource(poroMechLocalAssembler.element(),
poroMechLocalAssembler.fvGeometry(),
poroMechLocalAssembler.curElemVolVars(),
poroMechLocalAssembler.elemFluxVarsCache(),
poroMechLocalAssembler.elemBcTypes());
}
//! Return a const reference to one of the problems
......
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