Skip to content

Commit

Permalink
Add missing stress unit conversion to LAROMANCE model base. closes #2…
Browse files Browse the repository at this point in the history
  • Loading branch information
lynnmunday committed Apr 16, 2024
1 parent 6a80bee commit 098c8a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ LAROMANCEStressUpdateBaseTempl<is_ad>::computeStressInitialize(
_input_values[_cell_input_index] = _old_input_values[_cell_output_index];
_input_values[_wall_input_index] = _old_input_values[_wall_output_index];
_input_values[_stress_input_index] = _stress_function ? _stress_function->value(_t, _q_point[_qp])
: effective_trial_stress * 1.0e-6;
: effective_trial_stress * _stress_ucf;
_input_values[_old_strain_input_index] = _old_input_values[_strain_output_index];
_input_values[_temperature_input_index] = _temperature[_qp];
if (_environmental)
Expand Down

0 comments on commit 098c8a1

Please sign in to comment.