NodeDis.2d | R Documentation |
Calculates global nodal displacements
NodeDis.2d(meshP, REM, ForceV, NodeKnownL)
meshP |
Matrix (2 x n) containing coordinate points of the mesh nodes. |
REM |
Reduced element matrix, returned from function ReducedEM. |
ForceV |
Reduced force vector matrix containing the model load parameters. Returned from function ForceVector. |
NodeKnownL |
data frame with constraint parameters applied to each node in the x and y directions. Formatted for use in reduced element matrix. Generated from ApplyBC function. |
Produces tables with new node coordinates that are produced by the geometry under an applied load.
NodeDis |
Nodal displacement |
GlobalND |
Nodal displacement in the global environment |
data(triMesh) data(load) data(reduc_EM) data(bound) meshP = triMesh$MeshPts$p REM = reduc_EM ForceV = load NodeKnownL = bound displacN = NodeDis.2d(meshP, REM, ForceV, NodeKnownL)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.