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

[Cleanup]

parent e7ae3fd4
No related branches found
No related tags found
No related merge requests found
...@@ -30,8 +30,8 @@ class FrictionPotentialWrapper { ...@@ -30,8 +30,8 @@ class FrictionPotentialWrapper {
// 0 otherwise // 0 otherwise
class FrictionPotential : public FrictionPotentialWrapper { class FrictionPotential : public FrictionPotentialWrapper {
public: public:
FrictionPotential(double coefficient, FrictionData const &fd) FrictionPotential(double coefficient, FrictionData const &_fd)
: fd(fd), weightTimesNormalStress(coefficient * (-fd.normalStress)) {} : fd(_fd), weightTimesNormalStress(coefficient * (-fd.normalStress)) {}
// log(V/V_m) if V >= V_0 // log(V/V_m) if V >= V_0
// 0 otherwise // 0 otherwise
......
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