OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
outp_no.F File Reference
#include "implicit_f.inc"
#include "units_c.inc"
#include "task_c.inc"
#include "scr16_c.inc"
#include "spmd_c.inc"
#include "com01_c.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine outp_no (key, text, len, anin, numnod, itab, innoda, itabg, leng, nodglob, weight)

Function/Subroutine Documentation

◆ outp_no()

subroutine outp_no ( character*10 key,
character*40 text,
integer len,
anin,
integer numnod,
integer, dimension(*) itab,
integer innoda,
integer, dimension(*) itabg,
integer leng,
integer, dimension(*) nodglob,
integer, dimension(*) weight )

Definition at line 30 of file outp_no.F.

32C-----------------------------------------------
33C NODAL VALUES IN OUTP FILES
34C-----------------------------------------------
35C I m p l i c i t T y p e s
36C-----------------------------------------------
37#include "implicit_f.inc"
38C-----------------------------------------------
39C C o m m o n B l o c k s
40C-----------------------------------------------
41#include "units_c.inc"
42#include "task_c.inc"
43#include "scr16_c.inc"
44#include "spmd_c.inc"
45#include "com01_c.inc"
46C-----------------------------------------------
47C D u m m y A r g u m e n t s
48C-----------------------------------------------
49 CHARACTER*10 KEY
50 CHARACTER*40 TEXT
51 INTEGER ITAB(*), LEN, NUMNOD, INNODA,ITABG(*),LENG,NODGLOB(*),WEIGHT(*)
52 my_real anin(*)
53C-----------------------------------------------
54C L o c a l V a r i a b l e s
55C-----------------------------------------------
56 INTEGER I,J,N
57 my_real vglob(leng)
58C-----------------------------------------------
59
60 IF (nspmd > 1) THEN
61 CALL spmd_doutp_gath(anin(1+innoda),nodglob,weight,vglob)
62 IF (ispmd/=0) RETURN
63 ENDIF
64
65C
66 WRITE(iugeo,'(2A)')'/NODAL /SCALAR /',key
67 WRITE(iugeo,'(A)')text(1:len)
68 IF (ioutp_fmt==2) THEN
69 WRITE(iugeo,'(A)')'#FORMAT: (I8,1P1E16.9) '
70 ELSE
71 WRITE(iugeo,'(A)')'#FORMAT: (I10,1P1E20.13) '
72 ENDIF
73 WRITE(iugeo,'(2A)')'# USRNOD NODAL VALUE'
74 IF (nspmd == 1) THEN
75 IF (outyy_fmt==2) THEN
76 WRITE(iugeo,'(I8,1P1E16.9)')
77 . (itab(j),anin(j+innoda),j=1,numnod)
78 ELSE
79 WRITE(iugeo,'(I10,1P1E20.13)')
80 . (itab(j),anin(j+innoda),j=1,numnod)
81 ENDIF
82 ELSE
83 IF (outyy_fmt==2) THEN
84 WRITE(iugeo,'(I8,1P1E16.9)')
85 . (itabg(j),vglob(j),j=1,numnodg)
86 ELSE
87 WRITE(iugeo,'(I10,1P1E20.13)')
88 . (itabg(j),vglob(j),j=1,numnodg)
89 ENDIF
90 ENDIF
91C
92C INNODA : ADRESSE DE LA DERNIERE VARIABLE
93C (INCREMENTEE DE NUMNOD A CHAQUE PASSAGE)
94C
95 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine spmd_doutp_gath(v, nodglob, weight, vgath)
Definition spmd_outp.F:828