Skip to content
Snippets Groups Projects
Commit 23518510 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Fix up after 8f1f15178186b1cd7887611214d8d2fea8bec4db

parent f3a6d2de
No related branches found
No related tags found
No related merge requests found
......@@ -59,8 +59,8 @@ assemble_nonlinearity(
typedef Dune::BlockVector<Dune::FieldVector<double, 1>> SingletonVectorType;
// {{{ Assemble terms for the nonlinearity
SingletonVectorType mu(size);
mu = parset.get<double>("mu");
SingletonVectorType mu0(size);
mu0 = parset.get<double>("mu0");
SingletonVectorType a(size);
a = parset.get<double>("a");
......@@ -76,7 +76,7 @@ assemble_nonlinearity(
return Dune::make_shared<
Dune::GlobalRuinaNonlinearity<MatrixType, VectorType> const>(
nodalIntegrals, a, mu, V0, normalStress, b, state, L);
nodalIntegrals, a, mu0, V0, normalStress, b, state, L);
}
#include "assemblers_tmpl.cc"
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