/[MITgcm]/MITgcm/verification/global_with_exf/input/data.exf
ViewVC logotype

Annotation of /MITgcm/verification/global_with_exf/input/data.exf

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.11 - (hide annotations) (download)
Fri Mar 13 14:22:56 2015 UTC (9 years, 2 months ago) by mlosch
Branch: MAIN
CVS Tags: checkpoint65k
Changes since 1.10: +10 -3 lines
modify experiment to test new code that allows input grids with
latitude starting in the north: add trenberth_taux.flipped, which is
the same as trenberth_taux.bin except for the j-direction flipped,
generated in python like this:

>> f=open('trenberth_taux.bin','rb')
>> tmp=np.fromfile(f,'float32').reshape([12,40,90])
>> f.close()
>> f.open('trenberth_taux.flipped','wb')
>> tmp[:,::-1,:].tofile(f)
>> f.close()

and change data.exf to use this file properly

1 heimbach 1.2 # *********************
2     # External Forcing Data
3     # *********************
4 heimbach 1.6 &EXF_NML_01
5     exf_iprec = 32,
6 jmc 1.9 exf_debugLev = 3,
7 heimbach 1.6 &
8    
9     # *********************
10     &EXF_NML_02
11 jmc 1.10 #hfluxstartdate1 = 19920101,
12     #hfluxstartdate2 = 000000,
13     hfluxperiod = -12.,
14     #
15     #sfluxstartdate1 = 19920101,
16     #sfluxstartdate2 = 000000,
17     sfluxperiod = -12.,
18     #
19     #ustressstartdate1 = 19920101,
20     #ustressstartdate2 = 000000,
21     ustressperiod = -12.,
22     #
23     #vstressstartdate1 = 19920101,
24     #vstressstartdate2 = 000000,
25     vstressperiod = -12.,
26     #
27     #climsststartdate1 = 19920101,
28     #climsststartdate2 = 000000,
29     climsstperiod = -12.,
30 gforget 1.7 # 2 months restoring timescale for temperature
31 jmc 1.10 climsstTauRelax = 5184000.,
32 heimbach 1.6 #
33 jmc 1.10 #climsssstartdate1 = 19920101,
34     #climsssstartdate2 = 000000,
35     climsssperiod = -12.,
36 gforget 1.7 # 6 months restoring timescale for salinity
37 jmc 1.10 climsssTauRelax = 15552000.,
38 heimbach 1.6 #
39     hfluxfile = 'ncep_qnet.bin',
40 jmc 1.10 #sfluxfile = 'ncep_emp.bin',
41 mlosch 1.11 # here we deviate from the general pattern and prescribe a forcing fiels
42     # with (i,j)=(1,1) at the NW (.flipped) instead of the SW (.bin) corner
43     # to test the correpsonding code, see also below
44     #ustressfile = 'trenberth_taux.bin',
45     ustressfile = 'trenberth_taux.flipped',
46 heimbach 1.6 vstressfile = 'trenberth_tauy.bin',
47     climsstfile = 'lev_sst.bin',
48     climsssfile = 'lev_sss.bin',
49     #
50     &
51    
52     # *********************
53     &EXF_NML_03
54     &
55    
56     # *********************
57     &EXF_NML_04
58 jmc 1.10 hflux_lon0 = 2.,
59     hflux_lon_inc = 4.,
60     hflux_lat0 = -78.,
61     hflux_lat_inc = 39*4.,
62     hflux_nlon = 90,
63     hflux_nlat = 40,
64     #
65     sflux_lon0 = 2.,
66     sflux_lon_inc = 4.,
67     sflux_lat0 = -78.,
68     sflux_lat_inc = 39*4.,
69     sflux_nlon = 90,
70     sflux_nlat = 40,
71     #
72 mlosch 1.11 # here we deviate from the general pattern and prescribe a forcing fiels
73     # with (i,j)=(1,1) at the NW instead of the SW corner; the grid
74     # information has been change so that latitude now starts in the north
75 jmc 1.10 ustress_lon0 = 0.,
76     ustress_lon_inc = 4.,
77 mlosch 1.11 ustress_lat0 = 78.,
78     ustress_lat_inc = 39*-4.,
79 jmc 1.10 ustress_nlon = 90,
80     ustress_nlat = 40,
81     #
82     vstress_lon0 = 2.,
83     vstress_lon_inc = 4.,
84     vstress_lat0 = -80.,
85     vstress_lat_inc = 39*4.,
86     vstress_nlon = 90,
87     vstress_nlat = 40,
88     #
89     climsst_lon0 = 2.,
90     climsst_lon_inc = 4.,
91     climsst_lat0 = -78.,
92     climsst_lat_inc = 39*4.,
93     climsst_nlon = 90,
94     climsst_nlat = 40,
95     #
96     climsss_lon0 = 2.,
97     climsss_lon_inc = 4.,
98     climsss_lat0 = -78.,
99     climsss_lat_inc = 39*4.,
100     climsss_nlon = 90,
101     climsss_nlat = 40,
102 heimbach 1.2 #
103     &

  ViewVC Help
Powered by ViewVC 1.1.22