OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
surf_area.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine surf_area (x, nn, surf_nodes, area, numnod)

Function/Subroutine Documentation

◆ surf_area()

subroutine surf_area ( dimension(3,numnod), intent(in) x,
integer, intent(in) nn,
integer, dimension(nn,4), intent(in) surf_nodes,
intent(inout) area,
integer, intent(in) numnod )

Definition at line 28 of file surf_area.F.

29C-----------------------------------------------
30C I m p l i c i t T y p e s
31C-----------------------------------------------
32#include "implicit_f.inc"
33C-----------------------------------------------
34C D u m m y A r g u m e n t s
35C-----------------------------------------------
36 INTEGER,INTENT(IN) :: NN,SURF_NODES(NN,4),NUMNOD
37 my_real,INTENT(IN) :: x(3,numnod)
38 my_real,INTENT(INOUT) :: area
39C-----------------------------------------------
40C L o c a l V a r i a b l e s
41C-----------------------------------------------
42 INTEGER I,NOD1,NOD2,NOD3,NOD4
43 my_real x13, y13, z13, x24, y24, z24,n1, n2, n3
44C-----------------------------------------------
45C S o u r c e L i n e s
46C-----------------------------------------------
47 area = zero
48 DO i=1,nn
49 nod1=surf_nodes(i,1)
50 nod2=surf_nodes(i,2)
51 nod3=surf_nodes(i,3)
52 nod4=surf_nodes(i,4)
53 x13= x(1,nod3)-x(1,nod1)
54 y13= x(2,nod3)-x(2,nod1)
55 z13= x(3,nod3)-x(3,nod1)
56 x24= x(1,nod4)-x(1,nod2)
57 y24= x(2,nod4)-x(2,nod2)
58 z24= x(3,nod4)-x(3,nod2)
59 n1 = y13*z24-y24*z13
60 n2 = z13*x24-z24*x13
61 n3 = x13*y24-x24*y13
62 area = area + sqrt(n1*n1+n2*n2+n3*n3)
63 ENDDO
64 area = area * half
65C-----------------------------------------------
66 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine area(d1, x, x2, y, y2, eint, stif0)