using StructureHelperCommon.Infrastructures.Interfaces; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.Models.BeamShears { /// /// Implement parameers of inclined cross-section for beam shear calculating /// public interface IInclinedSection : IEffectiveDepth { /// /// Width of cross-section /// double WebWidth { get; set; } /// /// Coordinate of start of inclined cross-section /// double StartCoord { get; set; } /// /// Coordinate of end of inclined cross-section /// double EndCoord { get; set; } /// /// Strength of concrete in compression, Pa /// double ConcreteCompressionStrength { get; set; } /// /// Strength of concrete in tension, Pa /// double ConcreteTensionStrength { get; set; } } }