From 098c8a1ee3e0ce48910cd5260dfc2af85bdbc96a Mon Sep 17 00:00:00 2001 From: Lynn Munday Date: Fri, 12 Apr 2024 14:59:37 -0600 Subject: [PATCH] Add missing stress unit conversion to LAROMANCE model base. closes #27368 --- .../solid_mechanics/src/materials/LAROMANCEStressUpdateBase.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/solid_mechanics/src/materials/LAROMANCEStressUpdateBase.C b/modules/solid_mechanics/src/materials/LAROMANCEStressUpdateBase.C index c40197f1f4c2..77101f592dd5 100644 --- a/modules/solid_mechanics/src/materials/LAROMANCEStressUpdateBase.C +++ b/modules/solid_mechanics/src/materials/LAROMANCEStressUpdateBase.C @@ -576,7 +576,7 @@ LAROMANCEStressUpdateBaseTempl::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)