Filter löschen
Filter löschen

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

3 Ansichten (letzte 30 Tage)
gui
gui am 4 Aug. 2016
Beantwortet: Alan Weiss am 8 Aug. 2016
how to calculate the area of each triangle of the mesh in the pdetool box?

Antworten (2)

KSSV
KSSV am 4 Aug. 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 am 8 Aug. 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