Add BeamShearCalculator

This commit is contained in:
Evgeny Redikultsev
2025-02-16 17:24:16 +05:00
parent f60d031f91
commit e4a23f5139
39 changed files with 1023 additions and 24 deletions

View File

@@ -7,10 +7,23 @@ 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; }
}
}