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