Add stirrup update strategy

This commit is contained in:
Evgeny Redikultsev
2025-03-23 21:24:22 +05:00
parent aec85e37f5
commit 15bb7030cc
44 changed files with 524 additions and 107 deletions

View File

@@ -12,16 +12,12 @@ namespace StructureHelperCommon.Models.Forces
public interface IBeamShearAxisAction : IAction
{
/// <summary>
/// Shear force at support point, N
/// Internal force at support point
/// </summary>
double SupportShearForce { get; set; }
/// <summary>
/// Properties of combination of forces
/// </summary>
IFactoredCombinationProperty FactoredCombinationProperty { get; }
IFactoredForceTuple SupportForce { get; set; }
/// <summary>
/// Collection of loads which are applyed on beam at its span
/// </summary>
List<IBeamShearLoad> ShearLoads {get;}
List<IBeamSpanLoad> ShearLoads {get;}
}
}