|
ModelUnitLoadscalculateModelLoads Method
|
Calculate point-loads and distributed element loads from a mesh-load.
Namespace:
Karamba.Loads
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic virtual void calculateModelLoads(
NKDTreeDupli nodes_tree,
double limit_dist,
List<Node> nodes,
List<ModelElement> elems,
IdMapper element_selector
)
Public Overridable Sub calculateModelLoads (
nodes_tree As NKDTreeDupli,
limit_dist As Double,
nodes As List(Of Node),
elems As List(Of ModelElement),
element_selector As IdMapper
)
public:
virtual void calculateModelLoads(
NKDTreeDupli^ nodes_tree,
double limit_dist,
List<Node^>^ nodes,
List<ModelElement^>^ elems,
IdMapper^ element_selector
)
abstract calculateModelLoads :
nodes_tree : NKDTreeDupli *
limit_dist : float *
nodes : List<Node> *
elems : List<ModelElement> *
element_selector : IdMapper -> unit
override calculateModelLoads :
nodes_tree : NKDTreeDupli *
limit_dist : float *
nodes : List<Node> *
elems : List<ModelElement> *
element_selector : IdMapper -> unit
Parameters
- nodes_tree
- Type: NKDTreeDupli
kd tree that contains all nodes of the statical model
that may be loaded. - limit_dist
- Type: SystemDouble
limit distance for distributing the loads from the mesh
on neighboring statical model nodes. - nodes
- Type: System.Collections.GenericListNode
all nodes of the statical model. - elems
- Type: System.Collections.GenericListModelElement
all elements n the statical model. - element_selector
- Type: Karamba.UtilitiesIdMapper
selector that returns element indexes for element identifiers.
See Also