Skip to content

Commit

Permalink
add base name for rotation_total
Browse files Browse the repository at this point in the history
  • Loading branch information
hugary1995 committed Dec 2, 2020
1 parent 6f2f3a1 commit 73850b2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ ComputeFiniteStrainElasticStress::ComputeFiniteStrainElasticStress(
GuaranteeConsumer(this),
_elasticity_tensor_name(_base_name + "elasticity_tensor"),
_elasticity_tensor(getMaterialPropertyByName<RankFourTensor>(_elasticity_tensor_name)),
_rotation_total(declareProperty<RankTwoTensor>("rotation_total")),
_rotation_total_old(getMaterialPropertyOldByName<RankTwoTensor>("rotation_total")),
_rotation_total(declareProperty<RankTwoTensor>(_base_name + "rotation_total")),
_rotation_total_old(getMaterialPropertyOldByName<RankTwoTensor>(_base_name + "rotation_total")),
_strain_increment(getMaterialPropertyByName<RankTwoTensor>(_base_name + "strain_increment")),
_rotation_increment(
getMaterialPropertyByName<RankTwoTensor>(_base_name + "rotation_increment")),
Expand Down

0 comments on commit 73850b2

Please sign in to comment.