Add steel Material
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using StructureHelperCommon.Infrastructures.Enums;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace StructureHelperCommon.Models.Materials.Libraries
|
||||
{
|
||||
public class SteelMaterialLogicOption : ISteelMaterialLogicOption
|
||||
{
|
||||
public List<IMaterialSafetyFactor> SafetyFactors { get; set; }
|
||||
public ILibMaterialEntity MaterialEntity { get; set; }
|
||||
public LimitStates LimitState { get; set; }
|
||||
public CalcTerms CalcTerm { get; set; }
|
||||
public bool WorkInCompression { get; set; } = true;
|
||||
public bool WorkInTension { get; set; } = true;
|
||||
public double MaxPlasticStrainRatio { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user