Ignore:
Timestamp:
08/31/20 14:54:17 (5 years ago)
Author:
jdquinn
Message:

CHG: Committing changes in support of test2004.py (no longer failing, but still need to track down sources of large errors)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/geometry/GetAreas3DTria.m

    r19311 r25499  
    22%GETAREAS3DTRIA - compute areas of triangles with 3D coordinates
    33%
    4 %   compute areas of trianguls with 3D coordinates
     4%   Compute areas of triangles with 3D coordinates
    55%
    66%   Usage:
    7 %      areas  =GetAreas3DTria(index,x,y,z);
     7%      areas=GetAreas3DTria(index,x,y,z);
    88%
    99%   Examples:
    10 %      areas  =GetAreas3DTria(md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.z);
     10%      areas=GetAreas3DTria(md.mesh.elements,md.mesh.x,md.mesh.y,md.mesh.z);
    1111
    1212%get number of elements and number of nodes
    13 nels=size(index,1); 
    14 nods=length(x); 
     13nels=size(index,1);
     14nods=length(x);
    1515
    1616%some checks
    1717if nargout~=1 | (nargin~=3 & nargin~=4),
    1818        help GetAreas3DTria
    19         error('GetAreas error message: bad usage')
     19        error('GetAreas3DTria error message: bad usage')
    2020end
    2121if ((length(y)~=nods) | (nargin==4 & length(z)~=nods)),
    22         error('GetAreas3DTria error message: x,y and z do not have the same length')
     22        error('GetAreas3DTria error message: x, y, and z do not have the same length')
    2323end
     24
    2425if max(index(:))>nods,
    2526        error(['GetAreas3DTria error message: index should not have values above ' num2str(nods) ])
    2627end
    2728if (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')
    2930end
    3031
     
    3738%compute the volume of each element
    3839if 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
     47end
Note: See TracChangeset for help on using the changeset viewer.