Interface IExplicitStressStrainCurve
Namespace: Oasys.AdSec.Materials.StressStrainCurves
Assembly: cs.temp.dll.dll
Syntax
public interface IExplicitStressStrainCurve : IStressStrainCurve
Examples
Properties
Points
The stress-strain points.
Declaration
IList<IStressStrainPoint> Points { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<IStressStrainPoint> |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the first point in the stress-strain points list is not a zero stress and zero strain point. |
| System.ArgumentException | When the points in the stress-strain points list are not in the ascending order of the strains. |
| System.ArgumentException | When the stress-strain points list has fewer than two points. |
| System.ArgumentException | When any of the stress-strain inputs is negative or infinite. |
Methods
Create()
Creates a new IExplicitStressStrainCurve.
Declaration
static IExplicitStressStrainCurve Create()
Returns
| Type | Description |
|---|---|
| IExplicitStressStrainCurve | Explicit curve with empty list of stress-strain points (Points). |