Click or drag to resize

ShellForcesLocalsolve Method

Retrieve section forces of the shell patches defined via element identifiers for a given load-case

Namespace:  Karamba.Results
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void solve(
	Model model,
	List<string> elem_ids,
	int lc_num,
	out List<List<double>> nxx,
	out List<List<double>> nyy,
	out List<List<double>> nxy,
	out List<List<double>> mxx,
	out List<List<double>> myy,
	out List<List<double>> mxy,
	out List<List<double>> vx,
	out List<List<double>> vy
)

Parameters

model
Type: Karamba.ModelsModel
Model with calculated displacements
elem_ids
Type: System.Collections.GenericListString
List of identifiers of shells for which to retrieve section forces. If no identifiers are given all shells are included
lc_num
Type: SystemInt32
Index of loadcase for which to retrieve results
nxx
Type: System.Collections.GenericListListDouble
Distributed normal force [kN/m] on x=const in x-direction
nyy
Type: System.Collections.GenericListListDouble
Distributed normal force [kN/m] on y=const in y-direction
nxy
Type: System.Collections.GenericListListDouble
Distributed normal force [kN/m] on x=const in y-direction
mxx
Type: System.Collections.GenericListListDouble
Distributed bending moment [kNm/m] on x=const producing stresses in x-direction
myy
Type: System.Collections.GenericListListDouble
Distributed bending moment [kNm/m] on y=const producing stresses in y-direction
mxy
Type: System.Collections.GenericListListDouble
Distributed bending moment [kNm/m] on x=const producing shear stresses in y-direction and vice versa
vx
Type: System.Collections.GenericListListDouble
Transverse shear in section local x=xonst
vy
Type: System.Collections.GenericListListDouble
Transverse shear in section local y=xonst
See Also