Skip to content

Commit

Permalink
Update stress.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jbjacob94 authored Dec 12, 2023
1 parent 167ec31 commit 40a6c82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ImageD11/stress.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def invariant_props(self, dname):
tensor_list = self.__getattribute__(dname)
assert np.all([T.shape == (3,3) for T in tensor_list])

tensor_list_dev = [deviatoric(T) for T in tensors_list]
tensor_list_dev = [deviatoric(T) for T in tensor_list]
Invts = [invariants(T) for T in tensor_list]
Invts_dev = [invariants(T) for T in tensor_list_dev]

Expand Down

0 comments on commit 40a6c82

Please sign in to comment.