Skip to content

Commit

Permalink
Fixing variable markup
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Mueller <[email protected]>
  • Loading branch information
johannes-mueller committed Dec 8, 2023
1 parent 67a4aa6 commit 8c2af12
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/pylife/materiallaws/rambgood.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,12 @@ class RambergOsgood:
Parameters
----------
E : float
Young's Modulus
K : float
The strength coefficient, usually named `K'` or ``K_prime`̀ in FKM nonlinear related formulas.
The strength coefficient, usually named ``K'`` or ``K_prime`` in FKM nonlinear related formulas.
n : float
The strain hardening coefficient, usually named `n'` or ``n_prime`̀ in FKM nonlinear related formulas.
The strain hardening coefficient, usually named ``n'`` or ``n_prime`` in FKM nonlinear related formulas.
Notes
-----
Expand Down Expand Up @@ -156,7 +155,7 @@ def dresiduum(stress):
abs_stress = optimize.newton(
func=residuum,
x0=stress0,
fprime=dresiduum,
fprime=dresiduum,
rtol=rtol, tol=tol
)
return abs_stress * sign_strain
Expand Down

0 comments on commit 8c2af12

Please sign in to comment.