Skip to content

Commit

Permalink
Addressing Stephanies comments for p91 material model pr
Browse files Browse the repository at this point in the history
  • Loading branch information
lynnmunday committed Nov 17, 2020
1 parent 11db9ab commit c33f3ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doc/content/source/materials/P91LAROMANCEStressUpdate.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## Description

`P91LAROMANCEStressUpdate` implements the necessary coefficients to compute a creep rate for HT9
stainless steel by sampling a Los Alamos Reduced Order Model Applied to Nonlinear Constitutive
`P91LAROMANCEStressUpdate` implements the necessary coefficients to compute a creep rate for P91
chrome moly alloy steel by sampling a Los Alamos Reduced Order Model Applied to Nonlinear Constitutive
Equations (LAROMANCE) model. `P91LAROMANCEStressUpdate` implements the coefficients required by
[ADLAROMANCEStressUpdateBase](ADLAROMANCEStressUpdateBase.md), which in turn utilizes the radial
return method implemented in [ADRadialReturnStressUpdate](/ADRadialReturnStressUpdate.md) to
Expand All @@ -14,7 +14,7 @@ model.

## Example Input Syntax

!listing test/tests/tensor_mechanics/ht9_rom/2drz.i block=Materials/rom_stress_prediction
!listing test/tests/d91_rom/verification.i block=Materials/rom_stress_prediction

!syntax parameters /Materials/tensor_mechanics/P91LAROMANCEStressUpdate

Expand Down
4 changes: 2 additions & 2 deletions src/materials/P91LAROMANCEStressUpdate.C
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ P91LAROMANCEStressUpdate::validParams()
"Maximum increment of density of cell (glissile) dislocations.");
params.addRangeCheckedParam<Real>(
"initial_wall_dislocation_density",
6.0e12,
10.0e12,
"initial_wall_dislocation_density >= 6.0e12 & "
"initial_wall_dislocation_density <= 6.0e12",
"initial_wall_dislocation_density <= 18.0e12",
"Cell wall (locked) dislocation density initial value (1/m^2).");
params.addRangeCheckedParam<Real>(
"max_relative_wall_dislocation_increment",
Expand Down

0 comments on commit c33f3ad

Please sign in to comment.