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

Go to the source code of this file.

Functions/Subroutines

subroutine thsens (sensor_tab, nsensor, j1, j2, l1, l2, ithbuf, wa, iform, sithbuf)

Function/Subroutine Documentation

◆ thsens()

subroutine thsens ( type (sensor_str_), dimension(nsensor), intent(in) sensor_tab,
integer, intent(in) nsensor,
integer, intent(in) j1,
integer, intent(in) j2,
integer, intent(in) l1,
integer, intent(in) l2,
integer, dimension(sithbuf), intent(in) ithbuf,
intent(out) wa,
integer, intent(in) iform,
integer, intent(in) sithbuf )

Definition at line 32 of file thsens.F.

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
#define my_real
Definition cppsort.cpp:32
subroutine wrtdes(a, ia, l, iform, ir)
Definition wrtdes.F:45