using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.Models.BeamShears { /// /// Implements properties of concrete cross-section effectiveness for shear /// public interface ISectionEffectiveness { /// /// Shape factor of shear strength of base form, dimensionless /// double BaseShapeFactor { get; set; } /// /// Maximum ratio of crack length to effective depth /// double MaxCrackLengthRatio { get; set; } /// /// Maximum ratio of crack length to effective depth /// double MinCrackLengthRatio { get; set; } /// /// Shape factor of shear strength of specific form, dimensionless /// double ShapeFactor { get; set; } } }