NCEPLIBS-sp 2.4.0
spwget.f
Go to the documentation of this file.
1C> @file
2C> @brief Get wave-space constants.
3C> @author Iredell @date 96-02-29
4
5C> This subprogram gets wave-space constants.
6C>
7C> @param IROMB spectral domain shape (0 for triangular, 1 for rhomboidal)
8C> @param MAXWV spectral truncation
9C> @param EPS
10C> @param EPSTOP
11C> @param ENN1
12C> @param ELONN1
13C> @param EON
14C> @param EONTOP
15C>
16C> @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