Hello guys,
Sorry I've taken so long to respond to this thread. What I'm exactly looking for is the area of an element on a face. So what I have is quadrilateral element shapes. Is there a way to measure the area of a quadrilateral on a face?
Even if I was able get the correct distances from 1 node to the next then I could use the four distances and the formula of:
Area = Square Root of{(s-a)(s-b)(s-c)(s-d) -1/4(ac+bd+pq)(ac+bd-pq)}
where a,b,c and d are the four sides of the quadrilateral with a and c and b and d as the opposite sides, p and q are diagonals, and s = (a+b+c+d)/2
Example;
If a quadrilateral has four sides a,b,c,d, where a is the opposite side of c, and b is the opposite side of d, and their lengths are:
a=30, b=31, c=22, d=28 and the two diagonals are: p=34 and q=43, then the area of this quadrilateral is:
calculate semiperimeter (s) = (a+b+c+d)/2= 111/2 = 55.5
area is:
square root of {(55.5-30)(55.5-31)(55.5-22)(55.5-28)-1/4(30*22+31*28+34*43)(30*22+31*28-34*43)}
= Square root of {(25.5*24.5*33.5*27.5) - 1/4(660+868 +1462)(660+868-1462)}
=square root of {575550.94 - 1/4(2990)(66)}
=square root of {575550.94 - 1/4(197340)}
=square root of{575550.94 - 49335)}
=square root of {526215.94}
=725.41
But as I have over 192 elements this will be very time consuming