Node Class

Node of a finite element model.

Definition

Namespace: Karamba.Nodes
Assembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
C#
[SerializableAttribute]
public class Node : CommonObject, ISerializable
Inheritance
Object    CommonObject    Node
Implements
ISerializable

Constructors

Node Initializes a new instance of the Node class. create a new node.
Node(Node) Initializes a new instance of the Node class. Copy constructor of node.
Node(Int32, Point3) Initializes a new instance of the Node class. initialize node with a id-number and a position.
Node(SerializationInfo, StreamingContext) Initializes a new instance of the Node class. Deserialize Node.
Node(Int32, Support, Point3) Initializes a new instance of the Node class. initialize node with a id-number, position and support conditions.

Properties

disp Gets the displacement vector of the node.
pos_disp Gets or sets the displaced position of node.
UserData Gets access to the user-data dictionary.
(Inherited from CommonObject)

Methods

addTo Adds node to feb-model.
Clone Clone the node.
dofIndToString Generate a string representation of a dof.
Equals Determines whether the specified object is equal to the current object.
(Inherited from Object)
Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCode Serves as the default hash function.
(Inherited from Object)
GetObjectData Serializes a Node.
(Overrides CommonObjectGetObjectData(SerializationInfo, StreamingContext))
GetType Gets the Type of the current instance.
(Inherited from Object)
HasUserData Checks whether the object has user-data attached.
(Inherited from CommonObject)
MemberwiseClone Creates a shallow copy of the current Object.
(Inherited from Object)
ToString Returns a string that represents the current object.
(Overrides CommonObjectToString)
Transform transform the position of a node.

Fields

ind index of the node in the model.
is_visible true if the node is to be displayed.
pos initial position of node.

Extension Methods

ContainerType test if object is (a container like) a list or an array.
(Defined by MiniUtil)

See Also