|
DeformEnergysolve Method (Model, String, ListString, ListListListDouble, ListListListDouble)
|
Retrieves axial- and bending-energy of elements.
Namespace:
Karamba.Results
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static void solve(
Model modelIn,
string lcId,
List<string> retElemIds,
out List<List<List<double>>> axialDefEnergy,
out List<List<List<double>>> bendingDefEnergy
)
Public Shared Sub solve (
modelIn As Model,
lcId As String,
retElemIds As List(Of String),
<OutAttribute> ByRef axialDefEnergy As List(Of List(Of List(Of Double))),
<OutAttribute> ByRef bendingDefEnergy As List(Of List(Of List(Of Double)))
)
public:
static void solve(
Model^ modelIn,
String^ lcId,
List<String^>^ retElemIds,
[OutAttribute] List<List<List<double>^>^>^% axialDefEnergy,
[OutAttribute] List<List<List<double>^>^>^% bendingDefEnergy
)
static member solve :
modelIn : Model *
lcId : string *
retElemIds : List<string> *
axialDefEnergy : List<List<List<float>>> byref *
bendingDefEnergy : List<List<List<float>>> byref -> unit
Parameters
- modelIn
- Type: Karamba.ModelsModel
model from which to retrieve axial- and bending energies. - lcId
- Type: SystemString
identifier of load-case for which to retrieve the internal energies. - retElemIds
- Type: System.Collections.GenericListString
list of identifiers of elements for which to retrieve results. - axialDefEnergy
- Type: System.Collections.GenericListListListDouble
axial deformation energy. List structure: list-structure: load case, element, energy. - bendingDefEnergy
- Type: System.Collections.GenericListListListDouble
bending energy. List structure: list-structure: load case, element, sub-element, energy.
See Also