Extract sum shear force logic
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user