Refactoring of beam shear calculation, add test for beam shea

This commit is contained in:
Evgeny Redikultsev
2025-08-31 17:29:16 +05:00
parent 738ce5c433
commit 5e45be35b1
45 changed files with 923 additions and 302 deletions

View File

@@ -0,0 +1,13 @@
using StructureHelperCommon.Models;
using StructureHelperCommon.Models.Calculators;
namespace StructureHelperLogics.Models.BeamShears
{
public interface IRestrictStirrupCalculator : ILogicCalculator
{
IBeamShearSectionLogicInputData InputData { get; set; }
ISectionEffectiveness SectionEffectiveness { get; set; }
double SourceStirrupStrength { get; set; }
IInclinedSection SourceSection { get; set; }
}
}