|
BeamDisplacementssolve Method (Model, ListString, ListGuid, String, ListDouble, 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)
Syntaxpublic static void solve(
Model modelIn,
List<string> retElemIds,
List<Guid> retElemGuids,
string retLcId,
List<double> ts,
out List<List<List<Vector3>>> trans,
out List<List<List<Vector3>>> rot
)
Public Shared Sub solve (
modelIn As Model,
retElemIds As List(Of String),
retElemGuids As List(Of Guid),
retLcId As String,
ts As List(Of Double),
<OutAttribute> ByRef trans As List(Of List(Of List(Of Vector3))),
<OutAttribute> ByRef rot As List(Of List(Of List(Of Vector3)))
)
public:
static void solve(
Model^ modelIn,
List<String^>^ retElemIds,
List<Guid>^ retElemGuids,
String^ retLcId,
List<double>^ ts,
[OutAttribute] List<List<List<Vector3>^>^>^% trans,
[OutAttribute] List<List<List<Vector3>^>^>^% rot
)
static member solve :
modelIn : Model *
retElemIds : List<string> *
retElemGuids : List<Guid> *
retLcId : string *
ts : List<float> *
trans : List<List<List<Vector3>>> byref *
rot : List<List<List<Vector3>>> byref -> unit
Parameters
- modelIn
- Type: Karamba.ModelsModel
model from which to retrieve displacements/rotations. - retElemIds
- Type: System.Collections.GenericListString
list of identifiers of elements for which to retrieve results. - retElemGuids
- Type: System.Collections.GenericListGuid
list of guids of elements for which to retrieve results. - retLcId
- Type: SystemString
name of load-case for which to retrieve results. -1 means all load-cases. - ts
- Type: System.Collections.GenericListDouble
parameter values 0 smaller than t smaller than 1, where to retrieve results (on beams). - 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