Files
StructureHelper/StructureHelperCommon/Models/Forces/BeamShearActions/IBeamShearAxisAction.cs
2025-03-23 21:24:22 +05:00

24 lines
628 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
/// <summary>
/// Implement properties of shear loads on beam
/// </summary>
public interface IBeamShearAxisAction : IAction
{
/// <summary>
/// Internal force at support point
/// </summary>
IFactoredForceTuple SupportForce { get; set; }
/// <summary>
/// Collection of loads which are applyed on beam at its span
/// </summary>
List<IBeamSpanLoad> ShearLoads {get;}
}
}