Connect 4 nodes with lines and color the created area
Show older comments
I have 2 elements which are based on 4 nodes. How can I connect these nodes to create a rectangle. This rectangle area has a specific value(strain) how can I plot this area with a colorbar, like a typical FEM picuture?
clc; clear all;
%undeformed Node coordinates
N1 = [-1;-1];
N2 = [1;-1];
N3 = [1;1];
N4 = [-1;1];
%deformed Node coordinates
N1d = [2;1];
N2d = [3;1];
N3d = [4;3];
N4d = [1;3];
strainxx = 20;
strainyy = 39;
Accepted Answer
More Answers (0)
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!