using LoaderCalculator.Data.Ndms; using StructureHelperCommon.Models.Calculators; using StructureHelperCommon.Models.Forces; using StructureHelperLogics.NdmCalculations.Primitives; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.NdmCalculations.Cracking { /// /// Input data for rebar stress calculator /// public interface IRebarStressCalculatorInputData : IInputData { /// /// Force tuple for calculting /// ForceTuple ForceTuple { get; set; } /// /// Collection of ndms of cross-section (as usual without concrete tensile strength) /// IEnumerable NdmCollection { get; set; } /// /// Rebar which stress and strain will be obtained for /// IRebarNdmPrimitive RebarPrimitive { get; set; } } }