Skip to content

Commit

Permalink
removed elemental prefix, changed damage plasticity parameter names i…
Browse files Browse the repository at this point in the history
…n input files ref idaholab#184
  • Loading branch information
vprithiv committed Feb 14, 2023
1 parent cc4eaff commit 1e7759e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/materials/ComputeMultipleInelasticDamageStress.C
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ ComputeMultipleInelasticDamageStress::validParams()
ComputeMultipleInelasticDamageStress::ComputeMultipleInelasticDamageStress(
const InputParameters & parameters)
: ComputeMultipleInelasticStress(parameters),
_D(getMaterialProperty<Real>("elemental_damage_variable")),
_D_old(getMaterialPropertyOld<Real>("elemental_damage_variable"))
_D(getMaterialProperty<Real>("damage_variable")),
_D_old(getMaterialPropertyOld<Real>("damage_variable"))
{
}

Expand Down
2 changes: 1 addition & 1 deletion test/tests/damage_plasticity_model/shear_test.i
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
[]
[D_auxk]
type = MaterialRealAux
property = elemental_damage_variable
property = damage_variable
variable = D
[]
[min_ep]
Expand Down
6 changes: 3 additions & 3 deletions test/tests/damage_plasticity_model/uniaxial_test.i
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
[]
[D_auxk]
type = MaterialRealAux
property = elemental_damage_variable
property = damage_variable
variable = D
[]
[min_ep]
Expand Down Expand Up @@ -196,8 +196,8 @@
[]
[damage_plasticity_model]
type = DamagePlasticityStressUpdate
factor_relating_biaxial_unixial_cmp_str = 0.109
factor_controlling_dilatancy = 0.23
biaxial_uniaxial_compressive_stress_factor = 0.109
dilatancy_factor = 0.23
stiff_recovery_factor = 0.001

yield_strength_in_tension = 3.48
Expand Down

0 comments on commit 1e7759e

Please sign in to comment.