PyFishPack 0.1.0__cp313-cp313-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. PyFishPack/__init__.py +86 -0
  2. PyFishPack/__pycache__/__init__.cpython-313.pyc +0 -0
  3. PyFishPack/__pycache__/apps.cpython-313.pyc +0 -0
  4. PyFishPack/_dummy.c +23 -0
  5. PyFishPack/_dummy.cp313-win_amd64.pyd +0 -0
  6. PyFishPack/apps.py +3640 -0
  7. PyFishPack/fishpack.cp313-win_amd64.dll.a +0 -0
  8. PyFishPack/fishpack.cp313-win_amd64.pyd +0 -0
  9. PyFishPack/meson.build +213 -0
  10. PyFishPack/src/archive/f77/Makefile +19 -0
  11. PyFishPack/src/archive/f77/blktri.f +1404 -0
  12. PyFishPack/src/archive/f77/cblktri.f +1414 -0
  13. PyFishPack/src/archive/f77/cmgnbn.f +1592 -0
  14. PyFishPack/src/archive/f77/comf.f +186 -0
  15. PyFishPack/src/archive/f77/fftpack.f +2968 -0
  16. PyFishPack/src/archive/f77/genbun.f +1335 -0
  17. PyFishPack/src/archive/f77/gnbnaux.f +314 -0
  18. PyFishPack/src/archive/f77/hstcrt.f +443 -0
  19. PyFishPack/src/archive/f77/hstcsp.f +683 -0
  20. PyFishPack/src/archive/f77/hstcyl.f +485 -0
  21. PyFishPack/src/archive/f77/hstplr.f +538 -0
  22. PyFishPack/src/archive/f77/hstssp.f +634 -0
  23. PyFishPack/src/archive/f77/hw3crt.f +687 -0
  24. PyFishPack/src/archive/f77/hwscrt.f +512 -0
  25. PyFishPack/src/archive/f77/hwscsp.f +728 -0
  26. PyFishPack/src/archive/f77/hwscyl.f +538 -0
  27. PyFishPack/src/archive/f77/hwsplr.f +602 -0
  28. PyFishPack/src/archive/f77/hwsssp.f +780 -0
  29. PyFishPack/src/archive/f77/pois3d.f +550 -0
  30. PyFishPack/src/archive/f77/poistg.f +875 -0
  31. PyFishPack/src/archive/f77/sepaux.f +361 -0
  32. PyFishPack/src/archive/f77/sepeli.f +1029 -0
  33. PyFishPack/src/archive/f77/sepx4.f +958 -0
  34. PyFishPack/src/centered_axisymmetric_spherical_solver.f90 +1002 -0
  35. PyFishPack/src/centered_cartesian_helmholtz_solver_3d.f90 +819 -0
  36. PyFishPack/src/centered_cartesian_solver.f90 +583 -0
  37. PyFishPack/src/centered_cylindrical_solver.f90 +634 -0
  38. PyFishPack/src/centered_helmholtz_solvers.f90 +156 -0
  39. PyFishPack/src/centered_polar_solver.f90 +746 -0
  40. PyFishPack/src/centered_real_linear_systems_solver.f90 +280 -0
  41. PyFishPack/src/centered_spherical_solver.f90 +928 -0
  42. PyFishPack/src/complex_block_tridiagonal_linear_systems_solver.f90 +1947 -0
  43. PyFishPack/src/complex_linear_systems_solver.f90 +1787 -0
  44. PyFishPack/src/fftpack_c_api.f90 +86 -0
  45. PyFishPack/src/fishpack.f90 +191 -0
  46. PyFishPack/src/fishpack.pyf +504 -0
  47. PyFishPack/src/fishpack_c_api.f90 +365 -0
  48. PyFishPack/src/fishpack_original.pyf +2119 -0
  49. PyFishPack/src/fishpack_precision.f90 +53 -0
  50. PyFishPack/src/general_linear_systems_solver_3d.f90 +296 -0
  51. PyFishPack/src/iterative_solvers.f90 +969 -0
  52. PyFishPack/src/main.f90 +10 -0
  53. PyFishPack/src/pyfishpack_module.c +1302 -0
  54. PyFishPack/src/real_block_tridiagonal_linear_systems_solver.f90 +319 -0
  55. PyFishPack/src/sepeli.f90 +1454 -0
  56. PyFishPack/src/sepx4.f90 +1338 -0
  57. PyFishPack/src/staggered_axisymmetric_spherical_solver.f90 +908 -0
  58. PyFishPack/src/staggered_cartesian_solver.f90 +553 -0
  59. PyFishPack/src/staggered_cylindrical_solver.f90 +630 -0
  60. PyFishPack/src/staggered_helmholtz_solvers.f90 +172 -0
  61. PyFishPack/src/staggered_polar_solver.f90 +651 -0
  62. PyFishPack/src/staggered_real_linear_systems_solver.f90 +258 -0
  63. PyFishPack/src/staggered_spherical_solver.f90 +758 -0
  64. PyFishPack/src/three_dimensional_solvers.f90 +602 -0
  65. PyFishPack/src/type_CenteredCyclicReductionUtility.f90 +1714 -0
  66. PyFishPack/src/type_CyclicReductionUtility.f90 +472 -0
  67. PyFishPack/src/type_FishpackWorkspace.f90 +290 -0
  68. PyFishPack/src/type_GeneralizedCyclicReductionUtility.f90 +1980 -0
  69. PyFishPack/src/type_PeriodicFastFourierTransform.f90 +3789 -0
  70. PyFishPack/src/type_SepAux.f90 +586 -0
  71. PyFishPack/src/type_StaggeredCyclicReductionUtility.f90 +893 -0
  72. pyfishpack-0.1.0.dist-info/DELVEWHEEL +2 -0
  73. pyfishpack-0.1.0.dist-info/METADATA +81 -0
  74. pyfishpack-0.1.0.dist-info/RECORD +81 -0
  75. pyfishpack-0.1.0.dist-info/WHEEL +5 -0
  76. pyfishpack-0.1.0.dist-info/licenses/LICENSE +21 -0
  77. pyfishpack-0.1.0.dist-info/top_level.txt +1 -0
  78. pyfishpack.libs/libgcc_s_seh-1-25d59ccffa1a9009644065b069829e07.dll +0 -0
  79. pyfishpack.libs/libgfortran-5-08f2195cfa0d823e13371c5c3186a82a.dll +0 -0
  80. pyfishpack.libs/libquadmath-0-c5abb9113f1ee64b87a889958e4b7418.dll +0 -0
  81. pyfishpack.libs/libwinpthread-1-83908d14abfafb8b3bfa38cf51ecee56.dll +0 -0
@@ -0,0 +1,504 @@
1
+ ! -*- f90 -*-
2
+ ! Note: the context of this file is case sensitive.
3
+
4
+ python module fishpack ! in
5
+ interface ! in :fishpack
6
+ subroutine genbun(nperod,n,mperod,m,a,b,c,idimy,y,ierror,w) ! in :fishpack_core:genbun.f
7
+ integer :: nperod
8
+ integer :: n
9
+ integer :: mperod
10
+ integer :: m
11
+ real dimension(*) :: a
12
+ real dimension(*) :: b
13
+ real dimension(*) :: c
14
+ integer, optional,check(shape(y, 0) == idimy),depend(y) :: idimy=shape(y, 0)
15
+ real dimension(idimy,1) :: y
16
+ integer :: ierror
17
+ real dimension(*) :: w
18
+ end subroutine genbun
19
+ subroutine poisd2(mr,nr,istag,ba,bb,bc,q,idimq,b,w,d,tcos,p) ! in :fishpack_core:genbun.f
20
+ integer :: mr
21
+ integer :: nr
22
+ integer :: istag
23
+ real dimension(*) :: ba
24
+ real dimension(*) :: bb
25
+ real dimension(*) :: bc
26
+ real dimension(idimq,1) :: q
27
+ integer, optional,check(shape(q, 0) == idimq),depend(q) :: idimq=shape(q, 0)
28
+ real dimension(*) :: b
29
+ real dimension(*) :: w
30
+ real dimension(*) :: d
31
+ real dimension(*) :: tcos
32
+ real dimension(*) :: p
33
+ end subroutine poisd2
34
+ subroutine poisn2(m,n,istag,mixbnd,a,bb,c,q,idimq,b,b2,b3,w,w2,w3,d,tcos,p) ! in :fishpack_core:genbun.f
35
+ integer :: m
36
+ integer :: n
37
+ integer :: istag
38
+ integer :: mixbnd
39
+ real dimension(*) :: a
40
+ real dimension(*) :: bb
41
+ real dimension(*) :: c
42
+ real dimension(idimq,*) :: q
43
+ integer, optional,check(shape(q, 0) == idimq),depend(q) :: idimq=shape(q, 0)
44
+ real dimension(*) :: b
45
+ real dimension(*) :: b2
46
+ real dimension(*) :: b3
47
+ real dimension(*) :: w
48
+ real dimension(*) :: w2
49
+ real dimension(*) :: w3
50
+ real dimension(*) :: d
51
+ real dimension(*) :: tcos
52
+ real dimension(*) :: p
53
+ end subroutine poisn2
54
+ subroutine poisp2(m,n,a,bb,c,q,idimq,b,b2,b3,w,w2,w3,d,tcos,p) ! in :fishpack_core:genbun.f
55
+ integer :: m
56
+ integer :: n
57
+ real dimension(*) :: a
58
+ real dimension(*) :: bb
59
+ real dimension(*) :: c
60
+ real dimension(idimq,1) :: q
61
+ integer, optional,check(shape(q, 0) == idimq),depend(q) :: idimq=shape(q, 0)
62
+ real dimension(*) :: b
63
+ real dimension(*) :: b2
64
+ real dimension(*) :: b3
65
+ real dimension(*) :: w
66
+ real dimension(*) :: w2
67
+ real dimension(*) :: w3
68
+ real dimension(*) :: d
69
+ real dimension(*) :: tcos
70
+ real dimension(*) :: p
71
+ end subroutine poisp2
72
+ subroutine pois3d(lperod,l,c1,mperod,m,c2,nperod,n,a,b,c,ldimf,mdimf,f,ierror,w) ! in :fishpack_core:pois3d.f
73
+ integer :: lperod
74
+ integer :: l
75
+ real :: c1
76
+ integer :: mperod
77
+ integer :: m
78
+ real :: c2
79
+ integer :: nperod
80
+ integer :: n
81
+ real dimension(*) :: a
82
+ real dimension(*) :: b
83
+ real dimension(*) :: c
84
+ integer, optional,check(shape(f, 0) == ldimf),depend(f) :: ldimf=shape(f, 0)
85
+ integer, optional,check(shape(f, 1) == mdimf),depend(f) :: mdimf=shape(f, 1)
86
+ real dimension(ldimf,mdimf,1) :: f
87
+ integer :: ierror
88
+ real dimension(*) :: w
89
+ end subroutine pois3d
90
+ subroutine pos3d1(lp,l,mp,m,n,a,b,c,ldimf,mdimf,f,xrt,yrt,t,d,wx,wy,c1,c2,bb) ! in :fishpack_core:pois3d.f
91
+ integer :: lp
92
+ integer :: l
93
+ integer :: mp
94
+ integer :: m
95
+ integer :: n
96
+ real dimension(*) :: a
97
+ real dimension(*) :: b
98
+ real dimension(*) :: c
99
+ integer, optional,check(shape(f, 0) == ldimf),depend(f) :: ldimf=shape(f, 0)
100
+ integer, optional,check(shape(f, 1) == mdimf),depend(f) :: mdimf=shape(f, 1)
101
+ real dimension(ldimf,mdimf,1) :: f
102
+ real dimension(*) :: xrt
103
+ real dimension(*) :: yrt
104
+ real dimension(*) :: t
105
+ real dimension(*) :: d
106
+ real dimension(*) :: wx
107
+ real dimension(*) :: wy
108
+ real :: c1
109
+ real :: c2
110
+ real dimension(*) :: bb
111
+ end subroutine pos3d1
112
+ subroutine trid(mr,a,b,c,y,d) ! in :fishpack_core:pois3d.f
113
+ integer :: mr
114
+ real dimension(*) :: a
115
+ real dimension(*) :: b
116
+ real dimension(*) :: c
117
+ real dimension(*) :: y
118
+ real dimension(*) :: d
119
+ end subroutine trid
120
+ subroutine poistg(nperod,n,mperod,m,a,b,c,idimy,y,ierror,w) ! in :fishpack_core:poistg.f
121
+ integer :: nperod
122
+ integer :: n
123
+ integer :: mperod
124
+ integer :: m
125
+ real dimension(*) :: a
126
+ real dimension(*) :: b
127
+ real dimension(*) :: c
128
+ integer, optional,check(shape(y, 0) == idimy),depend(y) :: idimy=shape(y, 0)
129
+ real dimension(idimy,1) :: y
130
+ integer :: ierror
131
+ real dimension(*) :: w
132
+ end subroutine poistg
133
+ subroutine postg2(nperod,n,m,a,bb,c,idimq,q,b,b2,b3,w,w2,w3,d,tcos,p) ! in :fishpack_core:poistg.f
134
+ integer :: nperod
135
+ integer :: n
136
+ integer :: m
137
+ real dimension(*) :: a
138
+ real dimension(*) :: bb
139
+ real dimension(*) :: c
140
+ integer, optional,check(shape(q, 0) == idimq),depend(q) :: idimq=shape(q, 0)
141
+ real dimension(idimq,*) :: q
142
+ real dimension(*) :: b
143
+ real dimension(*) :: b2
144
+ real dimension(*) :: b3
145
+ real dimension(*) :: w
146
+ real dimension(*) :: w2
147
+ real dimension(*) :: w3
148
+ real dimension(*) :: d
149
+ real dimension(*) :: tcos
150
+ real dimension(*) :: p
151
+ end subroutine postg2
152
+ subroutine ezfftf(n,r,azero,a,b,wsave) ! in :fishpack_core:fftpack.f
153
+ integer :: n
154
+ real dimension(*) :: r
155
+ real :: azero
156
+ real dimension(*) :: a
157
+ real dimension(*) :: b
158
+ real dimension(*) :: wsave
159
+ end subroutine ezfftf
160
+ subroutine ezfftb(n,r,azero,a,b,wsave) ! in :fishpack_core:fftpack.f
161
+ integer :: n
162
+ real dimension(*) :: r
163
+ real :: azero
164
+ real dimension(*) :: a
165
+ real dimension(*) :: b
166
+ real dimension(*) :: wsave
167
+ end subroutine ezfftb
168
+ subroutine ezffti(n,wsave) ! in :fishpack_core:fftpack.f
169
+ integer :: n
170
+ real dimension(*) :: wsave
171
+ end subroutine ezffti
172
+ subroutine ezfft1(n,wa,ifac) ! in :fishpack_core:fftpack.f
173
+ integer :: n
174
+ real dimension(*) :: wa
175
+ integer dimension(*) :: ifac
176
+ end subroutine ezfft1
177
+ subroutine costi(n,wsave) ! in :fishpack_core:fftpack.f
178
+ integer :: n
179
+ real dimension(*) :: wsave
180
+ end subroutine costi
181
+ subroutine cost(n,x,wsave) ! in :fishpack_core:fftpack.f
182
+ integer :: n
183
+ real dimension(*) :: x
184
+ real dimension(*) :: wsave
185
+ end subroutine cost
186
+ subroutine sinti(n,wsave) ! in :fishpack_core:fftpack.f
187
+ integer :: n
188
+ real dimension(*) :: wsave
189
+ end subroutine sinti
190
+ subroutine sint(n,x,wsave) ! in :fishpack_core:fftpack.f
191
+ integer :: n
192
+ real dimension(*) :: x
193
+ real dimension(*) :: wsave
194
+ end subroutine sint
195
+ subroutine sint1(n,war,was,xh,x,ifac) ! in :fishpack_core:fftpack.f
196
+ integer :: n
197
+ real dimension(*) :: war
198
+ real dimension(*) :: was
199
+ real dimension(*) :: xh
200
+ real dimension(*) :: x
201
+ integer dimension(*) :: ifac
202
+ end subroutine sint1
203
+ subroutine cosqi(n,wsave) ! in :fishpack_core:fftpack.f
204
+ integer :: n
205
+ real dimension(*) :: wsave
206
+ end subroutine cosqi
207
+ subroutine cosqf(n,x,wsave) ! in :fishpack_core:fftpack.f
208
+ integer :: n
209
+ real dimension(*) :: x
210
+ real dimension(*) :: wsave
211
+ end subroutine cosqf
212
+ subroutine cosqf1(n,x,w,xh) ! in :fishpack_core:fftpack.f
213
+ integer :: n
214
+ real dimension(*) :: x
215
+ real dimension(*) :: w
216
+ real dimension(*) :: xh
217
+ end subroutine cosqf1
218
+ subroutine cosqb(n,x,wsave) ! in :fishpack_core:fftpack.f
219
+ integer :: n
220
+ real dimension(*) :: x
221
+ real dimension(*) :: wsave
222
+ end subroutine cosqb
223
+ subroutine cosqb1(n,x,w,xh) ! in :fishpack_core:fftpack.f
224
+ integer :: n
225
+ real dimension(*) :: x
226
+ real dimension(*) :: w
227
+ real dimension(*) :: xh
228
+ end subroutine cosqb1
229
+ subroutine sinqi(n,wsave) ! in :fishpack_core:fftpack.f
230
+ integer :: n
231
+ real dimension(*) :: wsave
232
+ end subroutine sinqi
233
+ subroutine sinqf(n,x,wsave) ! in :fishpack_core:fftpack.f
234
+ integer :: n
235
+ real dimension(*) :: x
236
+ real dimension(*) :: wsave
237
+ end subroutine sinqf
238
+ subroutine sinqb(n,x,wsave) ! in :fishpack_core:fftpack.f
239
+ integer :: n
240
+ real dimension(*) :: x
241
+ real dimension(*) :: wsave
242
+ end subroutine sinqb
243
+ subroutine cffti(n,wsave) ! in :fishpack_core:fftpack.f
244
+ integer :: n
245
+ real dimension(*) :: wsave
246
+ end subroutine cffti
247
+ subroutine cffti1(n,wa,ifac) ! in :fishpack_core:fftpack.f
248
+ integer :: n
249
+ real dimension(*) :: wa
250
+ integer dimension(*) :: ifac
251
+ end subroutine cffti1
252
+ subroutine cfftb(n,c,wsave) ! in :fishpack_core:fftpack.f
253
+ integer :: n
254
+ real dimension(*) :: c
255
+ real dimension(*) :: wsave
256
+ end subroutine cfftb
257
+ subroutine cfftb1(n,c,ch,wa,ifac) ! in :fishpack_core:fftpack.f
258
+ integer :: n
259
+ real dimension(*) :: c
260
+ real dimension(*) :: ch
261
+ real dimension(*) :: wa
262
+ integer dimension(*) :: ifac
263
+ end subroutine cfftb1
264
+ subroutine passb2(ido,l1,cc,ch,wa1) ! in :fishpack_core:fftpack.f
265
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
266
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
267
+ real dimension(ido,2,l1) :: cc
268
+ real dimension(ido,l1,2),depend(ido,l1) :: ch
269
+ real dimension(1) :: wa1
270
+ end subroutine passb2
271
+ subroutine passb3(ido,l1,cc,ch,wa1,wa2) ! in :fishpack_core:fftpack.f
272
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
273
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
274
+ real dimension(ido,3,l1) :: cc
275
+ real dimension(ido,l1,3),depend(ido,l1) :: ch
276
+ real dimension(*) :: wa1
277
+ real dimension(*) :: wa2
278
+ end subroutine passb3
279
+ subroutine passb4(ido,l1,cc,ch,wa1,wa2,wa3) ! in :fishpack_core:fftpack.f
280
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
281
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
282
+ real dimension(ido,4,l1) :: cc
283
+ real dimension(ido,l1,4),depend(ido,l1) :: ch
284
+ real dimension(*) :: wa1
285
+ real dimension(*) :: wa2
286
+ real dimension(*) :: wa3
287
+ end subroutine passb4
288
+ subroutine passb5(ido,l1,cc,ch,wa1,wa2,wa3,wa4) ! in :fishpack_core:fftpack.f
289
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
290
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
291
+ real dimension(ido,5,l1) :: cc
292
+ real dimension(ido,l1,5),depend(ido,l1) :: ch
293
+ real dimension(*) :: wa1
294
+ real dimension(*) :: wa2
295
+ real dimension(*) :: wa3
296
+ real dimension(*) :: wa4
297
+ end subroutine passb5
298
+ subroutine passb(nac,ido,ip,l1,idl1,cc,c1,c2,ch,ch2,wa) ! in :fishpack_core:fftpack.f
299
+ integer :: nac
300
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
301
+ integer, optional,check(shape(cc, 1) == ip),depend(cc) :: ip=shape(cc, 1)
302
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
303
+ integer, optional,check(shape(c2, 0) == idl1),depend(c2) :: idl1=shape(c2, 0)
304
+ real dimension(ido,ip,l1) :: cc
305
+ real dimension(ido,l1,ip),depend(ido,l1,ip) :: c1
306
+ real dimension(idl1,ip),depend(ip) :: c2
307
+ real dimension(ido,l1,ip),depend(ido,l1,ip) :: ch
308
+ real dimension(idl1,ip),depend(idl1,ip) :: ch2
309
+ real dimension(*) :: wa
310
+ end subroutine passb
311
+ subroutine cfftf(n,c,wsave) ! in :fishpack_core:fftpack.f
312
+ integer :: n
313
+ real dimension(*) :: c
314
+ real dimension(*) :: wsave
315
+ end subroutine cfftf
316
+ subroutine cfftf1(n,c,ch,wa,ifac) ! in :fishpack_core:fftpack.f
317
+ integer :: n
318
+ real dimension(*) :: c
319
+ real dimension(*) :: ch
320
+ real dimension(*) :: wa
321
+ integer dimension(*) :: ifac
322
+ end subroutine cfftf1
323
+ subroutine passf2(ido,l1,cc,ch,wa1) ! in :fishpack_core:fftpack.f
324
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
325
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
326
+ real dimension(ido,2,l1) :: cc
327
+ real dimension(ido,l1,2),depend(ido,l1) :: ch
328
+ real dimension(*) :: wa1
329
+ end subroutine passf2
330
+ subroutine passf3(ido,l1,cc,ch,wa1,wa2) ! in :fishpack_core:fftpack.f
331
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
332
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
333
+ real dimension(ido,3,l1) :: cc
334
+ real dimension(ido,l1,3),depend(ido,l1) :: ch
335
+ real dimension(*) :: wa1
336
+ real dimension(*) :: wa2
337
+ end subroutine passf3
338
+ subroutine passf4(ido,l1,cc,ch,wa1,wa2,wa3) ! in :fishpack_core:fftpack.f
339
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
340
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
341
+ real dimension(ido,4,l1) :: cc
342
+ real dimension(ido,l1,4),depend(ido,l1) :: ch
343
+ real dimension(*) :: wa1
344
+ real dimension(*) :: wa2
345
+ real dimension(*) :: wa3
346
+ end subroutine passf4
347
+ subroutine passf5(ido,l1,cc,ch,wa1,wa2,wa3,wa4) ! in :fishpack_core:fftpack.f
348
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
349
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
350
+ real dimension(ido,5,l1) :: cc
351
+ real dimension(ido,l1,5),depend(ido,l1) :: ch
352
+ real dimension(*) :: wa1
353
+ real dimension(*) :: wa2
354
+ real dimension(*) :: wa3
355
+ real dimension(*) :: wa4
356
+ end subroutine passf5
357
+ subroutine passf(nac,ido,ip,l1,idl1,cc,c1,c2,ch,ch2,wa) ! in :fishpack_core:fftpack.f
358
+ integer :: nac
359
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
360
+ integer, optional,check(shape(cc, 1) == ip),depend(cc) :: ip=shape(cc, 1)
361
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
362
+ integer, optional,check(shape(c2, 0) == idl1),depend(c2) :: idl1=shape(c2, 0)
363
+ real dimension(ido,ip,l1) :: cc
364
+ real dimension(ido,l1,ip),depend(ido,l1,ip) :: c1
365
+ real dimension(idl1,ip),depend(ip) :: c2
366
+ real dimension(ido,l1,ip),depend(ido,l1,ip) :: ch
367
+ real dimension(idl1,ip),depend(idl1,ip) :: ch2
368
+ real dimension(*) :: wa
369
+ end subroutine passf
370
+ subroutine rffti(n,wsave) ! in :fishpack_core:fftpack.f
371
+ integer :: n
372
+ real dimension(*) :: wsave
373
+ end subroutine rffti
374
+ subroutine rffti1(n,wa,ifac) ! in :fishpack_core:fftpack.f
375
+ integer :: n
376
+ real dimension(*) :: wa
377
+ integer dimension(*) :: ifac
378
+ end subroutine rffti1
379
+ subroutine rfftb(n,r,wsave) ! in :fishpack_core:fftpack.f
380
+ integer :: n
381
+ real dimension(*) :: r
382
+ real dimension(*) :: wsave
383
+ end subroutine rfftb
384
+ subroutine rfftb1(n,c,ch,wa,ifac) ! in :fishpack_core:fftpack.f
385
+ integer :: n
386
+ real dimension(*) :: c
387
+ real dimension(*) :: ch
388
+ real dimension(*) :: wa
389
+ integer dimension(*) :: ifac
390
+ end subroutine rfftb1
391
+ subroutine radb2(ido,l1,cc,ch,wa1) ! in :fishpack_core:fftpack.f
392
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
393
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
394
+ real dimension(ido,2,l1) :: cc
395
+ real dimension(ido,l1,2),depend(ido,l1) :: ch
396
+ real dimension(*) :: wa1
397
+ end subroutine radb2
398
+ subroutine radb3(ido,l1,cc,ch,wa1,wa2) ! in :fishpack_core:fftpack.f
399
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
400
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
401
+ real dimension(ido,3,l1) :: cc
402
+ real dimension(ido,l1,3),depend(ido,l1) :: ch
403
+ real dimension(*) :: wa1
404
+ real dimension(*) :: wa2
405
+ end subroutine radb3
406
+ subroutine radb4(ido,l1,cc,ch,wa1,wa2,wa3) ! in :fishpack_core:fftpack.f
407
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
408
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
409
+ real dimension(ido,4,l1) :: cc
410
+ real dimension(ido,l1,4),depend(ido,l1) :: ch
411
+ real dimension(*) :: wa1
412
+ real dimension(*) :: wa2
413
+ real dimension(*) :: wa3
414
+ end subroutine radb4
415
+ subroutine radb5(ido,l1,cc,ch,wa1,wa2,wa3,wa4) ! in :fishpack_core:fftpack.f
416
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
417
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
418
+ real dimension(ido,5,l1) :: cc
419
+ real dimension(ido,l1,5),depend(ido,l1) :: ch
420
+ real dimension(*) :: wa1
421
+ real dimension(*) :: wa2
422
+ real dimension(*) :: wa3
423
+ real dimension(*) :: wa4
424
+ end subroutine radb5
425
+ subroutine radbg(ido,ip,l1,idl1,cc,c1,c2,ch,ch2,wa) ! in :fishpack_core:fftpack.f
426
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
427
+ integer, optional,check(shape(cc, 1) == ip),depend(cc) :: ip=shape(cc, 1)
428
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
429
+ integer, optional,check(shape(c2, 0) == idl1),depend(c2) :: idl1=shape(c2, 0)
430
+ real dimension(ido,ip,l1) :: cc
431
+ real dimension(ido,l1,ip),depend(ido,l1,ip) :: c1
432
+ real dimension(idl1,ip),depend(ip) :: c2
433
+ real dimension(ido,l1,ip),depend(ido,l1,ip) :: ch
434
+ real dimension(idl1,ip),depend(idl1,ip) :: ch2
435
+ real dimension(*) :: wa
436
+ end subroutine radbg
437
+ subroutine rfftf(n,r,wsave) ! in :fishpack_core:fftpack.f
438
+ integer :: n
439
+ real dimension(*) :: r
440
+ real dimension(*) :: wsave
441
+ end subroutine rfftf
442
+ subroutine rfftf1(n,c,ch,wa,ifac) ! in :fishpack_core:fftpack.f
443
+ integer :: n
444
+ real dimension(*) :: c
445
+ real dimension(*) :: ch
446
+ real dimension(*) :: wa
447
+ integer dimension(*) :: ifac
448
+ end subroutine rfftf1
449
+ subroutine radf2(ido,l1,cc,ch,wa1) ! in :fishpack_core:fftpack.f
450
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
451
+ integer, optional,check(shape(cc, 1) == l1),depend(cc) :: l1=shape(cc, 1)
452
+ real dimension(ido,l1,2) :: cc
453
+ real dimension(ido,2,l1),depend(ido,l1) :: ch
454
+ real dimension(*) :: wa1
455
+ end subroutine radf2
456
+ subroutine radf3(ido,l1,cc,ch,wa1,wa2) ! in :fishpack_core:fftpack.f
457
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
458
+ integer, optional,check(shape(cc, 1) == l1),depend(cc) :: l1=shape(cc, 1)
459
+ real dimension(ido,l1,3) :: cc
460
+ real dimension(ido,3,l1),depend(ido,l1) :: ch
461
+ real dimension(*) :: wa1
462
+ real dimension(*) :: wa2
463
+ end subroutine radf3
464
+ subroutine radf4(ido,l1,cc,ch,wa1,wa2,wa3) ! in :fishpack_core:fftpack.f
465
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
466
+ integer, optional,check(shape(cc, 1) == l1),depend(cc) :: l1=shape(cc, 1)
467
+ real dimension(ido,l1,4) :: cc
468
+ real dimension(ido,4,l1),depend(ido,l1) :: ch
469
+ real dimension(*) :: wa1
470
+ real dimension(*) :: wa2
471
+ real dimension(*) :: wa3
472
+ end subroutine radf4
473
+ subroutine radf5(ido,l1,cc,ch,wa1,wa2,wa3,wa4) ! in :fishpack_core:fftpack.f
474
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
475
+ integer, optional,check(shape(cc, 1) == l1),depend(cc) :: l1=shape(cc, 1)
476
+ real dimension(ido,l1,5) :: cc
477
+ real dimension(ido,5,l1),depend(ido,l1) :: ch
478
+ real dimension(*) :: wa1
479
+ real dimension(*) :: wa2
480
+ real dimension(*) :: wa3
481
+ real dimension(*) :: wa4
482
+ end subroutine radf5
483
+ subroutine radfg(ido,ip,l1,idl1,cc,c1,c2,ch,ch2,wa) ! in :fishpack_core:fftpack.f
484
+ integer, optional,check(shape(cc, 0) == ido),depend(cc) :: ido=shape(cc, 0)
485
+ integer, optional,check(shape(cc, 1) == ip),depend(cc) :: ip=shape(cc, 1)
486
+ integer, optional,check(shape(cc, 2) == l1),depend(cc) :: l1=shape(cc, 2)
487
+ integer, optional,check(shape(c2, 0) == idl1),depend(c2) :: idl1=shape(c2, 0)
488
+ real dimension(ido,ip,l1) :: cc
489
+ real dimension(ido,l1,ip),depend(ido,l1,ip) :: c1
490
+ real dimension(idl1,ip),depend(ip) :: c2
491
+ real dimension(ido,l1,ip),depend(ido,l1,ip) :: ch
492
+ real dimension(idl1,ip),depend(idl1,ip) :: ch2
493
+ real dimension(*) :: wa
494
+ end subroutine radfg
495
+ function pimach(dum) ! in :fishpack_core:fftpack.f
496
+ real :: dum
497
+ real :: pimach
498
+ end function pimach
499
+ end interface
500
+ end python module fishpack_core
501
+
502
+ ! This file was auto-generated with f2py (version:2.3.2).
503
+ ! See:
504
+ ! https://web.archive.org/web/20140822061353/http://cens.ioc.ee/projects/f2py2e