|
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: 1.0.0.0 (1.0.0.0)
Syntaxpublic virtual void resultantCroSecForces(
Model model,
int loadcase,
out double N,
out double V,
out double M
)
Public Overridable Sub resultantCroSecForces (
model As Model,
loadcase As Integer,
<OutAttribute> ByRef N As Double,
<OutAttribute> ByRef V As Double,
<OutAttribute> ByRef M As Double
)
public:
virtual void resultantCroSecForces(
Model^ model,
int loadcase,
[OutAttribute] double% N,
[OutAttribute] double% V,
[OutAttribute] double% M
)
abstract resultantCroSecForces :
model : Model *
loadcase : int *
N : float byref *
V : float byref *
M : float byref -> unit
override resultantCroSecForces :
model : Model *
loadcase : int *
N : float byref *
V : float byref *
M : float byref -> unit
Parameters
- model
- Type: Karamba.ModelsModel
model which contains the element - loadcase
- Type: SystemInt32
zero based index of load case to be considered - N
- Type: SystemDouble
resultant normal force - V
- Type: SystemDouble
resultant shear force - M
- Type: SystemDouble
resultant moment
See Also