Click or drag to resize

UserIsoLinessolve Method

retrieve stream lines

Namespace:  Karamba.Results
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void solve(
	Model model,
	List<double> in_vals,
	List<Line3> lines,
	double dLtol,
	bool smooth,
	int max_iter,
	out List<List<List<PolyLine3>>> iso_lines,
	out List<List<double>> iso_values
)

Parameters

model
Type: Karamba.ModelsModel
model with calculated displacements
in_vals
Type: System.Collections.GenericListDouble
values for all nodes of the model that define the field for computing iso-lines
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
smooth
Type: SystemBoolean
if true splines are ouput as isolines otherwise straight lines that lie exactly on the mesh.
max_iter
Type: SystemInt32
maximum number of iterations for constructing a principal moment line from vertex values
iso_lines
Type: System.Collections.GenericListListListPolyLine3
resulting iso-lines
iso_values
Type: System.Collections.GenericListListDouble
values corresponding to the iso-lines
See Also