Add steel Material

This commit is contained in:
Evgeny Redikultsev
2025-12-14 17:40:53 +05:00
parent 01cc3947bc
commit 68b15682bb
44 changed files with 1047 additions and 152 deletions

View File

@@ -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; }
}
}