-
Notifications
You must be signed in to change notification settings - Fork 0
/
cprnts.h
29 lines (29 loc) · 1.01 KB
/
cprnts.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
c====================== include file "cprnts.h" =======================
c
c variables used for controlling matrix printouts during diagnostic
c timesteps:
c
c nlatpr = maximum number of latitudes for matrix printouts
c on diagnostic time steps
c prlat = latitudes (deg) at which (x,z) printouts are desired
c
c start & end coordinates for matrix printouts of (x,z) sections
c
c prslon = starting longitudes (deg)
c prelon = ending longitudes (deg)
c prsdpt = starting depths (cm)
c predpt = ending depths (cm)
c
c start & end coordinates for matrix printouts of (x,y) sections
c
c slonxy = starting longitude (deg)
c elonxy = ending longitude (deg)
c slatxy = starting latitude (deg)
c elatxy = ending latitude (deg)
c
c matrix printouts of (y,z) sections will use above coordinates
c
common /cprnts/ prlat(nlatpr), prslon(nlatpr), prelon(nlatpr)
common /cprnts/ prsdpt(nlatpr), predpt(nlatpr)
common /cprnts/ slatxy, elatxy, slonxy, elonxy
c