Click or drag to resize

BeamDisplacementssolve Method (Model, ListString, String, Double, Int32, ListListListVector3, ListListListVector3)

component for retrieving translational and rotational displacements on elements.

Namespace:  Karamba.Results
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntax
public static void solve(
	Model model_in,
	List<string> ret_elem_ids,
	string ret_lc_id,
	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_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 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