updated top-level README and version_decl for V4.4.2 (#1795)
[WRF.git] / external / fftpack / fftpack5 / rfftmf.F
blobaca578753dd9db76e33d9b5c2e579a23a0f09021
1 subroutine rfftmf ( lot, jump, n, inc, r, lenr, wsave, lensav, &
2   work, lenwrk, ier )
4 !*****************************************************************************80
6 !! RFFTMF: real single precision forward FFT, 1D, multiple vectors.
8 !  Discussion:
10 !    RFFTMF computes the one-dimensional Fourier transform of multiple
11 !    periodic sequences within a real array.  This transform is referred
12 !    to as the forward transform or Fourier analysis, transforming the
13 !    sequences from physical to spectral space.
15 !    This transform is normalized since a call to RFFTMF followed
16 !    by a call to RFFTMB (or vice-versa) reproduces the original array
17 !    within roundoff error.
20 !    Copyright (C) 1995-2004, Scientific Computing Division,
21 !    University Corporation for Atmospheric Research
23 !  Modified:
25 !    27 March 2005
27 !  Author:
29 !    Paul Swarztrauber
30 !    Richard Valent
32 !  Reference:
34 !    Paul Swarztrauber,
35 !    Vectorizing the Fast Fourier Transforms,
36 !    in Parallel Computations,
37 !    edited by G. Rodrigue,
38 !    Academic Press, 1982.
40 !    Paul Swarztrauber,
41 !    Fast Fourier Transform Algorithms for Vector Computers,
42 !    Parallel Computing, pages 45-63, 1984.
44 !  Parameters:
46 !    Input, integer ( kind = 4 ) LOT, the number of sequences to be transformed
47 !    within array R.
49 !    Input, integer ( kind = 4 ) JUMP, the increment between the locations, in
50 !    array R, of the first elements of two consecutive sequences to be
51 !    transformed.
53 !    Input, integer ( kind = 4 ) N, the length of each sequence to be
54 !    transformed.  The transform is most efficient when N is a product of
55 !    small primes.
57 !    Input, integer ( kind = 4 ) INC, the increment between the locations,
58 !    in array R, of two consecutive elements within the same sequence.
60 !    Input/output, real ( kind = 4 ) R(LENR), real array containing LOT
61 !    sequences, each having length N.  R can have any number of dimensions, but
62 !    the total number of locations must be at least LENR.  On input, the
63 !    physical data to be transformed, on output the spectral data.
65 !    Input, integer ( kind = 4 ) LENR, the dimension of the R array.
66 !    LENR must be at least (LOT-1)*JUMP + INC*(N-1) + 1.
68 !    Input, real ( kind = 4 ) WSAVE(LENSAV).  WSAVE's contents must be
69 !    initialized with a call to RFFTMI before the first call to routine RFFTMF
70 !    or RFFTMB for a given transform length N.
72 !    Input, integer ( kind = 4 ) LENSAV, the dimension of the WSAVE array.
73 !    LENSAV must be at least N + INT(LOG(REAL(N))) + 4.
75 !    Workspace, real ( kind = 4 ) WORK(LENWRK).
77 !    Input, integer ( kind = 4 ) LENWRK, the dimension of the WORK array.
78 !    LENWRK must be at least LOT*N.
80 !    Output, integer ( kind = 4 ) IER, error flag.
81 !    0, successful exit;
82 !    1, input parameter LENR not big enough;
83 !    2, input parameter LENSAV not big enough;
84 !    3, input parameter LENWRK not big enough;
85 !    4, input parameters INC, JUMP, N, LOT are not consistent.
87   implicit none
89   integer ( kind = 4 ) lenr
90   integer ( kind = 4 ) lensav
91   integer ( kind = 4 ) lenwrk
93   integer ( kind = 4 ) ier
94   integer ( kind = 4 ) inc
95   integer ( kind = 4 ) jump
96   integer ( kind = 4 ) lot
97   integer ( kind = 4 ) n
98   real ( kind = 4 ) r(lenr)
99   real ( kind = 4 ) work(lenwrk)
100   real ( kind = 4 ) wsave(lensav)
101   logical              xercon
103   ier = 0
105   if ( lenr < ( lot - 1 ) * jump + inc * ( n - 1 ) + 1 ) then
106     ier = 1
107     call xerfft ( 'rfftmf ', 6 )
108     return
109   end if
111   if ( lensav < n + int ( log ( real ( n, kind = 4 ) ) ) + 4 ) then
112     ier = 2
113     call xerfft ( 'rfftmf ', 8 )
114     return
115   end if
117   if ( lenwrk < lot * n ) then
118     ier = 3
119     call xerfft ( 'rfftmf ', 10 )
120     return
121   end if
123   if ( .not. xercon ( inc, jump, n, lot ) ) then
124     ier = 4
125     call xerfft ( 'rfftmf ', -1 )
126     return
127   end if
129   if ( n == 1 ) then
130     return
131   end if
133   call mrftf1 ( lot, jump, n, inc, r, work, wsave, wsave(n+1) )
135   return