using LoaderCalculator.Data.Ndms;
using StructureHelperCommon.Infrastructures.Enums;
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
{
public class RebarCrackInputData : IInputData
{
///
/// Collection of ndms where work of crackable material in tension was assigned according to material properties
///
public IEnumerable CrackableNdmCollection { get; set; }
///
/// Collection of ndms where work of concrete is disabled
///
public IEnumerable CrackedNdmCollection { get; set; }
///
/// Force tuple for calculation
///
public ForceTuple ForceTuple { get; set; }
///
/// Base length beetwen cracks
///
public double LengthBeetwenCracks { get; set; }
}
}