 | APIgetSectionResMoments(String, Int32, Int32, Double, Double, Double) Method |
Get flexural strength of a beam station by calculating neutral axis
REST path: /op/sectioncalc/a/[ID]/[station]/[calcType]/[N]/[Myy]/[Mzz]
REST verb: GET
Namespace: NextFEMapiAssembly: NextFEMapi (in NextFEMapi.dll) Version: 2.6.0.0 (2.6.0.0)
Syntaxpublic string getSectionResMoments(
string ID,
int station,
int calcType,
double N,
double Myy,
double Mzz
)
Public Function getSectionResMoments (
ID As String,
station As Integer,
calcType As Integer,
N As Double,
Myy As Double,
Mzz As Double
) As String
Dim instance As API
Dim ID As String
Dim station As Integer
Dim calcType As Integer
Dim N As Double
Dim Myy As Double
Dim Mzz As Double
Dim returnValue As String
returnValue = instance.getSectionResMoments(ID,
station, calcType, N, Myy, Mzz)
public:
String^ getSectionResMoments(
String^ ID,
int station,
int calcType,
double N,
double Myy,
double Mzz
)
member getSectionResMoments :
ID : string *
station : int *
calcType : int *
N : float *
Myy : float *
Mzz : float -> string
Parameters
- ID String
- ID of the element
- station Int32
- ID of station, from 1 to 5
- calcType Int32
- 0 plastic, 1 elastic, 2 thermal-plastic, 3 thermal-elastic, 4 elastic limit, 5 thermal-elastic limit
- N Double
- Axial force. Positive for tension
- Myy Double
- Moment around vertical section axis
- Mzz Double
- Moment around horizontal section axis
Return Value
StringA string with serialized results in JSON format
See Also