NCEPLIBS-sp  2.5.0
spwget.f
Go to the documentation of this file.
1 C> @file
2 C> @brief Get wave-space constants.
3 C> @author Iredell @date 96-02-29
4 
5 C> This subprogram gets wave-space constants.
6 C>
7 C> @param IROMB spectral domain shape (0 for triangular, 1 for rhomboidal)
8 C> @param MAXWV spectral truncation
9 C> @param EPS
10 C> @param EPSTOP
11 C> @param ENN1
12 C> @param ELONN1
13 C> @param EON
14 C> @param EONTOP
15 C>
16 C> @author Iredell @date 96-02-29
17  SUBROUTINE spwget(IROMB,MAXWV,EPS,EPSTOP,ENN1,ELONN1,EON,EONTOP)
18  REAL EPS((MAXWV+1)*((IROMB+1)*MAXWV+2)/2),EPSTOP(MAXWV+1)
19  REAL ENN1((MAXWV+1)*((IROMB+1)*MAXWV+2)/2)
20  REAL ELONN1((MAXWV+1)*((IROMB+1)*MAXWV+2)/2)
21  REAL EON((MAXWV+1)*((IROMB+1)*MAXWV+2)/2),EONTOP(MAXWV+1)
22 
23  mx=(maxwv+1)*((iromb+1)*maxwv+2)/2
24  mxtop=maxwv+1
25  CALL speps(iromb,maxwv,eps,epstop,enn1,elonn1,eon,eontop)
26  END
subroutine speps(I, M, EPS, EPSTOP, ENN1, ELONN1, EON, EONTOP)
Computes constant fields indexed in the spectral domain in "IBM ORDER" (Zonal wavenumber is the slowe...
Definition: speps.f:26
subroutine spwget(IROMB, MAXWV, EPS, EPSTOP, ENN1, ELONN1, EON, EONTOP)
This subprogram gets wave-space constants.
Definition: spwget.f:18