Add steel Material
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace StructureHelperCommon.Models.Materials.Libraries
|
||||
{
|
||||
public interface ISteelDiagramAbsoluteProperty : ISteelDiagramProperty
|
||||
{
|
||||
/// <summary>
|
||||
/// Initial modulus of elasticity (Young's modulus), Pa
|
||||
/// </summary>
|
||||
double InitialYoungsModulus { get; set; }
|
||||
/// <summary>
|
||||
/// Stress of yelding, Pa
|
||||
/// </summary>
|
||||
double BaseStrength { get; set; }
|
||||
/// <summary>
|
||||
/// Stress at point of limit of proportionality, Pa
|
||||
/// </summary>
|
||||
double StressOfProportionality { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user