NodeDisplacementssolve Method
retrieve nodal displacements.
Namespace: Karamba.ResultsAssembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
public static void solve(
Model model,
string resultSelection,
List<int> nodeIndexes,
out List<List<Vector3>> trans,
out List<List<Vector3>> rotat,
out List<List<LoadCase>> governingLoadCases,
out List<List<int>> governingLoadCaseInds,
out List<Point3> positions
)
Public Shared Sub solve (
model As Model,
resultSelection As String,
nodeIndexes As List(Of Integer),
<OutAttribute> ByRef trans As List(Of List(Of Vector3)),
<OutAttribute> ByRef rotat As List(Of List(Of Vector3)),
<OutAttribute> ByRef governingLoadCases As List(Of List(Of LoadCase)),
<OutAttribute> ByRef governingLoadCaseInds As List(Of List(Of Integer)),
<OutAttribute> ByRef positions As List(Of Point3)
)
public:
static void solve(
Model^ model,
String^ resultSelection,
List<int>^ nodeIndexes,
[OutAttribute] List<List<Vector3>^>^% trans,
[OutAttribute] List<List<Vector3>^>^% rotat,
[OutAttribute] List<List<LoadCase^>^>^% governingLoadCases,
[OutAttribute] List<List<int>^>^% governingLoadCaseInds,
[OutAttribute] List<Point3>^% positions
)
static member solve :
model : Model *
resultSelection : string *
nodeIndexes : List<int> *
trans : List<List<Vector3>> byref *
rotat : List<List<Vector3>> byref *
governingLoadCases : List<List<LoadCase>> byref *
governingLoadCaseInds : List<List<int>> byref *
positions : List<Point3> byref -> unit
Parameters
- model Model
- Model with calculated displacements.
- resultSelection String
- name of load-case for which to retrieve the support reactions.
- nodeIndexes ListInt32
- List of indexes of nodes for which to get results. If empty then the displacements of all nodes are retrieved.
- trans ListListVector3
- nodal translations. List-structure: node/min-max result.
- rotat ListListVector3
- nodal rotations. List-structure: node/min-max result.
- governingLoadCases ListListLoadCase
- list of governing load cases. Null in case of non-unique load case.
- governingLoadCaseInds ListListInt32
- list of governing load case indexes.'-1' in case of non-unique load case.
- positions ListPoint3
- positions of the displacement results.