Click or drag to resize

BeamDisplacementssolve Method

component for retrieving translational and rotational displacements on 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_in,
	List<string> ret_elem_ids,
	int ret_lc_ind,
	double max_res_dist,
	int results_n,
	out List<List<List<Vector3>>> trans,
	out List<List<List<Vector3>>> rot
)

Parameters

model_in
Type: Karamba.ModelsModel
model from which to retrieve displacements/rotations
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 results (on beams). Gets stored in the models preview properties.
results_n
Type: SystemInt32
maximum number of results. Gets stored in the models preview properties.
trans
Type: System.Collections.GenericListListListVector3
translational displacements: list-structure: load case, element, state
rot
Type: System.Collections.GenericListListListVector3
rotational displacements: list-structure: load case, element, state
See Also