25 lines
846 B
C#
25 lines
846 B
C#
using StructureHelperCommon.Infrastructures.Enums;
|
|
using System.Collections.Generic;
|
|
|
|
namespace StructureHelperLogics.Models.Calculations.CalculationProperties
|
|
{
|
|
public class CalculationProperty : ICalculationProperty
|
|
{
|
|
public List<IForceCombination> ForceCombinations { get; set; }
|
|
public LimitStates LimitState { get; set; }
|
|
public CalcTerms CalcTerm { get; set; }
|
|
public IIterationProperty IterationProperty { get; }
|
|
|
|
public CalculationProperty()
|
|
{
|
|
ForceCombinations = new List<IForceCombination>
|
|
{
|
|
new ForceCombination()
|
|
};
|
|
LimitState = LimitStates.ULS;
|
|
CalcTerm = CalcTerms.ShortTerm;
|
|
IterationProperty = new IterationProperty() { Accuracy = 0.001d, MaxIterationCount = 100};
|
|
}
|
|
}
|
|
}
|