using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperCommon.Models.Materials.Libraries
{
public interface ISteelDiagramAbsoluteProperty : ISteelDiagramProperty
{
///
/// Initial modulus of elasticity (Young's modulus), Pa
///
double InitialYoungsModulus { get; set; }
///
/// Stress of yelding, Pa
///
double BaseStrength { get; set; }
///
/// Stress at point of limit of proportionality, Pa
///
double StressOfProportionality { get; set; }
}
}