| ISlabSequentialLoadingResultsGetTotalDeflectionsAsync Method |
Returns total nodal displacements for an event ID
Namespace: TSD.API.Remoting.SolverAssembly: TSD.API.Remoting (in TSD.API.Remoting.dll) Version: 23.1.0.154
Syntax Task<IEnumerable<INodalDisplacement>> GetTotalDeflectionsAsync(
Guid id,
IEnumerable<int>? indices = null,
CancellationToken cancellationToken = default
)
Function GetTotalDeflectionsAsync (
id As Guid,
Optional indices As IEnumerable(Of Integer) = Nothing,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IEnumerable(Of INodalDisplacement))
Task<IEnumerable<INodalDisplacement^>^>^ GetTotalDeflectionsAsync(
Guid id,
IEnumerable<int>^ indices = nullptr,
CancellationToken cancellationToken = CancellationToken()
)
abstract GetTotalDeflectionsAsync :
id : Guid *
?indices : IEnumerable<int> *
?cancellationToken : CancellationToken
(* Defaults:
let _indices = defaultArg indices null
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<IEnumerable<INodalDisplacement>>
Parameters
- id Guid
- The ID of event to get nodal displacements for
- indices IEnumerableInt32 (Optional)
- The requested INode indices, null to get all
- cancellationToken CancellationToken (Optional)
- The optional cancellation token
Return Value
TaskIEnumerableINodalDisplacementA collection of nodal displacements
See Also