From b32a7ce7df08b474cf5ee813a7e6a6c4f862e45e Mon Sep 17 00:00:00 2001 From: Evgeny Redikultsev Date: Sat, 11 May 2024 20:20:27 +0500 Subject: [PATCH] Crack width logic was changed --- .../NdmCalculations/Cracking/CrackWidthLogicSP63.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StructureHelperLogics/NdmCalculations/Cracking/CrackWidthLogicSP63.cs b/StructureHelperLogics/NdmCalculations/Cracking/CrackWidthLogicSP63.cs index 517dca6..8192886 100644 --- a/StructureHelperLogics/NdmCalculations/Cracking/CrackWidthLogicSP63.cs +++ b/StructureHelperLogics/NdmCalculations/Cracking/CrackWidthLogicSP63.cs @@ -29,7 +29,7 @@ namespace StructureHelperLogics.NdmCalculations.Cracking double rebarElongation = inputData.RebarStrain - inputData.ConcreteStrain; if (rebarElongation < 0d) { - TraceLogger?.AddMessage($"Elongation of rebar is negative, may be rebar is under compression, width of crack a,crc = 0(dimensionless)"); + TraceLogger?.AddMessage($"Elongation of rebar is negative, may be rebar is under compression, width of crack a,crc = 0"); return 0d; } TraceLogger?.AddMessage($"Rebar elongation Epsilon = {inputData.RebarStrain} - {inputData.ConcreteStrain} = {rebarElongation}(dimensionless)");