Effacer les filtres
Effacer les filtres

how to calculate the area of each triangle of the mesh in the pdetool box?

3 vues (au cours des 30 derniers jours)
gui
gui le 4 Août 2016
how to calculate the area of each triangle of the mesh in the pdetool box?

Réponses (2)

KSSV
KSSV le 4 Août 2016
If you have nodal connectivity matrix and coordinates in hand, use the below code:
function A = triarea(p,t)
% TRIAREA: Area of triangles assuming counter-clockwise (CCW) node
% ordering.
%
% P : Nx2 array of XY node co-ordinates
% T : Mx3 array of triangles as indices into P
% A : Mx1 array of triangle areas
% Darren Engwirda - 2007
d12 = p(t(:,2),:)-p(t(:,1),:);
d13 = p(t(:,3),:)-p(t(:,1),:);
A = (d12(:,1).*d13(:,2)-d12(:,2).*d13(:,1));
end % triarea()

Alan Weiss
Alan Weiss le 8 Août 2016
You can use the pdetrg function on the p,e,t representation of the mesh. If you are using the PDEModel framework, use meshToPet to extract the appropriate data structures.
Alan Weiss
MATLAB mathematical toolbox documentation

Community Treasure Hunt

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

Start Hunting!

Translated by