-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathvariables_diagnostic_module.F90
657 lines (498 loc) · 23.7 KB
/
variables_diagnostic_module.F90
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
!-------------------------------------------------------------------------
! $Id$
!===============================================================================
module variables_diagnostic_module
! Description:
! This module contains definitions of all diagnostic
! arrays used in the single column model, as well as subroutines
! to allocate, deallocate and initialize them.
! Note that while these are all same dimension, there is a
! thermodynamic and momentum grid and they have different levels
!-----------------------------------------------------------------------
use pdf_parameter_module, only: &
pdf_parameter ! derived type
use clubb_precision, only: &
core_rknd ! Variable(s)
implicit none
private ! Set default scope
public :: setup_diagnostic_variables, &
cleanup_diagnostic_variables
! Diagnostic variables
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
sigma_sqd_w_zt, & ! PDF width parameter interpolated to t-levs. [-]
Skw_zm, & ! Skewness of w on momentum levels [-]
Skw_zt, & ! Skewness of w on thermodynamic levels [-]
Skthl_zm, & ! Skewness of w on momentum levels [-]
Skthl_zt, & ! Skewness of w on thermodynamic levels [-]
Skrt_zm, & ! Skewness of w on momentum levels [-]
Skrt_zt, & ! Skewness of w on thermodynamic levels [-]
ug, & ! u geostrophic wind [m/s]
vg, & ! v geostrophic wind [m/s]
um_ref, & ! Initial u wind; Michael Falk [m/s]
vm_ref, & ! Initial v wind; Michael Falk [m/s]
thlm_ref, & ! Initial liquid water potential temperature [K]
rtm_ref, & ! Initial total water mixing ratio [kg/kg]
thvm ! Virtual potential temperature [K]
!!! Important Note !!!
! Do not indent the omp comments, they need to be in the first 4 columns
!!! End Important Note !!!
!$omp threadprivate(sigma_sqd_w_zt, Skw_zm, Skw_zt, Skthl_zm, Skthl_zt, Skrt_zm, &
!$omp Skrt_zt, ug, vg, um_ref, vm_ref, thlm_ref, rtm_ref, thvm )
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
rsat ! Saturation mixing ratio ! Brian
!$omp threadprivate(rsat)
type(pdf_parameter), allocatable, public, save :: &
pdf_params_zm, & ! pdf_params on momentum levels [units vary]
pdf_params_zm_frz !used when l_use_ice_latent = .true.
!$omp threadprivate(pdf_params_zm, pdf_params_zm_frz)
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
Frad, & ! Radiative flux (momentum point) [W/m^2]
radht, & ! SW + LW heating rate [K/s]
Frad_SW_up, & ! SW radiative upwelling flux [W/m^2]
Frad_LW_up, & ! LW radiative upwelling flux [W/m^2]
Frad_SW_down, & ! SW radiative downwelling flux [W/m^2]
Frad_LW_down ! LW radiative downwelling flux [W/m^2]
!$omp threadprivate(Frad, radht, Frad_SW_up, Frad_SW_down, Frad_LW_up, Frad_LW_down)
! Second order moments
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
thlprcp, & ! thl'rc' [K kg/kg]
rtprcp, & ! rt'rc' [kg^2/kg^2]
rcp2 ! rc'^2 [kg^2/kg^2]
!$omp threadprivate(thlprcp, rtprcp, rcp2)
! Third order moments
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
wpthlp2, & ! w'thl'^2 [m K^2/s]
wp2thlp, & ! w'^2 thl' [m^2 K/s^2]
wprtp2, & ! w'rt'^2 [m kg^2/kg^2]
wp2rtp, & ! w'^2rt' [m^2 kg/kg]
wprtpthlp, & ! w'rt'thl' [m kg K/kg s]
wp2rcp, & ! w'^2 rc' [m^2 kg/kg s^2]
wp3_zm, & ! w'^3 [m^3/s^3]
thlp3, & ! thl'^3 [K^3]
thlp3_zm, & ! thl'^3 [K^3]
rtp3, & ! rt'^3 [kg^3/kg^3]
rtp3_zm ! rt'^3 [kg^3/kg^3]
!$omp threadprivate(wpthlp2, wp2thlp, wprtp2, wp2rtp, &
!$omp wprtpthlp, wp2rcp, wp3_zm, thlp3, thlp3_zm, rtp3, rtp3_zm )
! Fourth order moments
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
wp4 ! w'^4 [m^4/s^4]
!$omp threadprivate(wp4)
! Buoyancy related moments
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
rtpthvp, & ! rt'thv' [K kg/kg]
thlpthvp, & ! thl'thv' [K^2]
wpthvp, & ! w'thv' [K m/s]
wp2thvp ! w'^2thv' [K m^2/s^2]
!$omp threadprivate(rtpthvp, thlpthvp, wpthvp, wp2thvp)
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
Kh_zt, & ! Eddy diffusivity coefficient on thermodynamic levels [m^2/s]
Kh_zm ! Eddy diffusivity coefficient on momentum levels [m^2/s]
!$omp threadprivate(Kh_zt, Kh_zm)
real( kind = core_rknd ), allocatable, dimension(:,:), public :: &
K_hm ! Eddy diffusivity coefficient for hydrometeors on momentum levels [m^2 s^-1]
!$omp threadprivate(K_hm)
! Mixing lengths
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
Lscale, Lscale_up, Lscale_down ! [m]
!$omp threadprivate(Lscale, Lscale_up, Lscale_down)
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
em, & ! Turbulent Kinetic Energy (TKE) [m^2/s^2]
tau_zm, & ! Eddy dissipation time scale on momentum levels [s]
tau_zt ! Eddy dissipation time scale on thermodynamic levels [s]
!$omp threadprivate(em, tau_zm, tau_zt)
! hydrometeors variable arrays
real( kind = core_rknd ), allocatable, dimension(:,:), public :: &
hydromet, & ! Mean hydrometeor (thermodynamic levels) [units]
hydrometp2, & ! Variance of a hydrometeor (overall) (m-levs.) [units^2]
wphydrometp ! Covariance of w and hydrometeor (momentum levels) [(m/s)un]
!$omp threadprivate( hydromet, hydrometp2, wphydrometp )
! Cloud droplet concentration arrays
real( kind = core_rknd ), allocatable, dimension(:), public :: &
Ncm, & ! Mean cloud droplet concentration, <N_c> (thermo. levels) [num/kg]
wpNcp ! Covariance of w and N_c, <w'N_c'> (momentum levels) [(m/s)(#/kg)]
!$omp threadprivate(Ncm,wpNcp)
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
Nccnm ! Cloud condensation nuclei concentration (COAMPS/MG) [num/kg]
!$omp threadprivate(Nccnm)
! Surface data
real( kind = core_rknd ), public :: ustar ! Average value of friction velocity [m/s]
real( kind = core_rknd ), public :: soil_heat_flux ! Soil Heat Flux [W/m^2]
!$omp threadprivate(ustar, soil_heat_flux)
! Passive scalar variables
real( kind = core_rknd ), target, allocatable, dimension(:,:), public :: &
wpedsclrp ! w'edsclr'
!$omp threadprivate(wpedsclrp)
real( kind = core_rknd ), target, allocatable, dimension(:,:), public :: &
sclrpthvp, & ! sclr'th_v'
sclrprcp, & ! sclr'rc'
wp2sclrp, & ! w'^2 sclr'
wpsclrp2, & ! w'sclr'^2
wpsclrprtp, & ! w'sclr'rt'
wpsclrpthlp ! w'sclr'thl'
!$omp threadprivate(sclrpthvp, sclrprcp, &
!$omp wp2sclrp, wpsclrp2, wpsclrprtp, wpsclrpthlp )
! Interpolated variables for tuning
!
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
wp2_zt, & ! w'^2 on thermo. grid [m^2/s^2]
thlp2_zt, & ! thl'^2 on thermo. grid [K^2]
wpthlp_zt, & ! w'thl' on thermo. grid [m K/s]
wprtp_zt, & ! w'rt' on thermo. grid [m kg/(kg s)]
rtp2_zt, & ! rt'^2 on therm. grid [(kg/kg)^2]
rtpthlp_zt, & ! rt'thl' on thermo. grid [kg K/kg]
up2_zt, & ! u'^2 on thermo. grid [m^2/s^2]
vp2_zt, & ! v'^2 on thermo. grid [m^2/s^2]
upwp_zt, & ! u'w' on thermo. grid [m^2/s^2]
vpwp_zt ! v'w' on thermo. grid [m^2/s^2]
!$omp threadprivate(wp2_zt, thlp2_zt, wpthlp_zt, wprtp_zt, &
!$omp rtp2_zt, rtpthlp_zt, &
!$omp up2_zt, vp2_zt, upwp_zt, vpwp_zt)
! Latin Hypercube arrays. Vince Larson 22 May 2005
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
lh_AKm, & ! Kessler ac estimate [kg/kg/s]
AKm, & ! Exact Kessler ac [kg/kg/s]
AKstd, & ! St dev of exact Kessler ac [kg/kg/s]
AKstd_cld, & ! Stdev of exact w/in cloud ac [kg/kg/s]
lh_rcm_avg, & ! Monte Carlo rcm estimate [kg/kg]
AKm_rcm, & ! Kessler ac based on rcm [kg/kg/s]
AKm_rcc ! Kessler ac based on rcm/cloud_frac [kg/kg/s]
!$omp threadprivate(lh_AKm, AKm, AKstd, AKstd_cld, lh_rcm_avg, AKm_rcm, &
!$omp AKm_rcc)
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
Skw_velocity, & ! Skewness velocity [m/s]
a3_coef, & ! The a3 coefficient from CLUBB eqns [-]
a3_coef_zt ! The a3 coefficient interpolated to the zt grid [-]
!$omp threadprivate(Skw_velocity, a3_coef, a3_coef_zt)
real( kind = core_rknd ), target, allocatable, dimension(:), public :: &
wp3_on_wp2, & ! w'^3 / w'^2 on the zm grid [m/s]
wp3_on_wp2_zt ! w'^3 / w'^2 on the zt grid [m/s]
!$omp threadprivate(wp3_on_wp2, wp3_on_wp2_zt)
contains
!-----------------------------------------------------------------------
subroutine setup_diagnostic_variables( nz )
! Description:
! Allocates and initializes prognostic scalar and array variables
! for the CLUBB model code
!-----------------------------------------------------------------------
use constants_clubb, only: &
em_min ! Constant(s)
use parameters_model, only: &
hydromet_dim, & ! Variables
sclr_dim, &
edsclr_dim
use pdf_parameter_module, only: &
init_pdf_params ! Procedure(s)
use clubb_precision, only: &
core_rknd ! Variable(s)
implicit none
! Input Variables
integer, intent(in) :: nz ! Nunber of grid levels [-]
! Local Variables
integer :: i
! --- Allocation ---
! Diagnostic variables
allocate( sigma_sqd_w_zt(1:nz) ) ! PDF width parameter interp. to t-levs.
allocate( Skw_zm(1:nz) ) ! Skewness of w on momentum levels
allocate( Skw_zt(1:nz) ) ! Skewness of w on thermodynamic levels
allocate( Skthl_zm(1:nz) ) ! Skewness of thl on momentum levels
allocate( Skthl_zt(1:nz) ) ! Skewness of thl on thermodynamic levels
allocate( Skrt_zm(1:nz) ) ! Skewness of rt on momentum levels
allocate( Skrt_zt(1:nz) ) ! Skewness of rt on thermodynamic levels
allocate( ug(1:nz) ) ! u geostrophic wind
allocate( vg(1:nz) ) ! v geostrophic wind
allocate( um_ref(1:nz) ) ! Reference u wind for nudging; Michael Falk, 17 Oct 2007
allocate( vm_ref(1:nz) ) ! Reference v wind for nudging; Michael Falk, 17 Oct 2007
allocate( thlm_ref(1:nz) ) ! Reference liquid water potential for nudging
allocate( rtm_ref(1:nz) ) ! Reference total water mixing ratio for nudging
allocate( thvm(1:nz) ) ! Virtual potential temperature
allocate( rsat(1:nz) ) ! Saturation mixing ratio ! Brian
allocate( Frad(1:nz) ) ! radiative flux (momentum point)
allocate( Frad_SW_up(1:nz) )
allocate( Frad_LW_up(1:nz) )
allocate( Frad_SW_down(1:nz) )
allocate( Frad_LW_down(1:nz) )
allocate( radht(1:nz) ) ! SW + LW heating rate
! pdf_params on momentum levels
allocate( pdf_params_zm )
allocate( pdf_params_zm_frz )
call init_pdf_params( nz, pdf_params_zm )
call init_pdf_params( nz, pdf_params_zm_frz )
! Second order moments
allocate( thlprcp(1:nz) ) ! thl'rc'
allocate( rtprcp(1:nz) ) ! rt'rc'
allocate( rcp2(1:nz) ) ! rc'^2
! Third order moments
allocate( wpthlp2(1:nz) ) ! w'thl'^2
allocate( wp2thlp(1:nz) ) ! w'^2thl'
allocate( wprtp2(1:nz) ) ! w'rt'^2
allocate( wp2rtp(1:nz) ) ! w'^2rt'
allocate( wprtpthlp(1:nz) ) ! w'rt'thl'
allocate( wp2rcp(1:nz) ) ! w'^2rc'
allocate( wp3_zm(1:nz) ) ! w'^3
allocate( thlp3(1:nz) ) ! thl'^3
allocate( thlp3_zm(1:nz) ) ! thl'^3
allocate( rtp3(1:nz) ) ! rt'^3
allocate( rtp3_zm(1:nz) ) ! rt'^3
! Fourth order moments
allocate( wp4(1:nz) )
! Buoyancy related moments
allocate( rtpthvp(1:nz) ) ! rt'thv'
allocate( thlpthvp(1:nz) ) ! thl'thv'
allocate( wpthvp(1:nz) ) ! w'thv'
allocate( wp2thvp(1:nz) ) ! w'^2thv'
allocate( Kh_zt(1:nz) ) ! Eddy diffusivity coefficient: thermo. levels
allocate( Kh_zm(1:nz) ) ! Eddy diffusivity coefficient: momentum levels
allocate( K_hm(1:nz,1:hydromet_dim) ) ! Eddy diff. coef. for hydromets.: mom. levs.
allocate( em(1:nz) )
allocate( Lscale(1:nz) )
allocate( Lscale_up(1:nz) )
allocate( Lscale_down(1:nz) )
allocate( tau_zm(1:nz) ) ! Eddy dissipation time scale: momentum levels
allocate( tau_zt(1:nz) ) ! Eddy dissipation time scale: thermo. levels
! Interpolated Variables
allocate( wp2_zt(1:nz) ) ! w'^2 on thermo. grid
allocate( thlp2_zt(1:nz) ) ! thl'^2 on thermo. grid
allocate( wpthlp_zt(1:nz) ) ! w'thl' on thermo. grid
allocate( wprtp_zt(1:nz) ) ! w'rt' on thermo. grid
allocate( rtp2_zt(1:nz) ) ! rt'^2 on thermo. grid
allocate( rtpthlp_zt(1:nz) ) ! rt'thl' on thermo. grid
allocate( up2_zt(1:nz) ) ! u'^2 on thermo. grid
allocate( vp2_zt(1:nz) ) ! v'^2 on thermo. grid
allocate( upwp_zt(1:nz) ) ! u'w' on thermo. grid
allocate( vpwp_zt(1:nz) ) ! v'w' on thermo. grid
! Microphysics Variables
allocate( Nccnm(1:nz) )
allocate( hydromet(1:nz,1:hydromet_dim) ) ! All hydrometeor mean fields
allocate( hydrometp2(1:nz,1:hydromet_dim) ) ! All < h_m'^2 > fields
allocate( wphydrometp(1:nz,1:hydromet_dim) ) ! All < w'h_m' > fields
allocate( Ncm(1:nz) ) ! Mean cloud droplet concentration, < N_c >
allocate( wpNcp(1:nz) ) ! < w'N_c' >
! Variables for Latin hypercube microphysics. Vince Larson 22 May 2005
allocate( lh_AKm(1:nz) ) ! Kessler ac estimate
allocate( AKm(1:nz) ) ! Exact Kessler ac
allocate( AKstd(1:nz) ) ! St dev of exact Kessler ac
allocate( AKstd_cld(1:nz) ) ! St dev of exact w/in cloud Kessler ac
allocate( lh_rcm_avg(1:nz) ) ! Monte Carlo rcm estimate
allocate( AKm_rcm(1:nz) ) ! Kessler ac based on rcm
allocate( AKm_rcc(1:nz) ) ! Kessler ac based on rcm/cloud_frac
! End of variables for Latin hypercube.
! High-order passive scalars
allocate( sclrpthvp(1:nz, 1:sclr_dim) )
allocate( sclrprcp(1:nz, 1:sclr_dim) )
allocate( wp2sclrp(1:nz, 1:sclr_dim) )
allocate( wpsclrp2(1:nz, 1:sclr_dim) )
allocate( wpsclrprtp(1:nz, 1:sclr_dim) )
allocate( wpsclrpthlp(1:nz, 1:sclr_dim) )
! Eddy Diff. Scalars
allocate( wpedsclrp(1:nz, 1:edsclr_dim) )
allocate( Skw_velocity(1:nz) )
allocate( a3_coef(1:nz) )
allocate( a3_coef_zt(1:nz) )
allocate( wp3_on_wp2(1:nz) )
allocate( wp3_on_wp2_zt(1:nz) )
! --- Initializaton ---
! Diagnostic variables
sigma_sqd_w_zt = 0.0_core_rknd ! PDF width parameter interp. to t-levs.
Skw_zm = 0.0_core_rknd ! Skewness of w on momentum levels
Skw_zt = 0.0_core_rknd ! Skewness of w on thermodynamic levels
Skthl_zm = 0.0_core_rknd ! Skewness of thl on momentum levels
Skthl_zt = 0.0_core_rknd ! Skewness of thl on thermodynamic levels
Skrt_zm = 0.0_core_rknd ! Skewness of rt on momentum levels
Skrt_zt = 0.0_core_rknd ! Skewness of rt on thermodynamic levels
ug = 0.0_core_rknd ! u geostrophic wind
vg = 0.0_core_rknd ! v geostrophic wind
um_ref = 0.0_core_rknd
vm_ref = 0.0_core_rknd
thlm_ref = 0.0_core_rknd
rtm_ref = 0.0_core_rknd
thvm = 0.0_core_rknd ! Virtual potential temperature
rsat = 0.0_core_rknd ! Saturation mixing ratio ! Brian
radht = 0.0_core_rknd ! Heating rate
Frad = 0.0_core_rknd ! Radiative flux
Frad_SW_up = 0.0_core_rknd
Frad_LW_up = 0.0_core_rknd
Frad_SW_down = 0.0_core_rknd
Frad_LW_down = 0.0_core_rknd
! Second order moments
thlprcp = 0.0_core_rknd
rtprcp = 0.0_core_rknd
rcp2 = 0.0_core_rknd
! Third order moments
wpthlp2 = 0.0_core_rknd
wp2thlp = 0.0_core_rknd
wprtp2 = 0.0_core_rknd
wp2rtp = 0.0_core_rknd
wp2rcp = 0.0_core_rknd
wprtpthlp = 0.0_core_rknd
wp3_zm = 0.0_core_rknd
thlp3 = 0.0_core_rknd
thlp3_zm = 0.0_core_rknd
rtp3 = 0.0_core_rknd
rtp3_zm = 0.0_core_rknd
! Fourth order moments
wp4 = 0.0_core_rknd
! Buoyancy related moments
rtpthvp = 0.0_core_rknd ! rt'thv'
thlpthvp = 0.0_core_rknd ! thl'thv'
wpthvp = 0.0_core_rknd ! w'thv'
wp2thvp = 0.0_core_rknd ! w'^2thv'
! Eddy diffusivity
Kh_zt = 0.0_core_rknd ! Eddy diffusivity coefficient: thermo. levels
Kh_zm = 0.0_core_rknd ! Eddy diffusivity coefficient: momentum levels
do i = 1, hydromet_dim, 1
K_hm(1:nz,i) = 0.0_core_rknd ! Eddy diff. coef. for hydromets.: mom. levs.
end do
! TKE
em = em_min
! Length scale
Lscale = 0.0_core_rknd
Lscale_up = 0.0_core_rknd
Lscale_down = 0.0_core_rknd
! Dissipation time
tau_zm = 0.0_core_rknd ! Eddy dissipation time scale: momentum levels
tau_zt = 0.0_core_rknd ! Eddy dissipation time scale: thermo. levels
! Hydrometer types
Nccnm(1:nz) = 0.0_core_rknd ! CCN concentration (COAMPS/MG)
do i = 1, hydromet_dim, 1
hydromet(1:nz,i) = 0.0_core_rknd
hydrometp2(1:nz,i) = 0.0_core_rknd
wphydrometp(1:nz,i) = 0.0_core_rknd
enddo
! Cloud droplet concentration
Ncm(1:nz) = 0.0_core_rknd
wpNcp(1:nz) = 0.0_core_rknd
! Variables for Latin hypercube microphysics. Vince Larson 22 May 2005
lh_AKm = 0.0_core_rknd ! Kessler ac estimate
AKm = 0.0_core_rknd ! Exact Kessler ac
AKstd = 0.0_core_rknd ! St dev of exact Kessler ac
AKstd_cld = 0.0_core_rknd ! St dev of exact w/in cloud Kessler ac
lh_rcm_avg = 0.0_core_rknd ! Monte Carlo rcm estimate
AKm_rcm = 0.0_core_rknd ! Kessler ac based on rcm
AKm_rcc = 0.0_core_rknd ! Kessler ac based on rcm/cloud_frac
! Passive scalars
if ( sclr_dim > 0 ) then
sclrpthvp(:,:) = 0.0_core_rknd
sclrprcp(:,:) = 0.0_core_rknd
wp2sclrp(:,:) = 0.0_core_rknd
wpsclrp2(:,:) = 0.0_core_rknd
wpsclrprtp(:,:) = 0.0_core_rknd
wpsclrpthlp(:,:) = 0.0_core_rknd
end if
if ( edsclr_dim > 0 ) then
wpedsclrp(:,:) = 0.0_core_rknd
end if
Skw_velocity = 0.0_core_rknd
a3_coef = 0.0_core_rknd
a3_coef_zt = 0.0_core_rknd
wp3_on_wp2 = 0.0_core_rknd
wp3_on_wp2_zt = 0.0_core_rknd
return
end subroutine setup_diagnostic_variables
!------------------------------------------------------------------------
subroutine cleanup_diagnostic_variables( )
! Description:
! Subroutine to deallocate variables defined in module global
!------------------------------------------------------------------------
implicit none
! --- Deallocate ---
! TODO: use more appropriate condition here
if (allocated(sigma_sqd_w_zt)) then
deallocate( sigma_sqd_w_zt ) ! PDF width parameter interp. to t-levs.
deallocate( Skw_zm ) ! Skewness of w on momentum levels
deallocate( Skw_zt ) ! Skewness of w on thermodynamic levels
deallocate( Skthl_zm ) ! Skewness of thl on momentum levels
deallocate( Skthl_zt ) ! Skewness of thl on thermodynamic levels
deallocate( Skrt_zm ) ! Skewness of rt on momentum levels
deallocate( Skrt_zt ) ! Skewness of rt on thermodynamic levels
deallocate( ug ) ! u geostrophic wind
deallocate( vg ) ! v geostrophic wind
deallocate( um_ref ) ! u initial
deallocate( vm_ref ) ! v initial
deallocate( thlm_ref )
deallocate( rtm_ref )
deallocate( thvm ) ! virtual potential temperature
deallocate( rsat ) ! saturation mixing ratio ! Brian
deallocate( Frad ) ! radiative flux (momentum point)
deallocate( Frad_SW_up ) ! upwelling shortwave radiative flux
deallocate( Frad_LW_up ) ! upwelling longwave radiative flux
deallocate( Frad_SW_down ) ! downwelling shortwave radiative flux
deallocate( Frad_LW_down ) ! downwelling longwave radiative flux
deallocate( radht ) ! SW + LW heating rate
deallocate( pdf_params_zm )
deallocate( pdf_params_zm_frz )
! Second order moments
deallocate( thlprcp ) ! thl'rc'
deallocate( rtprcp ) ! rt'rc'
deallocate( rcp2 ) ! rc'^2
! Third order moments
deallocate( wpthlp2 ) ! w'thl'^2
deallocate( wp2thlp ) ! w'^2thl'
deallocate( wprtp2 ) ! w'rt'^2
deallocate( wp2rtp ) ! w'^2rt'
deallocate( wprtpthlp ) ! w'rt'thl'
deallocate( wp2rcp ) ! w'^2rc'
deallocate( wp3_zm )
deallocate( thlp3 ) ! thl'^3
deallocate( thlp3_zm ) ! thl'^3
deallocate( rtp3 ) ! rt'^3
deallocate( rtp3_zm ) ! rt'^3
! Fourth order moments
deallocate( wp4 )
! Buoyancy related moments
deallocate( rtpthvp ) ! rt'thv'
deallocate( thlpthvp ) ! thl'thv'
deallocate( wpthvp ) ! w'thv'
deallocate( wp2thvp ) ! w'^2thv'
deallocate( Kh_zt ) ! Eddy diffusivity coefficient: thermo. levels
deallocate( Kh_zm ) ! Eddy diffusivity coefficient: momentum levels
deallocate( K_hm ) ! Eddy diff. coef. for hydromets.: mom. levs.
deallocate( em )
deallocate( Lscale )
deallocate( Lscale_up )
deallocate( Lscale_down )
deallocate( tau_zm ) ! Eddy dissipation time scale: momentum levels
deallocate( tau_zt ) ! Eddy dissipation time scale: thermo. levels
! Cloud water variables
deallocate( Nccnm )
deallocate( hydromet ) ! Hydrometeor mean fields
deallocate( hydrometp2 ) ! < h_m'^2 > fields
deallocate( wphydrometp ) ! < w'h_m' > fields
deallocate( Ncm ) ! Mean cloud droplet concentration, < N_c >
deallocate( wpNcp ) ! < w'N_c' >
! Interpolated variables for tuning
deallocate( wp2_zt ) ! w'^2 on thermo. grid
deallocate( thlp2_zt ) ! th_l'^2 on thermo. grid
deallocate( wpthlp_zt ) ! w'th_l' on thermo. grid
deallocate( wprtp_zt ) ! w'rt' on thermo. grid
deallocate( rtp2_zt ) ! rt'^2 on thermo. grid
deallocate( rtpthlp_zt ) ! rt'th_l' on thermo. grid
deallocate( up2_zt ) ! u'^2 on thermo. grid
deallocate( vp2_zt ) ! v'^2 on thermo. grid
deallocate( upwp_zt ) ! u'w' on thermo. grid
deallocate( vpwp_zt ) ! v'w' on thermo. grid
! Variables for Latin hypercube microphysics. Vince Larson 22 May 2005
deallocate( lh_AKm ) ! Kessler ac estimate
deallocate( AKm ) ! Exact Kessler ac
deallocate( AKstd ) ! St dev of exact Kessler ac
deallocate( AKstd_cld ) ! St dev of exact w/in cloud Kessler ac
deallocate( lh_rcm_avg ) ! Monte Carlo rcm estimate
deallocate( AKm_rcm ) ! Kessler ac based on rcm
deallocate( AKm_rcc ) ! Kessler ac based on rcm/cloud_frac
! Passive scalars
deallocate( sclrpthvp )
deallocate( sclrprcp )
deallocate( wp2sclrp )
deallocate( wpsclrp2 )
deallocate( wpsclrprtp )
deallocate( wpsclrpthlp )
deallocate( wpedsclrp )
deallocate( Skw_velocity )
deallocate( a3_coef )
deallocate( a3_coef_zt )
deallocate( wp3_on_wp2 )
deallocate( wp3_on_wp2_zt )
end if
return
end subroutine cleanup_diagnostic_variables
end module variables_diagnostic_module