Click or drag to resize

Bucklingsolve Method

calculate buckling-modes.

Namespace:  Karamba.Algorithms
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntax
public static void solve(
	Model in_model,
	int from_shape_ind,
	int shapes_num,
	int max_iter,
	double eps,
	int sign,
	out List<double> load_factors,
	out Model model,
	out string msg
)

Parameters

in_model
Type: Karamba.ModelsModel
model for which eigen-modes shall be calculated.
from_shape_ind
Type: SystemInt32
index of first eigen-mode to be calculated. Numbering starts from one.
shapes_num
Type: SystemInt32
number of modes to be calculated.
max_iter
Type: SystemInt32
maximum number of vector iterations in the Mises procedure.
eps
Type: SystemDouble
convergence criteria for determining the eigenvalues.
sign
Type: SystemInt32
sign of the buckling factors: 1:positive only, -1:negative only, 0:never mind.
load_factors
Type: System.Collections.GenericListDouble
list of buckling load factors for the selected load-case.
model
Type: Karamba.ModelsModel
model with eigen-modes as load-case results.
msg
Type: SystemString
information regarding the solution process or "".
See Also