Add beam shear calculator view

This commit is contained in:
Evgeny Redikultsev
2025-03-29 21:45:49 +05:00
parent 15bb7030cc
commit a0a25f183a
71 changed files with 969 additions and 472 deletions

View File

@@ -0,0 +1,32 @@
using StructureHelperLogics.Models.Materials;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
/// <summary>
/// Implement properties for uniformly distributed stirrups
/// </summary>
public interface IStirrupByRebar : IStirrup
{
/// <summary>
/// Material of stirrups
/// </summary>
IReinforcementLibMaterial Material { get; set; }
/// <summary>
/// Count of legs of stirrup in specific cross-section
/// </summary>
double LegCount { get; set; }
/// <summary>
/// Diameter of stirrup, m
/// </summary>
double Diameter { get; set; }
/// <summary>
/// Step of uniformly distibuted stirrup along axis of beam, m
/// </summary>
double Spacing { get; set; }
}
}