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

Go to the source code of this file.

Functions/Subroutines

subroutine thsurf (j1, j2, l1, l2, ithbuf, wa, fsavsurf, iform, nsurf)

Function/Subroutine Documentation

◆ thsurf()

subroutine thsurf ( integer, intent(in) j1,
integer, intent(in) j2,
integer, intent(in) l1,
integer, intent(in) l2,
integer, dimension(*), intent(in) ithbuf,
dimension(*), intent(inout) wa,
dimension(th_surf_num_channel,nsurf), intent(in) fsavsurf,
integer, intent(in) iform,
integer, intent(in) nsurf )

Definition at line 32 of file thsurf.F.

33C-----------------------------------------------
34C M o d u l e s
35C-----------------------------------------------
37C-----------------------------------------------
38C I m p l i c i t T y p e s
39C-----------------------------------------------
40#include "implicit_f.inc"
41C-----------------------------------------------
42C C o m m o n B l o c k s
43C-----------------------------------------------
44#include "task_c.inc"
45C-----------------------------------------------
46C D u m m y A r g u m e n t s
47C-----------------------------------------------
48 INTEGER,INTENT(IN) :: J1,J2,L1,L2,NSURF
49 INTEGER,INTENT(IN) :: ITHBUF(*),IFORM
50 my_real, INTENT(INOUT) :: wa(*)
51 my_real, INTENT(IN) :: fsavsurf(th_surf_num_channel,nsurf)
52C-----------------------------------------------
53C L o c a l V a r i a b l e s
54C-----------------------------------------------
55 INTEGER I,J,K,L,II
56C-----------------------------------------------
57C S o u r c e L i n e s
58C-----------------------------------------------
59C GATHERING DONE. PROC/ISPMD==0 IS WRITING
60C------------------------------------
61 IF (ispmd == 0) THEN
62 ii = 0
63 DO j=j1,j2
64 DO l=l1,l2
65 ii=ii+1
66 wa(ii) = zero
67 ENDDO
68 ENDDO
69C
70 ii = 0
71 DO j=j1,j2
72 i=ithbuf(j)
73 IF(i > 0)THEN
74 DO l=l1,l2
75 k=ithbuf(l)
76 ii=ii+1
77 wa(ii)=fsavsurf(k,i)
78 ENDDO
79 ENDIF
80 ENDDO
81 IF(ii>0)CALL wrtdes(wa,wa,ii,iform,1)
82 ENDIF
83C
84 RETURN
#define my_real
Definition cppsort.cpp:32
OPTION /TH/SURF outputs of Pressure and Area needed Tabs.
Definition th_surf_mod.F:60
integer, parameter th_surf_num_channel
number of /TH/SURF channels : AREA, VELOCITY, MASSFLOW, P A, MASS
Definition th_surf_mod.F:99
subroutine wrtdes(a, ia, l, iform, ir)
Definition wrtdes.F:45