Interface ILinearStressStrainCurve
A type of IStressStrainCurve in which the stress is directly proportional to the strain. The material provides no strength beyond the failure point.
Namespace: Oasys.AdSec.Materials.StressStrainCurves
Assembly: cs.temp.dll.dll
Syntax
public interface ILinearStressStrainCurve : IStressStrainCurve
Properties
FailurePoint
The point at which the material fails.
Declaration
IStressStrainPoint FailurePoint { get; }
Property Value
| Type | Description |
|---|---|
| IStressStrainPoint |
Methods
Create(IStressStrainPoint)
Creates a new ILinearStressStrainCurve.
Declaration
static ILinearStressStrainCurve Create(IStressStrainPoint failurePoint)
Parameters
| Type | Name | Description |
|---|---|---|
| IStressStrainPoint | failurePoint | The point at which the material fails. |
Returns
| Type | Description |
|---|---|
| ILinearStressStrainCurve |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When any of the stress-strain inputs is negative or infinite. |