Add option of strain control in force calculator

This commit is contained in:
ear
2025-10-08 19:19:42 +05:00
parent 292e7bac74
commit 8d4c788a7e
18 changed files with 39 additions and 14 deletions

View File

@@ -123,7 +123,10 @@ namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
TraceLogger = TraceLogger
};
forceTupleTraceResultLogic.TraceResult(result);
CheckOverStrainedNdms();
if (InputData.CheckStrainLimit == true)
{
CheckOverStrainedNdms();
}
}
private bool CheckOverStrainedNdms()