Effacer les filtres
Effacer les filtres

How to create marching triangulation or advance front mesh in Matlab ??

5 vues (au cours des 30 derniers jours)
Ramesh Bala
Ramesh Bala le 27 Juil 2018
Commenté : KSSV le 1 Août 2018
I have used delauney triangulation method in a grid (which created ortho trias)
I would like to know how to create marching trias/advancing trias ?
This is the code created for a small mesh grid
It creates two figures one with triangular mesh another with just grid points.
How to create marching trias for figure (2)
clc
close all
[X,Y]= meshgrid(1:11);
figure; hold on;
plot(X,Y,'k');
plot(Y,X,'k');axis off
grid on
tri = delaunay(X,Y);
figure(1)
trimesh(tri,X,Y)
figure(2)
plot(X,Y,'.')

Réponse acceptée

KSSV
KSSV le 27 Juil 2018
  3 commentaires
Ramesh Bala
Ramesh Bala le 1 Août 2018
gone through it ,most seems to be for structured applications. It's there for unstruc too ,but the grid need to be unstruc for the process to follow.
KSSV
KSSV le 1 Août 2018
That code generates unstructured mesh.

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by