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

Fix definition of rho

parent 7228b239
No related branches found
No related tags found
No related merge requests found
......@@ -35,11 +35,11 @@ class RuinaFunction : public NiceFunction {
: coefficient(coefficient),
a(a),
mu(mu),
rho(exp(-mu / a)),
eta(eta),
normalStress(normalStress),
compound_state(b * (state - log(eta * L))),
h(h) {}
h(h),
rho(exp(-(mu + compound_state) / a)) {}
/*
If mu and sigma_n denote the coefficient of friction and the
......
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