OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
thsens.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!|| thsens ../engine/source/output/th/thsens.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!|| sensor_mod ../common_source/modules/sensor_mod.F90
31!||====================================================================
32 SUBROUTINE thsens(SENSOR_TAB,NSENSOR ,
33 . J1 ,J2 ,L1 ,L2 ,ITHBUF,
34 . WA ,IFORM,SITHBUF)
35C-----------------------------------------------
36C M o d u l e s
37C-----------------------------------------------
38 USE sensor_mod
39C-----------------------------------------------
40C I m p l i c i t T y p e s
41C-----------------------------------------------
42#include "implicit_f.inc"
43C-----------------------------------------------
44C C o m m o n B l o c k s
45C-----------------------------------------------
46#include "tabsiz_c.inc"
47#include "task_c.inc"
48C-----------------------------------------------
49C D u m m y A r g u m e n t s
50C-----------------------------------------------
51 INTEGER ,INTENT(IN) :: SITHBUF
52 INTEGER ,INTENT(IN) :: IFORM,J1,J2,L1,L2,NSENSOR
53 INTEGER ,DIMENSION(SITHBUF) ,INTENT(IN) :: ITHBUF
54 my_real ,DIMENSION(SWA) ,INTENT(OUT) :: wa
55 TYPE (SENSOR_STR_) ,DIMENSION(NSENSOR) ,INTENT(IN) :: SENSOR_TAB
56C-----------------------------------------------
57C L o c a l V a r i a b l e s
58C-----------------------------------------------
59 INTEGER I,J,K,L,II
60c=======================================================================
61c smpd : gather already done, write only by proc 0
62c-----------------------------------------------------------------------
63 IF (ispmd == 0) THEN
64 ii = 0
65 DO j=j1,j2
66 DO l=l1,l2
67 ii=ii+1
68 wa(ii) = zero
69 ENDDO
70 ENDDO
71C
72 ii = 0
73 DO j = j1,j2
74 i = ithbuf(j)
75 DO l=l1,l2
76 k = ithbuf(l)
77 ii= ii+1
78 IF (k == 1) wa(ii) = sensor_tab(i)%STATUS
79 ENDDO
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
subroutine thsens(sensor_tab, nsensor, j1, j2, l1, l2, ithbuf, wa, iform, sithbuf)
Definition thsens.F:35
subroutine wrtdes(a, ia, l, iform, ir)
Definition wrtdes.F:45