Files
StructureHelper/StructureHelperLogics/Models/BeamShears/IInclinedSection.cs
Evgeny Redikultsev e4a23f5139 Add BeamShearCalculator
2025-02-16 17:24:16 +05:00

30 lines
817 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
/// <summary>
/// Implement parameers of inclined cross-section for beam shear calculating
/// </summary>
public interface IInclinedSection : IEffectiveDepth
{
/// <summary>
/// Width of cross-section
/// </summary>
double WebWidth { get; set; }
/// <summary>
/// Coordinate of start of inclined cross-section
/// </summary>
double StartCoord { get; set; }
/// <summary>
/// Coordinate of end of inclined cross-section
/// </summary>
double EndCoord { get; set; }
}
}