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

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
/// <summary>
/// Implement properties for shear beam load
/// </summary>
public interface IBeamSpanLoad : IAction
{
/// <summary>
/// Value of level where action is applyied at, 0.5 is top surface of beam, -0.5 is bottom surface of beam
/// </summary>
double RelativeLoadLevel { get; set; }
/// <summary>
/// Ratio of substraction load from total shear force
/// </summary>
double LoadRatio { get; set; }
}
}