View source: R/SurfaceTraction.2d.R
SurfaceTraction.2d | R Documentation |
Element Surface Traction - generates the column matrix for uniformly distributed surface traction. If surface traction is not present, assign SFTensile and SFShear a value of 0.
SurfaceTraction.2d(meshP, SFTensile, SFShear, Length, Thick, area)
meshP |
Matrix (2 x n) containing coordinate points of the mesh nodes. |
SFTensile |
Magnitude of tensile surface traction |
SFShear |
Magnitude of positive shear traction |
Length |
Truss length |
Thick |
Triangle element thickness |
area |
Triangle element area |
List of element matrices containing surface forces.
SurfT |
List of surface forces for each element. |
data(triMesh) data(dime) meshP = triMesh$MeshPts$p SFShear = 0 SFTensile = 0 Thick = 0.001 Length = dime$TrussLength area = dime$Area SurfTrac = SurfaceTraction.2d(meshP, SFTensile, SFShear, Length, Thick, area)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.