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

@@ -6,11 +6,18 @@ using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
/// <inheritdoc/>
public class InclinedSection : IInclinedSection
{
/// <inheritdoc/>
public double FullDepth { get; set; }
/// <inheritdoc/>
public double EffectiveDepth { get; set; }
/// <inheritdoc/>
public double WebWidth { get; set; }
/// <inheritdoc/>
public double StartCoord { get; set; }
/// <inheritdoc/>
public double EndCoord { get; set; }
}
}