Add ForceCombinationPropertyUserControl
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
using StructureHelperCommon.Infrastructures.Enums;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Models.Forces
|
||||
{
|
||||
/// <summary>
|
||||
/// Properties of factored combination of forces
|
||||
/// </summary>
|
||||
public interface IFactoredCombinationProperty
|
||||
{
|
||||
/// <summary>
|
||||
/// Term of calculation for assigned combination
|
||||
/// </summary>
|
||||
CalcTerms CalcTerm { get; set; }
|
||||
/// <summary>
|
||||
/// Limit state for assigned combination
|
||||
/// </summary>
|
||||
LimitStates LimitState { get; set; }
|
||||
/// <summary>
|
||||
/// Factor of converting of short term load to long term load
|
||||
/// </summary>
|
||||
double LongTermFactor { get; set; }
|
||||
/// <summary>
|
||||
/// Factor of converting serviceability state load to ultimate limit state load
|
||||
/// </summary>
|
||||
double ULSFactor { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user