Changeset 25499 for issm/trunk-jpl/src/m/geometry/GetAreas3DTria.m
- Timestamp:
- 08/31/20 14:54:17 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/geometry/GetAreas3DTria.m
r19311 r25499 2 2 %GETAREAS3DTRIA - compute areas of triangles with 3D coordinates 3 3 % 4 % compute areas of trianguls with 3D coordinates4 % Compute areas of triangles with 3D coordinates 5 5 % 6 6 % Usage: 7 % areas 7 % areas=GetAreas3DTria(index,x,y,z); 8 8 % 9 9 % Examples: 10 % areas 10 % areas=GetAreas3DTria(md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.z); 11 11 12 12 %get number of elements and number of nodes 13 nels=size(index,1); 14 nods=length(x); 13 nels=size(index,1); 14 nods=length(x); 15 15 16 16 %some checks 17 17 if nargout~=1 | (nargin~=3 & nargin~=4), 18 18 help GetAreas3DTria 19 error('GetAreas error message: bad usage')19 error('GetAreas3DTria error message: bad usage') 20 20 end 21 21 if ((length(y)~=nods) | (nargin==4 & length(z)~=nods)), 22 error('GetAreas3DTria error message: x, yand z do not have the same length')22 error('GetAreas3DTria error message: x, y, and z do not have the same length') 23 23 end 24 24 25 if max(index(:))>nods, 25 26 error(['GetAreas3DTria error message: index should not have values above ' num2str(nods) ]) 26 27 end 27 28 if (nargin==4 & size(index,2)~=3), 28 error('GetAreas3DTria error message: index should have 3 columns for 2d meshes .')29 error('GetAreas3DTria error message: index should have 3 columns for 2d meshes') 29 30 end 30 31 … … 37 38 %compute the volume of each element 38 39 if nargin==4, 39 % area of triangles with 3D coordinats 40 for j=1:nels 41 m1=[x1(j) x2(j) x3(j); y1(j) y2(j) y3(j); 1 1 1]; 42 m2=[y1(j) y2(j) y3(j); z1(j) z2(j) z3(j); 1 1 1]; 43 m3=[z1(j) z2(j) z3(j); x1(j) x2(j) x3(j); 1 1 1]; 44 areas(j)=sqrt(det(m1)^2 + det(m2)^2 + det(m3)^2)/2; 45 end 46 end 47 48 40 % area of triangles with 3D coordinates 41 for i=1:nels 42 m1=[x1(i) x2(i) x3(i); y1(i) y2(i) y3(i); 1 1 1]; 43 m2=[y1(i) y2(i) y3(i); z1(i) z2(i) z3(i); 1 1 1]; 44 m3=[z1(i) z2(i) z3(i); x1(i) x2(i) x3(i); 1 1 1]; 45 areas(i)=sqrt(det(m1)^2 + det(m2)^2 + det(m3)^2)/2; 46 end 47 end
Note:
See TracChangeset
for help on using the changeset viewer.