Click or drag to resize

APIgetSectMomentCurvature Method

Get moment-curvature diagram for the selected section
REST path: /op/sectioncalc/momentcurvature/[sectionID]/[N]/[Mzz]/[Myy]/[npts]/[Nserv]/[Mzzserv]/[Myyserv]
REST verb: GET

Namespace: NextFEMapi
Assembly: NextFEMapi (in NextFEMapi.dll) Version: 2.6.0.0 (2.6.0.0)
Syntax
public List<double[]> getSectMomentCurvature(
	int sectionID,
	double N,
	double Mzz,
	double Myy,
	int npts = 20,
	double Nserv = 0,
	double Mzzserv = 0,
	double Myyserv = 0
)

Parameters

sectionID  Int32
ID of the section
N  Double
Axial force. Positive for tension
Mzz  Double
Moment around horizontal section axis
Myy  Double
Moment around vertical section axis
npts  Int32  (Optional)
Optional. Number of curve points. Default 20
Nserv  Double  (Optional)
Optional. Serviceability axial force. Positive for tension
Mzzserv  Double  (Optional)
Optional. Serviceability Mzz
Myyserv  Double  (Optional)
Optional. Serviceability Myy

Return Value

ListDouble
A list of arrays of double (size 2) with resisting moment vs. curvature (1/units of length)
See Also