OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
thsurf.F
Go to the documentation of this file.
1Copyright> OpenRadioss
2Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3Copyright>
4Copyright> This program is free software: you can redistribute it and/or modify
5Copyright> it under the terms of the GNU Affero General Public License as published by
6Copyright> the Free Software Foundation, either version 3 of the License, or
7Copyright> (at your option) any later version.
8Copyright>
9Copyright> This program is distributed in the hope that it will be useful,
10Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12Copyright> GNU Affero General Public License for more details.
13Copyright>
14Copyright> You should have received a copy of the GNU Affero General Public License
15Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16Copyright>
17Copyright>
18Copyright> Commercial Alternative: Altair Radioss Software
19Copyright>
20Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21Copyright> software under a commercial license. Contact Altair to discuss further if the
22Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23!||====================================================================
24!|| thsurf ../engine/source/output/th/thsurf.F
25!||--- called by ------------------------------------------------------
26!|| hist2 ../engine/source/output/th/hist2.F
27!||--- calls -----------------------------------------------------
28!|| wrtdes ../engine/source/output/th/wrtdes.F
29!||--- uses -----------------------------------------------------
30!|| th_surf_mod ../common_source/modules/interfaces/th_surf_mod.F
31!||====================================================================
32 SUBROUTINE thsurf(J1, J2, L1, L2, ITHBUF, WA, FSAVSURF, IFORM, NSURF)
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
85 END
#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 thsurf(j1, j2, l1, l2, ithbuf, wa, fsavsurf, iform, nsurf)
Definition thsurf.F:33
subroutine wrtdes(a, ia, l, iform, ir)
Definition wrtdes.F:45