 | APIgetSectionResShear(Int32, String, Double, Double, Double, Double, Double) Method |
Get section shear resistance
REST path: /op/sectioncalc/shear/[sectionID]/[verName]/[N]/[Myy]/[Mzz]/[Vy]/[Vz]
REST verb: GET
Namespace: NextFEMapiAssembly: NextFEMapi (in NextFEMapi.dll) Version: 2.6.0.0 (2.6.0.0)
Syntaxpublic double[] getSectionResShear(
int sectionID,
string verName,
double N = 0,
double Mzz = 0,
double Myy = 0,
double Vy = 0,
double Vz = 0
)
Public Function getSectionResShear (
sectionID As Integer,
verName As String,
Optional N As Double = 0,
Optional Mzz As Double = 0,
Optional Myy As Double = 0,
Optional Vy As Double = 0,
Optional Vz As Double = 0
) As Double()
Dim instance As API
Dim sectionID As Integer
Dim verName As String
Dim N As Double
Dim Mzz As Double
Dim Myy As Double
Dim Vy As Double
Dim Vz As Double
Dim returnValue As Double()
returnValue = instance.getSectionResShear(sectionID,
verName, N, Mzz, Myy, Vy, Vz)
public:
array<double>^ getSectionResShear(
int sectionID,
String^ verName,
double N = 0,
double Mzz = 0,
double Myy = 0,
double Vy = 0,
double Vz = 0
)
member getSectionResShear :
sectionID : int *
verName : string *
?N : float *
?Mzz : float *
?Myy : float *
?Vy : float *
?Vz : float
(* Defaults:
let _N = defaultArg N 0
let _Mzz = defaultArg Mzz 0
let _Myy = defaultArg Myy 0
let _Vy = defaultArg Vy 0
let _Vz = defaultArg Vz 0
*)
-> float[]
Parameters
- sectionID Int32
- ID of the section
- verName String
- Name of the checking to be used
- N Double (Optional)
- Optional. Axial force. Positive for tension
- Mzz Double (Optional)
- Optional. Moment around vertical section axis
- Myy Double (Optional)
- Optional. Moment around horizontal section axis
- Vy Double (Optional)
- Optional. Shear force in y direction
- Vz Double (Optional)
- Optional. Shear force in z direction
Return Value
DoubleAn array of size 2 with VrdY and VrdZ
See Also