|
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)
Syntaxpublic 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
)
Public Shared Sub solve (
model As Model,
ret_elem_ids As List(Of String),
ret_lc_id As String,
max_res_dist As Double,
max_res_num As Integer,
<OutAttribute> ByRef N As List(Of List(Of Double)),
<OutAttribute> ByRef V As List(Of List(Of Double)),
<OutAttribute> ByRef M As List(Of List(Of Double))
)
public:
static void solve(
Model^ model,
List<String^>^ ret_elem_ids,
String^ ret_lc_id,
double max_res_dist,
int max_res_num,
[OutAttribute] List<List<double>^>^% N,
[OutAttribute] List<List<double>^>^% V,
[OutAttribute] List<List<double>^>^% M
)
static member solve :
model : Model *
ret_elem_ids : List<string> *
ret_lc_id : string *
max_res_dist : float *
max_res_num : int *
N : List<List<float>> byref *
V : List<List<float>> byref *
M : List<List<float>> byref -> unit
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