 | APIgetSectionResMoments(String, String, Int32, Double, Double, Double) Method |
Get flexural strength of a section by calculating neutral axis
REST path: /op/sectioncalc/b/[sectionID]/[materialID]/[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 sectionID,
string materialID,
int calcType,
double N,
double Myy,
double Mzz
)
Public Function getSectionResMoments (
sectionID As String,
materialID As String,
calcType As Integer,
N As Double,
Myy As Double,
Mzz As Double
) As String
Dim instance As API
Dim sectionID As String
Dim materialID As String
Dim calcType As Integer
Dim N As Double
Dim Myy As Double
Dim Mzz As Double
Dim returnValue As String
returnValue = instance.getSectionResMoments(sectionID,
materialID, calcType, N, Myy, Mzz)
public:
String^ getSectionResMoments(
String^ sectionID,
String^ materialID,
int calcType,
double N,
double Myy,
double Mzz
)
member getSectionResMoments :
sectionID : string *
materialID : string *
calcType : int *
N : float *
Myy : float *
Mzz : float -> string
Parameters
- sectionID String
- ID of the section
- materialID String
- ID of material
- 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 in JSON format
See Also