|
TransverseShearLinessolve Method
|
retrieve principal moment lines.
Namespace:
Karamba.Results
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static void solve(
Model model,
LCSuperPosition lcSuperImp,
List<Line3> lines,
double dLtol,
double dAtol,
int max_iter,
out List<List<List<Line3>>> shear_lines_res
)
Public Shared Sub solve (
model As Model,
lcSuperImp As LCSuperPosition,
lines As List(Of Line3),
dLtol As Double,
dAtol As Double,
max_iter As Integer,
<OutAttribute> ByRef shear_lines_res As List(Of List(Of List(Of Line3)))
)
public:
static void solve(
Model^ model,
LCSuperPosition^ lcSuperImp,
List<Line3>^ lines,
double dLtol,
double dAtol,
int max_iter,
[OutAttribute] List<List<List<Line3>^>^>^% shear_lines_res
)
static member solve :
model : Model *
lcSuperImp : LCSuperPosition *
lines : List<Line3> *
dLtol : float *
dAtol : float *
max_iter : int *
shear_lines_res : List<List<List<Line3>>> byref -> unit
Parameters
- model
- Type: Karamba.ModelsModel
model with calculated displacements. - lcSuperImp
- Type: Karamba.Loads.CombinationsLCSuperPosition
factors for load-case super imposition. - lines
- Type: System.Collections.GenericListLine3
list of lines that intersect the shell an thus define the source of a principal moment line. - dLtol
- Type: SystemDouble
approximate length of the segments of the principal moment lines. - dAtol
- Type: SystemDouble
approximate maximum angle between the segments of the principal moment lines [rad]. - max_iter
- Type: SystemInt32
maximum number of iterations for constructing a principal moment line from vertex values. - shear_lines_res
- Type: System.Collections.GenericListListListLine3
SHEAR lines. List-structure: Line/branch/segment.
See Also