how to tell apart faces of a 3d geometry for pde model?

2 views (last 30 days)
hello, i created a 3d geometry for my pde model, but it is not so clear what are the faces refering to. is there any way to clearly distinguish them?
thanks
a=25/6; %semi major axis
%generate alphashape
[az,el,r] = meshgrid(linspace(0,2*pi-0.01,60),linspace(-pi,0,60),[0.99,1]);
[x,y,z] = sph2cart(az,el,r);
x=x*a;
y=y*a;
z=z+1;
shp = alphaShape(x(:),y(:),z(:),0.25);
% plot(shp);
%applying the geometry to the model
[elements,nodes] = boundaryFacets(shp);
nodes = nodes';
elements = elements';
model = createpde();
geometryFromMesh(model,nodes,elements);
pdegplot(model,'FaceLabels','on','FaceAlpha',0.5);
  2 Comments
Alan Weiss
Alan Weiss on 22 May 2017
When I tried to create the geometry in MATLAB R2017a using your script, I got the following error:
Failed to create geometry. The stl file is invalid, more than two facets share an edge.
Alan Weiss
MATLAB mathematical toolbox documentation
yonatan s
yonatan s on 22 May 2017
Edited: yonatan s on 22 May 2017
sorry, variable a suppose to be equal to 25/6.

Sign in to comment.

Accepted Answer

Alan Weiss
Alan Weiss on 23 May 2017
Thanks for correcting the description. If you zoom in to an edge near the F3 label, you can see that F3 is the ring that bounds the two spheroidal faces, meaning it is the ring whose width is the thickness of this solid body. F2 represents the upper face (higher Z-coordinate). And F1 is the lower face (lower z-coordinate).
Alan Weiss
MATLAB mathematical toolbox documentation
  1 Comment
yonatan s
yonatan s on 24 May 2017
ok, thank you. i got a weird solution and i wanted to make sure i got the faces right.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!