Quantcast
Channel: MATLAB Central Newsreader - tag:"volume"
Viewing all articles
Browse latest Browse all 20

volume of irregular 3D shape convexhull delaunayTriangulation

$
0
0


Hi all,

I want to calculate a volume of an irregular 3D shape. A small description is that this shape lies within the unit cube. It is like a cylinder (its base is like an ellipse but not an ellipse) and it rises up to form a closed 3D surface but on its top you have like an irregular "ceiling", namely its height is not fixed at all x's.

In any case, after playing around I ended up that the code that successfully does that is the one I provide below. My question is whether I can do it faster and if i really need the delaunayTriangulation function. The only reason is that it is very time consuming for the simulation that I want to run and maybe despite of the fact that is useful here, I overkill the problem. My final goal is the volume vmax. I do not provide any data to save space.

Thank you in advance for any answers,

The code follows:

P=[Xmax' Ymax' Zmax'];
P = unique(P,'rows');
DT = delaunayTriangulation(P);
[K,vmax] = convexHull(DT);
trisurf(K,DT.Points(:,1),DT.Points(:,2),DT.Points(:,3),...
       'FaceColor','cyan');

  shading interp
  alpha(0.5)
  box on
vmax; % this is my output

Viewing all articles
Browse latest Browse all 20

Trending Articles