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

Go to the source code of this file.

Functions/Subroutines

subroutine zeror (a, n)
subroutine zero1 (a, n)

Function/Subroutine Documentation

◆ zero1()

subroutine zero1 ( a,
integer n )

Definition at line 84 of file zero.F.

85C-----------------------------------------------
86C I m p l i c i t T y p e s
87C-----------------------------------------------
88#include "implicit_f.inc"
89C-----------------------------------------------
90C D u m m y A r g u m e n t s
91C-----------------------------------------------
92 INTEGER N
93C REAL
95 . a(*)
96C-----------------------------------------------
97C L o c a l V a r i a b l e s
98C-----------------------------------------------
99 INTEGER I
100C-----------------------------------------------
101 DO i=1,n
102 a(i)=zero
103 ENDDO
104 RETURN
#define my_real
Definition cppsort.cpp:32

◆ zeror()

subroutine zeror ( a,
integer n )

Definition at line 38 of file zero.F.

39C-----------------------------------------------
40C I m p l i c i t T y p e s
41C-----------------------------------------------
42#include "implicit_f.inc"
43C-----------------------------------------------
44C D u m m y A r g u m e n t s
45C-----------------------------------------------
46 INTEGER N
47C REAL
49 . a(3,*)
50C-----------------------------------------------
51C L o c a l V a r i a b l e s
52C-----------------------------------------------
53 INTEGER I
54C-----------------------------------------------
55 DO i=1,n
56 a(1,i)=zero
57 a(2,i)=zero
58 a(3,i)=zero
59 ENDDO
60 RETURN