|
FactoryAlgorithmsAnalyzeThI Method
|
Calculate a models mechanical response using first order theory.
Namespace:
Karamba.Factories
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic virtual Model AnalyzeThI(
Model model,
out List<double> maxDisplacement,
out List<double> gravityForce,
out List<double> elasticEnergy,
out string warning
)
Public Overridable Function AnalyzeThI (
model As Model,
<OutAttribute> ByRef maxDisplacement As List(Of Double),
<OutAttribute> ByRef gravityForce As List(Of Double),
<OutAttribute> ByRef elasticEnergy As List(Of Double),
<OutAttribute> ByRef warning As String
) As Model
public:
virtual Model^ AnalyzeThI(
Model^ model,
[OutAttribute] List<double>^% maxDisplacement,
[OutAttribute] List<double>^% gravityForce,
[OutAttribute] List<double>^% elasticEnergy,
[OutAttribute] String^% warning
)
abstract AnalyzeThI :
model : Model *
maxDisplacement : List<float> byref *
gravityForce : List<float> byref *
elasticEnergy : List<float> byref *
warning : string byref -> Model
override AnalyzeThI :
model : Model *
maxDisplacement : List<float> byref *
gravityForce : List<float> byref *
elasticEnergy : List<float> byref *
warning : string byref -> Model Parameters
- model
- Type: Karamba.ModelsModel
Model to be analyzed. - maxDisplacement
- Type: System.Collections.GenericListDouble
Maximum displacement for each load case. - gravityForce
- Type: System.Collections.GenericListDouble
Resultant gravity force for each load-case. - elasticEnergy
- Type: System.Collections.GenericListDouble
Internal elastic energy for each load-case. - warning
- Type: SystemString
Warning regarding the solution process or empty string.
Return Value
Type:
ModelModel with calculated mechanical response.
See Also