Add beam section logic

This commit is contained in:
Evgeny Redikultsev
2025-02-09 17:28:33 +05:00
parent 91ccebf147
commit f60d031f91
26 changed files with 701 additions and 63 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
/// <inheritdoc/>
public class StirrupEffectiveness : IStirrupEffectiveness
{
/// <inheritdoc/>
public double MaxCrackLengthRatio { get; set; }
/// <inheritdoc/>
public double StirrupShapeFactor { get; set; }
/// <inheritdoc/>
public double StirrupPlacementFactor { get; set; }
}
}