cPropMaterialGetMPUniaxial Method

Retrieves the mechanical properties for a material with an uniaxial directional symmetry type.

Namespace:  ETABS2016
Assembly:  ETABS2016 (in ETABS2016.dll) Version: 16.0.0.0 (16.0.0.0)
Syntax
int GetMPUniaxial(
	string Name,
	ref double E,
	ref double A,
	double Temp = 0
)

Parameters

Name
Type: SystemString
The name of an existing material property.
E
Type: SystemDouble
A
Type: SystemDouble
Temp (Optional)
Type: SystemDouble
the temperature at which the specified data is to be retrieved. 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

Type: Int32
Returns zero if the data is successfully retrieved; otherwise it returns a nonzero value. The function returns an error if the symmetry type of the specified material is not isotropic.
Remarks
Examples
VB
Public Sub Example()
       Dim SapModel As cSapModel
       Dim EtabsObject As cOAPI
       Dim ret As Integer = -1
       Dim e As Double
       Dim a As Double

   'create ETABS object
       EtabsObject = CreateObject("CSI.ETABS.API.ETABSObject")

   'start ETABS application
       ret = EtabsObject.ApplicationStart()

   'create SapModel object
       SapModel = EtabsObject.SapModel

   'initialize model
       ret = SapModel.InitializeNewModel()

   'create steel deck template model
       ret = SapModel.File.NewSteelDeck(4,12,12,4,4,24,24)

   'initialize new material property
       ret = SapModel.PropMaterial.SetMaterial("Steel", eMatType.Steel)

   'assign isotropic mechanical properties
       ret = SapModel.PropMaterial.SetMPUniaxial("Steel", 29500, 6E-06)

   'get isotropic mechanical properties
       ret = SapModel.PropMaterial.GetMPUniaxial("Steel", e, a)

   'close ETABS
       EtabsObject.ApplicationExit(False)

   'clean up variables
       SapModel = Nothing
       EtabsObject = Nothing
   End Sub
See Also