Extract sum shear force logic

This commit is contained in:
Evgeny Redikultsev
2025-03-22 15:02:20 +05:00
parent b2027f92dd
commit aec85e37f5
20 changed files with 753 additions and 109 deletions

View File

@@ -0,0 +1,17 @@
using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Forces;
namespace StructureHelperLogics.Models.BeamShears
{
/// <summary>
/// Implements logic of calculating shear force without considering term and limit state
/// </summary>
public interface IGetDirectShearForceLogic : ILogic
{
/// <summary>
/// Returns value of shear force at the end of inclined section
/// </summary>
/// <returns>Value of shear force at the end of inclined section</returns>
double CalculateShearForce();
}
}