Click or drag to resize

BeamForcessolve Method

retrieve section forces along all elements

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> ret_elem_ids,
	int ret_lc_ind,
	double max_res_dist,
	int max_res_num,
	out List<List<List<List<double>>>> model_state
)

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_ind
Type: SystemInt32
index 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
model_state
Type: System.Collections.GenericListListListListDouble
state of section forces in the model. List-structure: load-case/element/point/force-components
See Also