cPropMaterial SetSSCurve Method CSi API ETABS 2015
Sets the material stress-strain curve for materials that are specified to have user-defined stress-strain curves.

Namespace: ETABS2015
Assembly: ETABS2015 (in ETABS2015.dll) Version: 15.0.0.0 (15.0.0.0)
Syntax

int SetSSCurve(
	string Name,
	int NumberPoints,
	ref int[] PointID,
	ref double[] Strain,
	ref double[] Stress,
	double Temp = 0
)

Parameters

Name
Type: OnlineSystem String
The name of an existing material property.
NumberPoints
Type: OnlineSystem Int32
The number of points in the stress-strain curve. This item must be at least 3.
PointID
Type:  OnlineSystem Int32  
This is one of the following integers which sets the point ID. The point ID controls the color that will be displayed for hinges in a deformed shape plot.
ValuePoint ID
-5-E
-4-D
-3-C
-2-B
-1-A
0None
1A
2B
3C
4D
5E

The point IDs must be input in numerically increasing order, except that 0 (None) values are allowed anywhere. No duplicate values are allowed excepth for 0 (None).

Strain
Type:  OnlineSystem Double  
This is an array that includes the strain at each point on the stress strain curve. The strains must increase monotonically.
Stress
Type:  OnlineSystem Double  
This is an array that includes the stress at each point on the stress strain curve. [F/L2]

Points that have a negative strain must have a zero or negative stress. Similarly, points that have a positive strain must have a zero or positive stress.

There must be one point defined that has zero strain and zero stress.

Temp (Optional)
Type: OnlineSystem Double
The temperature at which the specified data applies. The temperature must have been defined previously for the material.

This item applies only if the specified material has properties that are temperature dependent. That is, it applies only if properties are specified for the material at more than one temperature.

Return Value

Returns zero if the data is successfully assigned; otherwise it returns a nonzero value.
Remarks

Examples

See Also