diff --git a/examples/thermomechanics/inputs/thermal_deformation_heat_transfer.json b/examples/thermomechanics/inputs/thermal_deformation_heat_transfer.json index c3b68c5d..85abe80c 100644 --- a/examples/thermomechanics/inputs/thermal_deformation_heat_transfer.json +++ b/examples/thermomechanics/inputs/thermal_deformation_heat_transfer.json @@ -10,7 +10,7 @@ "horizon" : {"value": 0.00615, "unit": "m"}, "final_time" : {"value": 8, "unit": "s"}, "timestep" : {"value": 4.2e-07, "unit": "s"}, - "thermal_subcycle_steps" : {"value": 5e+4}, + "thermal_subcycle_steps" : {"value": 4.5e+4}, "output_frequency" : {"value": 10}, "output_reference" : {"value": true} } diff --git a/src/CabanaPD_Input.hpp b/src/CabanaPD_Input.hpp index 6d60274b..9b503028 100644 --- a/src/CabanaPD_Input.hpp +++ b/src/CabanaPD_Input.hpp @@ -300,7 +300,8 @@ class Inputs { log( std::cout, "WARNING: timestep (", dt, ") is larger than estimated stable timestep for ", name, " (", - dt_crit, "), using safety factor of ", safety_factor, ".\n" ); + dt_crit_safety, "), using safety factor of ", safety_factor, + ".\n" ); } // Store in inputs inputs["critical_timestep_" + name]["value"] = dt_crit_safety;