Logic fo TupleCrackCalculator was changed

This commit is contained in:
RedikultsevEvg
2024-07-28 22:34:47 +05:00
parent 732af8bc09
commit 35b4000f64
12 changed files with 474 additions and 92 deletions

View File

@@ -89,7 +89,7 @@ namespace StructureHelperLogics.NdmCalculations.Cracking
{
result = false;
string message = $"Host {rebar.Name} ({rebar.HostPrimitive.Name}) is not included in primitives\n";
checkResult += message;
CheckResult += message;
TraceLogger?.AddMessage(message, TraceLogStatuses.Error);
}
}
@@ -97,7 +97,7 @@ namespace StructureHelperLogics.NdmCalculations.Cracking
{
result = false;
string message = $"Material of host of {rebar.Name} ({rebar.HostPrimitive.HeadMaterial.Name}) does not support cracking\n";
checkResult += message;
CheckResult += message;
TraceLogger?.AddMessage(message, TraceLogStatuses.Error);
}
}