19 lines
567 B
C#
19 lines
567 B
C#
using StructureHelperCommon.Infrastructures.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperCommon.Models.Materials.Libraries
|
|
{
|
|
public interface IMaterialSafetyFactor : ICloneable
|
|
{
|
|
string Name { get; set; }
|
|
bool Take { get; set; }
|
|
string Description { get; set; }
|
|
List<IMaterialPartialFactor> PartialFactors { get; }
|
|
double GetFactor(StressStates stressState, CalcTerms calcTerm, LimitStates limitStates);
|
|
}
|
|
}
|