-
Notifications
You must be signed in to change notification settings - Fork 748
/
Copy pathideal_nmm.F
1683 lines (1381 loc) · 60.3 KB
/
ideal_nmm.F
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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
! Create an initial data set for the WRF model based on an ideal condition
! This program is specifically set up for the NMM core.
PROGRAM ideal_nmm
USE module_machine
USE module_domain
USE module_initialize_ideal
USE module_io_domain
USE module_driver_constants
USE module_configure
USE module_timing
USE module_check_a_mundo
#if ( WRF_CHEM == 1 )
USE module_input_chem_data
USE module_input_chem_bioemiss
#endif
USE module_utility
#ifdef DM_PARALLEL
USE module_dm
#endif
IMPLICIT NONE
REAL :: time , bdyfrq
INTEGER :: loop , levels_to_process , debug_level
TYPE(domain) , POINTER :: null_domain
TYPE(domain) , POINTER :: grid
TYPE (grid_config_rec_type) :: config_flags
INTEGER :: number_at_same_level
INTEGER :: max_dom, domain_id
INTEGER :: idum1, idum2
#ifdef DM_PARALLEL
INTEGER :: nbytes
! INTEGER, PARAMETER :: configbuflen = 2*1024
INTEGER, PARAMETER :: configbuflen = 4*CONFIG_BUF_LEN
INTEGER :: configbuf( configbuflen )
LOGICAL , EXTERNAL :: wrf_dm_on_monitor
#endif
INTEGER :: ids , ide , jds , jde , kds , kde
INTEGER :: ims , ime , jms , jme , kms , kme
INTEGER :: ips , ipe , jps , jpe , kps , kpe
INTEGER :: ijds , ijde , spec_bdy_width
INTEGER :: i , j , k , idts
#ifdef DEREF_KLUDGE
! see http://www.mmm.ucar.edu/wrf/WG2/topics/deref_kludge.htm
INTEGER :: sm31 , em31 , sm32 , em32 , sm33 , em33
INTEGER :: sm31x, em31x, sm32x, em32x, sm33x, em33x
INTEGER :: sm31y, em31y, sm32y, em32y, sm33y, em33y
#endif
CHARACTER (LEN=80) :: message
INTEGER :: start_year , start_month , start_day
INTEGER :: start_hour , start_minute , start_second
INTEGER :: end_year , end_month , end_day , &
end_hour , end_minute , end_second
INTEGER :: interval_seconds , real_data_init_type
INTEGER :: time_loop_max , time_loop, rc
REAL :: t1,t2
#include "version_decl"
#include "commit_decl"
INTERFACE
SUBROUTINE Setup_Timekeeping( grid )
USE module_domain
TYPE(domain), POINTER :: grid
END SUBROUTINE Setup_Timekeeping
END INTERFACE
! Define the name of this program (program_name defined in module_domain)
program_name = "IDEAL_HWRF " // TRIM(release_version) // " PREPROCESSOR"
#ifdef DM_PARALLEL
CALL disable_quilting
#endif
! CALL start()
! Initialize the modules used by the WRF system.
! Many of the CALLs made from the
! init_modules routine are NO-OPs. Typical initializations
! are: the size of a
! REAL, setting the file handles to a pre-use value, defining moisture and
! chemistry indices, etc.
CALL wrf_debug ( 100 , 'ideal_hwrf: calling init_modules ' )
!!!! CALL init_modules
CALL init_modules(1) ! Phase 1 returns after MPI_INIT() (if it is called)
CALL WRFU_Initialize( defaultCalKind=WRFU_CAL_GREGORIAN, rc=rc )
CALL init_modules(2) ! Phase 2 resumes after MPI_INIT() (if it is called)
! The configuration switches mostly come from the NAMELIST input.
#ifdef DM_PARALLEL
IF ( wrf_dm_on_monitor() ) THEN
write(message,*) 'call initial_config'
CALL wrf_message ( message )
CALL initial_config
ENDIF
CALL get_config_as_buffer( configbuf, configbuflen, nbytes )
CALL wrf_dm_bcast_bytes( configbuf, nbytes )
CALL set_config_as_buffer( configbuf, configbuflen )
CALL wrf_dm_initialize
#else
CALL initial_config
#endif
CALL check_nml_consistency
CALL set_physics_rconfigs
CALL nl_get_debug_level ( 1, debug_level )
CALL set_wrf_debug_level ( debug_level )
CALL wrf_message ( program_name )
CALL wrf_message ( commit_version )
! Allocate the space for the mother of all domains.
NULLIFY( null_domain )
CALL wrf_debug ( 100 , 'ideal_hwrf: calling alloc_and_configure_domain ' )
CALL alloc_and_configure_domain ( domain_id = 1 , &
grid = head_grid , &
parent = null_domain , &
kid = -1 )
grid => head_grid
#include "deref_kludge.h"
CALL Setup_Timekeeping ( grid )
CALL domain_clock_set( grid, &
time_step_seconds=model_config_rec%interval_seconds )
CALL wrf_debug ( 100 , 'ideal_hwrf: calling set_scalar_indices_from_config ' )
CALL set_scalar_indices_from_config ( grid%id , idum1, idum2 )
CALL wrf_debug ( 100 , 'ideal_hwrf: calling model_to_grid_config_rec ' )
CALL model_to_grid_config_rec ( grid%id , model_config_rec , config_flags )
write(message,*) 'after model_to_grid_config_rec, e_we, e_sn are: ', &
config_flags%e_we, config_flags%e_sn
CALL wrf_message(message)
! Initialize the WRF IO: open files, init file handles, etc.
CALL wrf_debug ( 100 , 'ideal_hwrf: calling init_wrfio' )
CALL init_wrfio
! Some of the configuration values may have been modified from the initial READ
! of the NAMELIST, so we re-broadcast the configuration records.
#ifdef DM_PARALLEL
CALL wrf_debug ( 100 , 'ideal_hwrf: re-broadcast the configuration records' )
CALL get_config_as_buffer( configbuf, configbuflen, nbytes )
CALL wrf_dm_bcast_bytes( configbuf, nbytes )
CALL set_config_as_buffer( configbuf, configbuflen )
#endif
! No looping in this layer.
CALL med_sidata_input ( grid , config_flags )
! We are done.
CALL wrf_debug ( 0 , 'ideal_hwrf: SUCCESS COMPLETE IDEAL_HWRF INIT' )
#ifdef DM_PARALLEL
CALL wrf_dm_shutdown
#endif
CALL WRFU_Finalize( rc=rc )
END PROGRAM ideal_nmm
SUBROUTINE med_sidata_input ( grid , config_flags )
! Driver layer
USE module_domain
USE module_io_domain
! Model layer
USE module_configure
USE module_bc_time_utilities
USE module_initialize_ideal
USE module_optional_input
#if ( WRF_CHEM == 1 )
USE module_input_chem_data
USE module_input_chem_bioemiss
#endif
USE module_si_io_nmm
USE module_date_time
IMPLICIT NONE
! Interface
INTERFACE
SUBROUTINE start_domain ( grid , allowed_to_read )
USE module_domain
TYPE (domain) grid
LOGICAL, INTENT(IN) :: allowed_to_read
END SUBROUTINE start_domain
END INTERFACE
! Arguments
TYPE(domain) :: grid
TYPE (grid_config_rec_type) :: config_flags
! Local
INTEGER :: time_step_begin_restart
INTEGER :: idsi , ierr , myproc
CHARACTER (LEN=256) :: si_inpname
CHARACTER (LEN=132) :: message
CHARACTER(LEN=19) :: start_date_char , end_date_char , &
current_date_char , next_date_char
INTEGER :: time_loop_max , loop
INTEGER :: julyr , julday , LEN
INTEGER :: io_form_auxinput1
INTEGER, EXTERNAL :: use_package
LOGICAL :: using_binary_wrfsi
REAL :: gmt
REAL :: t1,t2
INTEGER :: numx_sm_levels_input,numx_st_levels_input
REAL,DIMENSION(100) :: smx_levels_input,stx_levels_input
#ifdef DEREF_KLUDGE
! see http://www.mmm.ucar.edu/wrf/WG2/topics/deref_kludge.htm
INTEGER :: sm31 , em31 , sm32 , em32 , sm33 , em33
INTEGER :: sm31x, em31x, sm32x, em32x, sm33x, em33x
INTEGER :: sm31y, em31y, sm32y, em32y, sm33y, em33y
#endif
#if ( HWRF == 1 )
! Sam Says:
! The *INIT arrays are used to read init data written out by hwrf_prep_hybrid
REAL,ALLOCATABLE,DIMENSION(:,:,:)::TINIT,UINIT,VINIT,QINIT,CWMINIT
REAL,ALLOCATABLE,DIMENSION(:,:,:)::PINIT
REAL,ALLOCATABLE,DIMENSION(:,:)::PDINIT
! The *B arrays are used to read boundary data written out by hwrf_prep_hybrid
REAL,ALLOCATABLE,DIMENSION(:,:,:)::TB,UB,VB,QB,CWMB
REAL,ALLOCATABLE,DIMENSION(:,:)::PDB
INTEGER :: KB, LM, IM, JM, iunit_gfs, N
integer :: i,j,k
LOGICAL,EXTERNAL :: WRF_DM_ON_MONITOR
integer :: ids,ide, jds,jde, kds,kde
integer :: ims,ime, jms,jme, kms,kme
integer :: its,ite, jts,jte, kts,kte
integer :: ioerror
#endif
#include "deref_kludge.h"
grid%input_from_file = .true.
grid%input_from_file = .false.
CALL compute_si_start_and_end ( model_config_rec%start_year (grid%id) , &
model_config_rec%start_month (grid%id) , &
model_config_rec%start_day (grid%id) , &
model_config_rec%start_hour (grid%id) , &
model_config_rec%start_minute(grid%id) , &
model_config_rec%start_second(grid%id) , &
model_config_rec% end_year (grid%id) , &
model_config_rec% end_month (grid%id) , &
model_config_rec% end_day (grid%id) , &
model_config_rec% end_hour (grid%id) , &
model_config_rec% end_minute(grid%id) , &
model_config_rec% end_second(grid%id) , &
model_config_rec%interval_seconds , &
model_config_rec%real_data_init_type , &
start_date_char , end_date_char , time_loop_max )
! Here we define the initial time to process, for later use by the code.
current_date_char = start_date_char
! start_date = start_date_char // '.0000'
start_date = start_date_char
current_date = start_date
CALL nl_set_bdyfrq ( grid%id , REAL(model_config_rec%interval_seconds) )
! Loop over each time period to process.
write(message,*) 'time_loop_max: ', time_loop_max
CALL wrf_message(message)
DO loop = 1 , time_loop_max
internal_time_loop=loop
write(message,*) 'loop=', loop
CALL wrf_message(message)
write(message,*) '-----------------------------------------------------------'
CALL wrf_message(message)
write(message,*) ' '
CALL wrf_message(message)
write(message,'(A,A,A,I2,A,I2)') ' Current date being processed: ', &
current_date, ', which is loop #',loop,' out of ',time_loop_max
CALL wrf_message(message)
! After current_date has been set, fill in the julgmt stuff.
CALL geth_julgmt ( config_flags%julyr , config_flags%julday , &
config_flags%gmt )
! Now that the specific Julian info is available,
! save these in the model config record.
CALL nl_set_gmt (grid%id, config_flags%gmt)
CALL nl_set_julyr (grid%id, config_flags%julyr)
CALL nl_set_julday (grid%id, config_flags%julday)
CALL nl_get_io_form_auxinput1( 1, io_form_auxinput1 )
using_binary_wrfsi=.false.
write(message,*) 'TRIM(config_flags%auxinput1_inname): ', TRIM(config_flags%auxinput1_inname)
CALL wrf_message(message)
#if ( HWRF == 1 )
ifph_onlyfirst: if(.not.grid%use_prep_hybrid .or. loop==1) then
#endif
IF (config_flags%auxinput1_inname(1:10) .eq. 'real_input') THEN
using_binary_wrfsi=.true.
ENDIF
SELECT CASE ( use_package(io_form_auxinput1) )
#if defined(NETCDF)
CASE ( IO_NETCDF )
! Open the wrfinput file.
current_date_char(11:11)='_'
WRITE ( wrf_err_message , FMT='(A,A)' )'med_sidata_input: calling open_r_dataset for ',TRIM(config_flags%auxinput1_inname)
CALL wrf_debug ( 100 , wrf_err_message )
IF ( config_flags%auxinput1_inname(1:8) .NE. 'wrf_real' ) THEN
CALL construct_filename4a( si_inpname , config_flags%auxinput1_inname , grid%id , 2 , current_date_char , &
config_flags%io_form_auxinput1 )
ELSE
CALL construct_filename2a( si_inpname , config_flags%auxinput1_inname , grid%id , 2 , current_date_char )
END IF
CALL open_r_dataset ( idsi, TRIM(si_inpname) , grid , config_flags , "DATASET=AUXINPUT1", ierr )
IF ( ierr .NE. 0 ) THEN
CALL wrf_error_fatal( 'error opening ' // TRIM(si_inpname) // ' for input; bad date in namelist or file not in directory' )
ENDIF
! Input data.
CALL wrf_debug (100, 'med_sidata_input: call input_auxinput1_wrf')
CALL input_auxinput1 ( idsi, grid, config_flags, ierr )
! Possible optional SI input. This sets flags used by init_domain.
IF ( loop .EQ. 1 ) THEN
CALL wrf_debug (100, 'med_sidata_input: call init_module_optional_input' )
CALL init_module_optional_input ( grid , config_flags )
CALL wrf_debug ( 100 , 'med_sidata_input: calling optional_input' )
!
CALL optional_input ( grid , idsi , config_flags )
write(0,*) 'maxval st_input(1) within ideal_hwrf: ', maxval(st_input(:,1,:))
END IF
!
CALL close_dataset ( idsi , config_flags , "DATASET=AUXINPUT1" )
#endif
#ifdef INTIO
CASE ( IO_INTIO )
! Possible optional SI input. This sets flags used by init_domain.
IF ( loop .EQ. 1 ) THEN
CALL wrf_debug (100, 'med_sidata_input: call init_module_optional_input' )
CALL init_module_optional_input ( grid , config_flags )
END IF
IF (using_binary_wrfsi) THEN
current_date_char(11:11)='_'
CALL read_si ( grid, current_date_char )
current_date_char(11:11)='T'
ELSE
write(message,*) 'binary WPS branch'
CALL wrf_message(message)
current_date_char(11:11)='_'
CALL construct_filename4a( si_inpname , config_flags%auxinput1_inname , grid%id , 2 , current_date_char , &
config_flags%io_form_auxinput1 )
CALL read_wps ( grid, trim(si_inpname), current_date_char, config_flags%num_metgrid_levels )
!!! bogus set some flags??
flag_metgrid=1
flag_soilhgt=1
ENDIF
#endif
CASE DEFAULT
CALL wrf_error_fatal('ideal_hwrf: not valid io_form_auxinput1')
END SELECT
#if ( HWRF == 1 )
endif ifph_onlyfirst
#endif
grid%islope=1
grid%vegfra=grid%vegfrc
grid%dfrlg=grid%dfl/9.81
grid%isurban=1
grid%isoilwater=14
! Initialize the mother domain for this time period with input data.
CALL wrf_debug ( 100 , 'med_sidata_input: calling init_domain' )
grid%input_from_file = .true.
CALL init_domain ( grid )
#if ( HWRF == 1 )
read_phinit: if(grid%use_prep_hybrid) then
#if defined(DM_PARALLEL)
if(.not. wrf_dm_on_monitor()) then
call wrf_error_fatal('ideal_hwrf: in use_prep_hybrid mode, threading and mpi are forbidden.')
endif
#endif
ph_loop1: if(loop==1) then
! determine kds, ids, jds
SELECT CASE ( model_data_order )
CASE ( DATA_ORDER_ZXY )
kds = grid%sd31 ; kde = grid%ed31 ;
ids = grid%sd32 ; ide = grid%ed32 ;
jds = grid%sd33 ; jde = grid%ed33 ;
kms = grid%sm31 ; kme = grid%em31 ;
ims = grid%sm32 ; ime = grid%em32 ;
jms = grid%sm33 ; jme = grid%em33 ;
kts = grid%sp31 ; kte = grid%ep31 ; ! tile is entire patch
its = grid%sp32 ; ite = grid%ep32 ; ! tile is entire patch
jts = grid%sp33 ; jte = grid%ep33 ; ! tile is entire patch
CASE ( DATA_ORDER_XYZ )
ids = grid%sd31 ; ide = grid%ed31 ;
jds = grid%sd32 ; jde = grid%ed32 ;
kds = grid%sd33 ; kde = grid%ed33 ;
ims = grid%sm31 ; ime = grid%em31 ;
jms = grid%sm32 ; jme = grid%em32 ;
kms = grid%sm33 ; kme = grid%em33 ;
its = grid%sp31 ; ite = grid%ep31 ; ! tile is entire patch
jts = grid%sp32 ; jte = grid%ep32 ; ! tile is entire patch
kts = grid%sp33 ; kte = grid%ep33 ; ! tile is entire patch
CASE ( DATA_ORDER_XZY )
ids = grid%sd31 ; ide = grid%ed31 ;
kds = grid%sd32 ; kde = grid%ed32 ;
jds = grid%sd33 ; jde = grid%ed33 ;
ims = grid%sm31 ; ime = grid%em31 ;
kms = grid%sm32 ; kme = grid%em32 ;
jms = grid%sm33 ; jme = grid%em33 ;
its = grid%sp31 ; ite = grid%ep31 ; ! tile is entire patch
kts = grid%sp32 ; kte = grid%ep32 ; ! tile is entire patch
jts = grid%sp33 ; jte = grid%ep33 ; ! tile is entire patch
END SELECT
! Allocate 3D initialization arrays:
call wrf_message('ALLOCATE PREP_HYBRID INIT ARRAYS')
ALLOCATE ( TINIT (ids:(ide-1),kds:(kde-1) ,jds:(jde-1)) )
ALLOCATE ( PINIT (ids:(ide-1),kds:kde ,jds:(jde-1)) )
ALLOCATE ( UINIT (ids:(ide-1),kds:(kde-1) ,jds:(jde-1)) )
ALLOCATE ( VINIT (ids:(ide-1),kds:(kde-1) ,jds:(jde-1)) )
ALLOCATE ( QINIT (ids:(ide-1),kds:(kde-1) ,jds:(jde-1)) )
ALLOCATE ( CWMINIT(ids:(ide-1),kds:(kde-1) ,jds:(jde-1)) )
ALLOCATE ( PDINIT (ids:(ide-1), jds:(jde-1)) )
REWIND 900
READ(900,iostat=ioerror) PDINIT,TINIT,QINIT,CWMINIT,UINIT,VINIT,PINIT
if(ioerror/=0) then
call wrf_error_fatal('Unable to read MAKBND output from unit 900.')
endif
WRITE(0,*) 'U V T AT 10 10 10 ',UINIT(10,10,10),VINIT(10,10,10),TINIT(10,10,10)
! Switch from IKJ to IJK ordering
DO I = ids,ide-1
DO J = jds,jde-1
grid%pd(I,J) = PDINIT(I,J)
DO K = kds,kde-1
grid%q2(I,J,K) = 0
grid%u(I,J,K) = UINIT(I,K,J)
grid%v(I,J,K) = VINIT(I,K,J)
grid%t(I,J,K) = TINIT(I,K,J)
grid%q(I,J,K) = QINIT(I,K,J)
grid%cwm(I,J,K) = CWMINIT(I,K,J)
ENDDO
! Was commented out in original V2 HWRF too:
! DO K = kds,kde
! grid%nmm_pint(I,J,K) = pinit(I,K,J)
! ENDDO
ENDDO
ENDDO
call wrf_message('DEALLOCATE PREP_HYBRID INIT ARRAYS')
deallocate(TINIT,PINIT,UINIT,VINIT,QINIT,CWMINIT,PDINIT)
end if ph_loop1
end if read_phinit
#endif
CALL model_to_grid_config_rec ( grid%id, model_config_rec, config_flags )
! Close this file that is output from the SI and input to this pre-proc.
CALL wrf_debug ( 100 , 'med_sidata_input: back from init_domain' )
!!! not sure about this, but doesnt seem like needs to be called each time
IF ( loop .EQ. 1 ) THEN
CALL start_domain ( grid , .TRUE.)
END IF
#if ( WRF_CHEM == 1 )
IF ( loop == 1 ) THEN
! IF ( ( grid%chem_opt .EQ. RADM2 ) .OR. &
! ( grid%chem_opt .EQ. RADM2SORG ) .OR. &
! ( grid%chem_opt .EQ. RACM ) .OR. &
! ( grid%chem_opt .EQ. RACMSORG ) ) THEN
IF( grid%chem_opt > 0 ) then
! Read the chemistry data from a previous wrf forecast (wrfout file)
IF(grid%chem_in_opt == 1 ) THEN
message = 'INITIALIZING CHEMISTRY WITH OLD SIMULATION'
CALL wrf_message ( message )
CALL input_ext_chem_file( grid )
IF(grid%bio_emiss_opt == BEIS311 ) THEN
message = 'READING BEIS3.11 EMISSIONS DATA'
CALL wrf_message ( message )
CALL med_read_wrf_chem_bioemiss ( grid , config_flags)
else IF(grid%bio_emiss_opt == 3 ) THEN !shc
message = 'READING MEGAN 2 EMISSIONS DATA'
CALL wrf_message ( message )
CALL med_read_wrf_chem_bioemiss ( grid , config_flags)
END IF
ELSEIF(grid%chem_in_opt == 0)then
! Generate chemistry data from a idealized vertical profile
message = 'STARTING WITH BACKGROUND CHEMISTRY '
CALL wrf_message ( message )
write(message,*)' ETA1 '
CALL wrf_message ( message )
! write(message,*) grid%eta1
! CALL wrf_message ( message )
CALL input_chem_profile ( grid )
IF(grid%bio_emiss_opt == BEIS311 ) THEN
message = 'READING BEIS3.11 EMISSIONS DATA'
CALL wrf_message ( message )
CALL med_read_wrf_chem_bioemiss ( grid , config_flags)
else IF(grid%bio_emiss_opt == 3 ) THEN !shc
message = 'READING MEGAN 2 EMISSIONS DATA'
CALL wrf_message ( message )
CALL med_read_wrf_chem_bioemiss ( grid , config_flags)
END IF
ELSE
message = 'RUNNING WITHOUT CHEMISTRY INITIALIZATION'
CALL wrf_message ( message )
ENDIF
ENDIF
ENDIF
#endif
config_flags%isurban=1
config_flags%isoilwater=14
CALL assemble_output ( grid , config_flags , loop , time_loop_max )
! Here we define the next time that we are going to process.
CALL geth_newdate ( current_date_char , start_date_char , &
loop * model_config_rec%interval_seconds )
current_date = current_date_char // '.0000'
CALL domain_clock_set( grid, current_date(1:19) )
write(message,*) 'current_date= ', current_date
CALL wrf_message(message)
END DO
END SUBROUTINE med_sidata_input
SUBROUTINE compute_si_start_and_end ( &
start_year, start_month, start_day, start_hour, &
start_minute, start_second, &
end_year , end_month , end_day , end_hour , &
end_minute , end_second , &
interval_seconds , real_data_init_type , &
start_date_char , end_date_char , time_loop_max )
USE module_date_time
IMPLICIT NONE
INTEGER :: start_year , start_month , start_day , &
start_hour , start_minute , start_second
INTEGER :: end_year , end_month , end_day , &
end_hour , end_minute , end_second
INTEGER :: interval_seconds , real_data_init_type
INTEGER :: time_loop_max , time_loop
CHARACTER(LEN=132) :: message
CHARACTER(LEN=19) :: current_date_char , start_date_char , &
end_date_char , next_date_char
! WRITE ( start_date_char , FMT = &
! '(I4.4,"-",I2.2,"-",I2.2,"_",I2.2,":",I2.2,":",I2.2)' ) &
! start_year,start_month,start_day,start_hour,start_minute,start_second
! WRITE ( end_date_char , FMT = &
! '(I4.4,"-",I2.2,"-",I2.2,"_",I2.2,":",I2.2,":",I2.2)' ) &
! end_year, end_month, end_day, end_hour, end_minute, end_second
WRITE ( start_date_char , FMT = &
'(I4.4,"-",I2.2,"-",I2.2,"T",I2.2,":",I2.2,":",I2.2)' ) &
start_year,start_month,start_day,start_hour,start_minute,start_second
WRITE ( end_date_char , FMT = &
'(I4.4,"-",I2.2,"-",I2.2,"T",I2.2,":",I2.2,":",I2.2)' ) &
end_year, end_month, end_day, end_hour, end_minute, end_second
! start_date = start_date_char // '.0000'
! Figure out our loop count for the processing times.
time_loop = 1
PRINT '(A,I4,A,A,A)','Time period #',time_loop, &
' to process = ',start_date_char,'.'
current_date_char = start_date_char
loop_count : DO
CALL geth_newdate (next_date_char, current_date_char, interval_seconds )
IF ( next_date_char .LT. end_date_char ) THEN
time_loop = time_loop + 1
PRINT '(A,I4,A,A,A)','Time period #',time_loop,&
' to process = ',next_date_char,'.'
current_date_char = next_date_char
ELSE IF ( next_date_char .EQ. end_date_char ) THEN
time_loop = time_loop + 1
PRINT '(A,I4,A,A,A)','Time period #',time_loop,&
' to process = ',next_date_char,'.'
PRINT '(A,I4,A)','Total analysis times to input = ',time_loop,'.'
time_loop_max = time_loop
EXIT loop_count
ELSE IF ( next_date_char .GT. end_date_char ) THEN
PRINT '(A,I4,A)','Total analysis times to input = ',time_loop,'.'
time_loop_max = time_loop
EXIT loop_count
END IF
END DO loop_count
write(message,*) 'done in si_start_and_end'
CALL wrf_message(message)
END SUBROUTINE compute_si_start_and_end
SUBROUTINE assemble_output ( grid , config_flags , loop , time_loop_max )
!!! replace with something? USE module_big_step_utilities_em
USE module_domain
USE module_io_domain
USE module_configure
USE module_date_time
USE module_bc
IMPLICIT NONE
#if ( HWRF == 1 )
external get_wrf_debug_level
integer :: debug
#endif
TYPE(domain) :: grid
TYPE (grid_config_rec_type) :: config_flags
INTEGER , INTENT(IN) :: loop , time_loop_max
INTEGER :: ids , ide , jds , jde , kds , kde
INTEGER :: ims , ime , jms , jme , kms , kme
INTEGER :: ips , ipe , jps , jpe , kps , kpe
INTEGER :: ijds , ijde , spec_bdy_width
INTEGER :: inc_h,inc_v
INTEGER :: i , j , k , idts
INTEGER :: id1 , interval_seconds , ierr, rc, sst_update
INTEGER , SAVE :: id ,id4
CHARACTER (LEN=80) :: inpname , bdyname
CHARACTER(LEN= 4) :: loop_char
CHARACTER(LEN=132) :: message
character *19 :: temp19
character *24 :: temp24 , temp24b
REAL, DIMENSION(:,:,:), ALLOCATABLE, SAVE :: ubdy3dtemp1 , vbdy3dtemp1 ,&
tbdy3dtemp1 , &
cwmbdy3dtemp1 , qbdy3dtemp1,&
q2bdy3dtemp1 , pdbdy2dtemp1
REAL, DIMENSION(:,:,:), ALLOCATABLE, SAVE :: ubdy3dtemp2 , vbdy3dtemp2 , &
tbdy3dtemp2 , &
cwmbdy3dtemp2 , qbdy3dtemp2, &
q2bdy3dtemp2, pdbdy2dtemp2
REAL :: t1,t2
#ifdef DEREF_KLUDGE
! see http://www.mmm.ucar.edu/wrf/WG2/topics/deref_kludge.htm
INTEGER :: sm31 , em31 , sm32 , em32 , sm33 , em33
INTEGER :: sm31x, em31x, sm32x, em32x, sm33x, em33x
INTEGER :: sm31y, em31y, sm32y, em32y, sm33y, em33y
#endif
#if ( HWRF == 1 )
! Sam says:
! The *B arrays are used to read boundary data written out by hwrf_prep_hybrid
REAL,ALLOCATABLE,DIMENSION(:,:,:)::TB,UB,VB,QB,CWMB
REAL,ALLOCATABLE,DIMENSION(:,:)::PDB
! Dimensions and looping variables:
INTEGER :: KB, LM, IM, JM, N
! Unit number to read boundary data from (changes each time)
INTEGER :: iunit_gfs
! Did we allocate the prep_hybrid input arrays?
LOGICAL :: alloc_ph_arrays
integer :: ioerror
#endif
#include "deref_kludge.h"
#if ( HWRF == 1 )
alloc_ph_arrays=.false.
call get_wrf_debug_level(debug)
#endif
! Various sizes that we need to be concerned about.
ids = grid%sd31
ide = grid%ed31-1 ! 030730tst
jds = grid%sd32
jde = grid%ed32-1 ! 030730tst
kds = grid%sd33
kde = grid%ed33-1 ! 030730tst
ims = grid%sm31
ime = grid%em31
jms = grid%sm32
jme = grid%em32
kms = grid%sm33
kme = grid%em33
ips = grid%sp31
ipe = grid%ep31-1 ! 030730tst
jps = grid%sp32
jpe = grid%ep32-1 ! 030730tst
kps = grid%sp33
kpe = grid%ep33-1 ! 030730tst
if (IPE .ne. IDE) IPE=IPE+1
if (JPE .ne. JDE) JPE=JPE+1
write(message,*) 'assemble output (ids,ide): ', ids,ide
CALL wrf_message(message)
write(message,*) 'assemble output (ims,ime): ', ims,ime
CALL wrf_message(message)
write(message,*) 'assemble output (ips,ipe): ', ips,ipe
CALL wrf_message(message)
write(message,*) 'assemble output (jds,jde): ', jds,jde
CALL wrf_message(message)
write(message,*) 'assemble output (jms,jme): ', jms,jme
CALL wrf_message(message)
write(message,*) 'assemble output (jps,jpe): ', jps,jpe
CALL wrf_message(message)
write(message,*) 'assemble output (kds,kde): ', kds,kde
CALL wrf_message(message)
write(message,*) 'assemble output (kms,kme): ', kms,kme
CALL wrf_message(message)
write(message,*) 'assemble output (kps,kpe): ', kps,kpe
CALL wrf_message(message)
ijds = MIN ( ids , jds )
!mptest030805 ijde = MAX ( ide , jde )
ijde = MAX ( ide , jde ) + 1 ! to make stuff_bdy dimensions consistent with alloc
! Boundary width, scalar value.
spec_bdy_width = model_config_rec%spec_bdy_width
interval_seconds = model_config_rec%interval_seconds
sst_update = model_config_rec%sst_update
!-----------------------------------------------------------------------
!
main_loop_test: IF ( loop .EQ. 1 ) THEN
!
!-----------------------------------------------------------------------
IF ( time_loop_max .NE. 1 ) THEN
IF(sst_update .EQ. 1)THEN
CALL construct_filename1( inpname , 'wrflowinp' , grid%id , 2 )
CALL open_w_dataset ( id4, TRIM(inpname) , grid , config_flags , output_auxinput4 , "DATASET=AUXINPUT4", ierr )
IF ( ierr .NE. 0 ) THEN
CALL wrf_error_fatal( 'ideal_hwrf: error opening wrflowinp for writing' )
END IF
CALL output_auxinput4 ( id4, grid , config_flags , ierr )
END IF
END IF
! This is the space needed to save the current 3d data for use in computing
! the lateral boundary tendencies.
ALLOCATE ( ubdy3dtemp1(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( vbdy3dtemp1(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( tbdy3dtemp1(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( qbdy3dtemp1(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( cwmbdy3dtemp1(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( q2bdy3dtemp1(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( pdbdy2dtemp1(ims:ime,jms:jme,1:1) )
ubdy3dtemp1=0.
vbdy3dtemp1=0.
tbdy3dtemp1=0.
qbdy3dtemp1=0.
cwmbdy3dtemp1=0.
q2bdy3dtemp1=0.
pdbdy2dtemp1=0.
ALLOCATE ( ubdy3dtemp2(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( vbdy3dtemp2(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( tbdy3dtemp2(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( qbdy3dtemp2(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( cwmbdy3dtemp2(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( q2bdy3dtemp2(ims:ime,jms:jme,kms:kme) )
ALLOCATE ( pdbdy2dtemp2(ims:ime,jms:jme,1:1) )
ubdy3dtemp2=0.
vbdy3dtemp2=0.
tbdy3dtemp2=0.
qbdy3dtemp2=0.
cwmbdy3dtemp2=0.
q2bdy3dtemp2=0.
pdbdy2dtemp2=0.
! Open the wrfinput file. From this program, this is an *output* file.
CALL construct_filename1( inpname , 'wrfinput' , grid%id , 2 )
CALL open_w_dataset ( id1, TRIM(inpname) , grid , config_flags , &
output_input , "DATASET=INPUT", ierr )
IF ( ierr .NE. 0 ) THEN
CALL wrf_error_fatal( 'ideal_hwrf: error opening wrfinput for writing' )
ENDIF
! CALL calc_current_date ( grid%id , 0. )
! grid%write_metadata = .true.
write(message,*) 'making call to output_input'
CALL wrf_message(message)
CALL output_input ( id1, grid , config_flags , ierr )
!***
!*** CLOSE THE WRFINPUT DATASET
!***
CALL close_dataset ( id1 , config_flags , "DATASET=INPUT" )
! We need to save the 3d data to compute a
! difference during the next loop.
!
!-----------------------------------------------------------------------
!*** SOUTHERN BOUNDARY
!-----------------------------------------------------------------------
!
IF(JPS==JDS)THEN
J=1
DO k = kps , MIN(kde,kpe)
DO i = ips , MIN(ide,ipe)
ubdy3dtemp1(i,j,k) = grid%u(i,j,k)
vbdy3dtemp1(i,j,k) = grid%v(i,j,k)
tbdy3dtemp1(i,j,k) = grid%t(i,j,k)
qbdy3dtemp1(i,j,k) = grid%q(i,j,k)
cwmbdy3dtemp1(i,j,k) = grid%cwm(i,j,k)
q2bdy3dtemp1(i,j,k) = grid%q2(i,j,k)
END DO
END DO
DO i = ips , MIN(ide,ipe)
pdbdy2dtemp1(i,j,1) = grid%pd(i,j)
END DO
ENDIF
!
!-----------------------------------------------------------------------
!*** NORTHERN BOUNDARY
!-----------------------------------------------------------------------
!
IF(JPE==JDE)THEN
J=MIN(JDE,JPE)
DO k = kps , MIN(kde,kpe)
DO i = ips , MIN(ide,ipe)
ubdy3dtemp1(i,j,k) = grid%u(i,j,k)
vbdy3dtemp1(i,j,k) = grid%v(i,j,k)
tbdy3dtemp1(i,j,k) = grid%t(i,j,k)
qbdy3dtemp1(i,j,k) = grid%q(i,j,k)
cwmbdy3dtemp1(i,j,k) = grid%cwm(i,j,k)
q2bdy3dtemp1(i,j,k) = grid%q2(i,j,k)
END DO
END DO
DO i = ips , MIN(ide,ipe)
pdbdy2dtemp1(i,j,1) = grid%pd(i,j)
END DO
ENDIF
!
!-----------------------------------------------------------------------
!*** WESTERN BOUNDARY
!-----------------------------------------------------------------------
!
write(message,*) 'western boundary, store winds over J: ', jps, min(jpe,jde)
CALL wrf_message(message)
IF(IPS==IDS)THEN
I=1
DO k = kps , MIN(kde,kpe)
inc_h=mod(jps+1,2)
DO j = jps+inc_h, min(jde,jpe),2
if (J .ge. 3 .and. J .le. JDE-2 .and. mod(J,2) .eq. 1) then
tbdy3dtemp1(i,j,k) = grid%t(i,j,k)
qbdy3dtemp1(i,j,k) = grid%q(i,j,k)
cwmbdy3dtemp1(i,j,k) = grid%cwm(i,j,k)
q2bdy3dtemp1(i,j,k) = grid%q2(i,j,k)
if(k==1)then
write(message,*)' loop=',loop,' i=',i,' j=',j,' tbdy3dtemp1(i,j,k)=',tbdy3dtemp1(i,j,k)
CALL wrf_debug(10,message)
endif
endif
END DO
END DO
DO k = kps , MIN(kde,kpe)
inc_v=mod(jps,2)
DO j = jps+inc_v, min(jde,jpe),2
if (J .ge. 2 .and. J .le. JDE-1 .and. mod(J,2) .eq. 0) then
ubdy3dtemp1(i,j,k) = grid%u(i,j,k)
vbdy3dtemp1(i,j,k) = grid%v(i,j,k)
endif
END DO
END DO
!
inc_h=mod(jps+1,2)
DO j = jps+inc_h, min(jde,jpe),2
if (J .ge. 3 .and. J .le. JDE-2 .and. mod(J,2) .eq. 1) then
pdbdy2dtemp1(i,j,1) = grid%pd(i,j)
write(message,*)' loop=',loop,' i=',i,' j=',j,' pdbdy2dtemp1(i,j)=',pdbdy2dtemp1(i,j,1)
CALL wrf_debug(10,message)
endif
END DO
ENDIF
!
!-----------------------------------------------------------------------
!*** EASTERN BOUNDARY