|
Utilizationsolve Method
|
Retrieves the utilization of elements.
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,
int ret_lc_ind,
int res_num,
bool elast_design,
double gamma_m0,
double gamma_m1,
bool with_details,
out UtilizationResults model_util,
out string msg
)
Public Shared Sub solve (
model As Model,
ret_elem_ids As List(Of String),
ret_lc_ind As Integer,
res_num As Integer,
elast_design As Boolean,
gamma_m0 As Double,
gamma_m1 As Double,
with_details As Boolean,
<OutAttribute> ByRef model_util As UtilizationResults,
<OutAttribute> ByRef msg As String
)
public:
static void solve(
Model^ model,
List<String^>^ ret_elem_ids,
int ret_lc_ind,
int res_num,
bool elast_design,
double gamma_m0,
double gamma_m1,
bool with_details,
[OutAttribute] UtilizationResults^% model_util,
[OutAttribute] String^% msg
)
static member solve :
model : Model *
ret_elem_ids : List<string> *
ret_lc_ind : int *
res_num : int *
elast_design : bool *
gamma_m0 : float *
gamma_m1 : float *
with_details : bool *
model_util : UtilizationResults byref *
msg : string 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_ind
- Type: SystemInt32
index of load-case for which to retrieve results. -1 means all load-cases. - res_num
- Type: SystemInt32
number of points where section forces are determined. - elast_design
- Type: SystemBoolean
if true cross section design is elastic otherwise plastic. - gamma_m0
- Type: SystemDouble
partial safety factor for material in case failure is not induced by buckling. - gamma_m1
- Type: SystemDouble
partial safety factor for material in case the failure may be induced by buckling. - with_details
- Type: SystemBoolean
if true details regarding intermediate values are gathers in the UtilizationResults. - model_util
- Type: Karamba.ResultsUtilizationResults
utilization of each element and intermediate values of the design calculation. - msg
- Type: SystemString
contains warnings.
See Also