using StructureHelperCommon.Models.Calculators; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.NdmCalculations.Cracking { /// /// Settings for crack calculations assigned by user /// public class UserCrackInputData : IInputData { /// /// Flag of assigning of user value of softening factor /// public bool SetSofteningFactor {get;set;} /// /// User value of softening factor, dimensionless /// public double SofteningFactor {get;set;} /// /// Flag of assigning of user value of length between cracks /// public bool SetLengthBetweenCracks {get;set;} /// /// Length between cracks, m /// public double LengthBetweenCracks {get;set;} /// /// Ultimate long-term crack width, m /// public double UltimateLongCrackWidth { get; set; } /// /// Ultimate short-term crack width, m /// public double UltimateShortCrackWidth { get; set; } } }