|
ModelElementresultantCroSecForces Method
|
calculates resultant normal force (N), shear force (V) and moment (M) in an element.
Namespace:
Karamba.Elements
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic virtual void resultantCroSecForces(
Model model,
LCSuperPosition lc_super_pos,
out double N,
out double V,
out double M
)
Public Overridable Sub resultantCroSecForces (
model As Model,
lc_super_pos As LCSuperPosition,
<OutAttribute> ByRef N As Double,
<OutAttribute> ByRef V As Double,
<OutAttribute> ByRef M As Double
)
public:
virtual void resultantCroSecForces(
Model^ model,
LCSuperPosition^ lc_super_pos,
[OutAttribute] double% N,
[OutAttribute] double% V,
[OutAttribute] double% M
)
abstract resultantCroSecForces :
model : Model *
lc_super_pos : LCSuperPosition *
N : float byref *
V : float byref *
M : float byref -> unit
override resultantCroSecForces :
model : Model *
lc_super_pos : LCSuperPosition *
N : float byref *
V : float byref *
M : float byref -> unit
Parameters
- model
- Type: Karamba.ModelsModel
model which contains the element. - lc_super_pos
- Type: Karamba.Loads.CombinationsLCSuperPosition
factors for load-case super imposition. - N
- Type: SystemDouble
resultant normal force. - V
- Type: SystemDouble
resultant shear force. - M
- Type: SystemDouble
resultant moment.
See Also