Add stirrup update strategy
This commit is contained in:
21
StructureHelperCommon/Models/Forces/IDistributedLoad.cs
Normal file
21
StructureHelperCommon/Models/Forces/IDistributedLoad.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace StructureHelperCommon.Models.Forces
|
||||
{
|
||||
/// <summary>
|
||||
/// Implement properties of
|
||||
/// </summary>
|
||||
public interface IDistributedLoad : IBeamSpanLoad
|
||||
{
|
||||
/// <summary>
|
||||
/// Value of uniformly distributed load, N/m
|
||||
/// </summary>
|
||||
double LoadValue { get; set; }
|
||||
/// <summary>
|
||||
/// Coordinate of start of load, m
|
||||
/// </summary>
|
||||
double StartCoordinate { get; set; }
|
||||
/// <summary>
|
||||
/// Coordinate of end of load, m
|
||||
/// </summary>
|
||||
double EndCoordinate { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user