Skip to content

Commit

Permalink
Fix another call to a function that I renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
btalamini committed Jan 17, 2024
1 parent 3d0cee7 commit ceaea06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optimism/material/HyperViscoelastic.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def _compute_state_increment(elasticStrain, dt, props):
tau = props[PROPS_TAU]
integration_factor = 1. / (1. + dt / tau)

Ee_dev = TensorMath.compute_deviatoric_tensor(elasticStrain)
Ee_dev = TensorMath.dev(elasticStrain)
return dt * integration_factor * Ee_dev / tau # dt * D

def _compute_elastic_logarithmic_strain(dispGrad, stateOld):
Expand Down

0 comments on commit ceaea06

Please sign in to comment.