Tests of crack calculator were added

This commit is contained in:
RedikultsevEvg
2024-08-12 12:46:40 +05:00
parent 3eb5aa2b96
commit 45dbd7a1ca
53 changed files with 1041 additions and 277 deletions

View File

@@ -0,0 +1,14 @@
using StructureHelperCommon.Models.Calculators;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
public interface IUserCrackInputData : IInputData
{
double LengthBetweenCracks { get; set; }
bool SetLengthBetweenCracks { get; set; }
bool SetSofteningFactor { get; set; }
double SofteningFactor { get; set; }
double UltimateLongCrackWidth { get; set; }
double UltimateShortCrackWidth { get; set; }
}
}