Files
StructureHelper/StructureHelperLogics/Models/BeamShears/IStirrupEffectiveness.cs
2025-07-20 21:45:07 +05:00

32 lines
967 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; }
/// <summary>
/// Minimum ratio of density of stirrup to density of concrete
/// </summary>
double MinimumStirrupRatio { get; set; }
}
}