Connect 4 nodes with lines and color the created area
4 views (last 30 days)
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;
0 Comments
Accepted Answer
Jordan Ross
on 10 Jan 2017
Hello,
As I understand, you are wanting to plot a figure with four nodes and want the area of the polygon to have a different color from a colorbar based on a stress value.
I believe what you are looking for is the "patch" function. Please see the following documentation page which contains an example under the subsection "Different Polygon Face Colors": http://www.mathworks.com/help/matlab/ref/patch.html
More Answers (0)
See Also
Categories
Find more on Colorbar 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!