Files
StructureHelper/StructureHelperLogics/Models/BeamShears/IStirrupEffectiveness.cs
Evgeny Redikultsev f60d031f91 Add beam section logic
2025-02-09 17:28:33 +05:00

28 lines
802 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
/// <summary>
/// Properties of stirrups effectiveness
/// </summary>
public interface IStirrupEffectiveness
{
/// <summary>
/// Ratio of maximum crack length to effective depth
/// </summary>
double MaxCrackLengthRatio { get; set; }
/// <summary>
/// Factor of effectiveness due to non-rectangle shape of stirrup
/// </summary>
double StirrupShapeFactor { get; set; }
/// <summary>
/// Factor of difference between real and uniform distribution
/// </summary>
double StirrupPlacementFactor { get; set; }
}
}