Click or drag to resize

BeamResultantForcessolve Method

retrieve largest, resultant section forces along each element for all load-cases.

Namespace:  Karamba.Results
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntax
public static void solve(
	Model model,
	List<string> ret_elem_ids,
	string ret_lc_id,
	double max_res_dist,
	int max_res_num,
	out List<List<double>> N,
	out List<List<double>> V,
	out List<List<double>> M
)

Parameters

model
Type: Karamba.ModelsModel
model with calculated displacements.
ret_elem_ids
Type: System.Collections.GenericListString
list of identifiers of elements for which to retrieve results.
ret_lc_id
Type: SystemString
name of load-case for which to retrieve results. -1 means all load-cases.
max_res_dist
Type: SystemDouble
maximum distance between points where section forces are determined.
max_res_num
Type: SystemInt32
maximum number of points where section forces are determined. Can be overruled by max_res_dist.
N
Type: System.Collections.GenericListListDouble
Largest absolute normal force along beam. List structure: load-case/element.
V
Type: System.Collections.GenericListListDouble
Largest resultant shear force along beam. List structure: load-case/element.
M
Type: System.Collections.GenericListListDouble
Largest resultant bending moment along beam. List structure: load-case/element.
See Also