forked from szy21/pycles_GCM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Radiation.pxd
359 lines (306 loc) · 12.8 KB
/
Radiation.pxd
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
cimport Grid
cimport ReferenceState
cimport PrognosticVariables
cimport DiagnosticVariables
from NetCDFIO cimport NetCDFIO_Stats
cimport ParallelMPI
cimport TimeStepping
cimport Surface
from Forcing cimport AdjustedMoistAdiabat
cdef class RadiationBase:
cdef:
double [:] heating_rate
double [:] dTdt_rad
ParallelMPI.Pencil z_pencil
double srf_lw_down
double srf_lw_up
double srf_sw_down
double srf_sw_up
cpdef initialize(self, Grid.Grid Gr, NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef initialize_profiles(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef update(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref,
PrognosticVariables.PrognosticVariables PV, DiagnosticVariables.DiagnosticVariables DV, Surface.SurfaceBase Sur,
TimeStepping.TimeStepping TS, ParallelMPI.ParallelMPI Pa)
cpdef stats_io(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cdef class RadiationNone(RadiationBase):
cpdef initialize(self, Grid.Grid Gr, NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef initialize_profiles(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef update(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref,
PrognosticVariables.PrognosticVariables PV, DiagnosticVariables.DiagnosticVariables DV,
Surface.SurfaceBase Sur, TimeStepping.TimeStepping TS,ParallelMPI.ParallelMPI Pa)
cpdef stats_io(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cdef class RadiationPrescribed(RadiationBase):
cdef:
bint gcm_profiles_initialized
double [:] t_tend_rad
double [:] s_tend_rad
str file
int site
cpdef initialize(self, Grid.Grid Gr, NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef initialize_profiles(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef update(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref,
PrognosticVariables.PrognosticVariables PV, DiagnosticVariables.DiagnosticVariables DV,
Surface.SurfaceBase Sur, TimeStepping.TimeStepping TS,ParallelMPI.ParallelMPI Pa)
cpdef stats_io(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cdef class RadiationDyCOMS_RF01(RadiationBase):
cdef:
double alpha_z
double kap
double f0
double f1
double divergence
cpdef initialize(self, Grid.Grid Gr, NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef initialize_profiles(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef update(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref,
PrognosticVariables.PrognosticVariables PV, DiagnosticVariables.DiagnosticVariables DV,
Surface.SurfaceBase Sur,TimeStepping.TimeStepping TS, ParallelMPI.ParallelMPI Pa)
cpdef stats_io(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cdef class RadiationSmoke(RadiationBase):
cdef:
double f0
double kap
cpdef initialize(self, Grid.Grid Gr, NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef initialize_profiles(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef update(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref,
PrognosticVariables.PrognosticVariables PV, DiagnosticVariables.DiagnosticVariables DV, Surface.SurfaceBase Sur,
TimeStepping.TimeStepping TS, ParallelMPI.ParallelMPI Pa)
cpdef stats_io(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cdef class RadiationRRTM(RadiationBase):
cdef:
str profile_name
str file
bint modified_adiabat
bint griddata
bint read_file
int site
double lat
double lon
AdjustedMoistAdiabat reference_profile
double Tg_adiabat
double Pg_adiabat
double RH_adiabat
Py_ssize_t n_buffer
Py_ssize_t n_ext
double stretch_factor
double patch_pressure
double toa_lw_down
double toa_lw_up
double toa_sw_down
double toa_sw_up
double srf_lw_down_clr
double srf_lw_up_clr
double srf_sw_down_clr
double srf_sw_up_clr
double toa_lw_down_clr
double toa_lw_up_clr
double toa_sw_down_clr
double toa_sw_up_clr
double [:] lw_flux_up
double [:] lw_flux_up_clr
double [:] lw_flux_down
double [:] lw_flux_down_clr
double [:] sw_flux_up
double [:] sw_flux_up_clr
double [:] sw_flux_down
double [:] sw_flux_down_clr
double [:] p_ext
double [:] t_ext
double [:] rv_ext
double [:] p_full
double [:] pi_full
double co2_factor
double h2o_factor
int dyofyr
double scon
double adjes
double solar_constant
double toa_sw
double coszen
double adif
double adir
double radiation_frequency
double next_radiation_calculate
double [:] o3vmr
double [:] co2vmr
double [:] ch4vmr
double [:] n2ovmr
double [:] o2vmr
double [:] cfc11vmr
double [:] cfc12vmr
double [:] cfc22vmr
double [:] ccl4vmr
bint uniform_reliq
bint clear_sky
cpdef initialize(self, Grid.Grid Gr, NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef initialize_profiles(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef update(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref,
PrognosticVariables.PrognosticVariables PV, DiagnosticVariables.DiagnosticVariables DV,
Surface.SurfaceBase Sur, TimeStepping.TimeStepping TS, ParallelMPI.ParallelMPI Pa)
cdef update_RRTM(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref,
PrognosticVariables.PrognosticVariables PV, DiagnosticVariables.DiagnosticVariables DV,
Surface.SurfaceBase Sur,ParallelMPI.ParallelMPI Pa)
cpdef stats_io(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cdef class RadiationGCMGrey(RadiationBase):
cdef:
double insolation
double solar_constant
double lw_tau0_eqtr
double lw_tau0_pole
double atm_abs
double sw_diff
double lw_linear_frac
double albedo_value
double lw_tau_exponent
double sw_tau_exponent
double del_sol
double lat_rad
str file
double lw_tau0
double sw_tau0
double odp
double [:] p_gcm
double [:] alpha_gcm
double [:] t_gcm
double [:] z_gcm
double [:] p_ext
double [:] t_ext
double [:] z_ext
double [:] alpha_ext
Py_ssize_t n_ext_profile
double [:] lw_tau
double [:] sw_tau
double [:] lw_dtrans
double [:] lw_down
double [:] sw_down
double [:] lw_up
double [:] sw_up
double [:] net_flux
double [:] h_profile
double [:] dsdt_profile
double t_ref
double p0_les_min
double dp
double lat
double lon
cpdef initialize(self, Grid.Grid Gr, NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef initialize_profiles(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef update(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref,
PrognosticVariables.PrognosticVariables PV, DiagnosticVariables.DiagnosticVariables DV,
Surface.SurfaceBase Sur, TimeStepping.TimeStepping TS, ParallelMPI.ParallelMPI Pa)
cpdef stats_io(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cdef class RadiationGCMGreyVarying(RadiationBase):
cdef:
bint gcm_profiles_initialized
int t_indx
double insolation
double solar_constant
double lw_tau0_eqtr
double lw_tau0_pole
double atm_abs
double sw_diff
double lw_linear_frac
double albedo_value
double lw_tau_exponent
double sw_tau_exponent
double del_sol
double lat
str file
double lw_tau0
double sw_tau0
double odp
double [:] p_gcm
double [:] alpha_gcm
double [:] t_gcm
double [:] z_gcm
double [:] p_ext
double [:] t_ext
double [:] z_ext
double [:] alpha_ext
Py_ssize_t n_ext_profile
double [:] lw_tau
double [:] sw_tau
double [:] lw_dtrans
double [:] lw_down
double [:] sw_down
double [:] lw_up
double [:] sw_up
double [:] net_flux
double [:] h_profile
double [:] dsdt_profile
double t_ref
double p0_les_min
double dp
cpdef initialize(self, Grid.Grid Gr, NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef initialize_profiles(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef update(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref,
PrognosticVariables.PrognosticVariables PV, DiagnosticVariables.DiagnosticVariables DV,
Surface.SurfaceBase Sur, TimeStepping.TimeStepping TS, ParallelMPI.ParallelMPI Pa)
cpdef stats_io(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cdef class RadiationGCMGreyMean(RadiationBase):
cdef:
bint gcm_profiles_initialized
int t_indx
double insolation
double solar_constant
double lw_tau0_eqtr
double lw_tau0_pole
double atm_abs
double sw_diff
double lw_linear_frac
double albedo_value
double lw_tau_exponent
double sw_tau_exponent
double del_sol
double lat_rad
str file
double lw_tau0
double sw_tau0
double odp
double [:] p_gcm
double [:] alpha_gcm
double [:] t_gcm
double [:] z_gcm
double [:] p_ext
double [:] t_ext
double [:] z_ext
double [:] alpha_ext
Py_ssize_t n_ext_profile
double [:] lw_tau
double [:] sw_tau
double [:] lw_dtrans
double [:] lw_down
double [:] sw_down
double [:] lw_up
double [:] sw_up
double [:] net_flux
double [:] h_profile
double [:] dsdt_profile
double t_ref
double p0_les_min
double dp
double lat
double lon
cpdef initialize(self, Grid.Grid Gr, NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef initialize_profiles(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)
cpdef update(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref,
PrognosticVariables.PrognosticVariables PV, DiagnosticVariables.DiagnosticVariables DV,
Surface.SurfaceBase Sur, TimeStepping.TimeStepping TS, ParallelMPI.ParallelMPI Pa)
cpdef stats_io(self, Grid.Grid Gr, ReferenceState.ReferenceState Ref, DiagnosticVariables.DiagnosticVariables DV,
NetCDFIO_Stats NS, ParallelMPI.ParallelMPI Pa)