forked from wrf-model/WRF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput_wrf.F
1981 lines (1771 loc) · 99.8 KB
/
input_wrf.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
!WRF:MEDIATION:IO
! ---principal wrf input routine (called from routines in module_io_domain )
SUBROUTINE input_wrf ( fid , grid , config_flags , switch , ierr )
USE module_domain
USE module_state_description
USE module_configure
USE module_io
USE module_io_wrf
USE module_date_time
USE module_bc_time_utilities
USE module_utility
IMPLICIT NONE
#include "wrf_io_flags.h"
#include "wrf_status_codes.h"
TYPE(domain) :: grid
TYPE(grid_config_rec_type), INTENT(INOUT) :: config_flags
INTEGER, INTENT(IN) :: fid
INTEGER, INTENT(IN) :: switch
INTEGER, INTENT(INOUT) :: ierr
! Local data
INTEGER ids , ide , jds , jde , kds , kde , &
ims , ime , jms , jme , kms , kme , &
ips , ipe , jps , jpe , kps , kpe
TYPE( fieldlist ), POINTER :: p
INTEGER newswitch, itrace
INTEGER iname(9)
INTEGER iordering(3)
INTEGER icurrent_date(24)
INTEGER i,j,k
INTEGER icnt
INTEGER ndim
INTEGER ilen
INTEGER , DIMENSION(3) :: domain_start , domain_end
INTEGER , DIMENSION(3) :: memory_start , memory_end
INTEGER , DIMENSION(3) :: patch_start , patch_end
CHARACTER*256 errmess, currtimestr
CHARACTER*40 :: this_datestr, next_datestr
CHARACTER*9 NAMESTR
INTEGER IBDY, NAMELEN
LOGICAL wrf_dm_on_monitor
EXTERNAL wrf_dm_on_monitor
Type(WRFU_Time) time, currtime, currentTime
CHARACTER*19 new_date
CHARACTER*24 base_date
CHARACTER*256 fname, version_name
CHARACTER*80 dname, memord, sim_type
LOGICAL dryrun
INTEGER idt
INTEGER itmp
INTEGER filestate, ierr3
INTEGER hybrid_opt, use_theta_m
INTEGER :: ide_compare , jde_compare , kde_compare
CHARACTER (len=19) simulation_start_date , first_date_input , first_date_nml
INTEGER first_date_start_year , &
first_date_start_month , &
first_date_start_day , &
first_date_start_hour , &
first_date_start_minute , &
first_date_start_second
INTEGER simulation_start_year , &
simulation_start_month , &
simulation_start_day , &
simulation_start_hour , &
simulation_start_minute , &
simulation_start_second
LOGICAL reset_simulation_start
REAL dx_compare , dy_compare , dum
INTEGER :: num_land_cat_compare
CHARACTER (LEN=256) :: MMINLU
! Local variables for vertical interpolation.
REAL, ALLOCATABLE, DIMENSION(: ) :: f_vint_1d
REAL, ALLOCATABLE, DIMENSION(:,:,: ) :: f_vint_3d
REAL, ALLOCATABLE, DIMENSION(:,:,:,:) :: f_vint_4d
integer :: ed1_c,em1_c,ep1_c
integer :: ed2_c,em2_c,ep2_c
integer :: n_ref_m,i_inter
! Local variables for the alarms in the input restart file.
INTEGER max_wrf_alarms_compare, seconds
CHARACTER*80 alarmname, timestr
TYPE(WRFU_Time) :: curtime, ringTime
TYPE(WRFU_TimeInterval) :: interval, interval2
integer s, iring
! Local variables: are we are using the correct hypsometric option for ARW ideal cases.
CHARACTER (LEN=256) :: input_name
INTEGER :: loop, hypsometric_opt, icount
CHARACTER (LEN=256) :: a_message
! Bundle up the fatal errors in one piece at the end of the file.
INTEGER :: count_fatal_error
! Make sure that the input data is consistent with the current code.
LOGICAL :: yes_use_this_data
CHARACTER(10) :: check_which_switch
CHARACTER(10) :: my_string
!<DESCRIPTION>
!
! Core wrf input routine for all input data streams. Part of mediation layer.
!
! Note that WRF IOAPI routines wrf_get_dom_ti_*() do not return values during
! training reads (dryrun).
!
!</DESCRIPTION>
WRITE(wrf_err_message,*)'input_wrf: begin'
CALL wrf_debug( 300 , wrf_err_message )
CALL modify_io_masks ( grid%id ) ! this adjusts the I/O masks according to the users run-time specs, if any
! Initializations for error checking
ierr = 0
count_fatal_error = 0
CALL get_ijk_from_grid ( grid , &
ids, ide, jds, jde, kds, kde, &
ims, ime, jms, jme, kms, kme, &
ips, ipe, jps, jpe, kps, kpe )
! If this was not a training read (dry run) check for erroneous values.
CALL wrf_inquire_filename ( fid , fname , filestate , ierr )
IF ( ierr /= 0 ) THEN
WRITE(wrf_err_message,*)'---- ERROR: module_io_wrf: input_wrf: wrf_inquire_filename Status = ',ierr
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
count_fatal_error = count_fatal_error + 1
ENDIF
WRITE(wrf_err_message,*)'input_wrf: filestate = ',filestate
CALL wrf_debug( 300 , wrf_err_message )
dryrun = ( filestate .EQ. WRF_FILE_OPENED_NOT_COMMITTED )
WRITE(wrf_err_message,*)'input_wrf: dryrun = ',dryrun,' switch ',switch
CALL wrf_debug( 300 , wrf_err_message )
check_if_dryrun : IF ( .NOT. dryrun ) THEN
#if ( ( EM_CORE == 1 ) && ( DA_CORE != 1 ) )
IF ( switch .EQ. boundary_only ) THEN
grid%just_read_boundary = .true.
END IF
#endif
#if ( NMM_CORE != 1 )
IF ( .NOT. dryrun ) THEN
! Does this file exist?
CALL wrf_inquire_filename ( fid , fname , filestate , ierr )
IF ( ( filestate .EQ. WRF_FILE_NOT_OPENED ) .OR. &
( filestate .EQ. WRF_FILE_OPENED_FOR_WRITE ) ) THEN
my_string = check_which_switch(switch)
CALL wrf_error_fatal( 'Possibly missing file for = ' // TRIM(my_string) )
END IF
! Determine is the input file we are reading is acceptable given the
! assumptions about the current version of the modeling system.
CALL is_this_data_ok_to_use ( fid , yes_use_this_data )
IF ( ( yes_use_this_data ) .OR. ( config_flags%force_use_old_data ) ) THEN
WRITE(wrf_err_message,*)'Input data is acceptable to use: ' // TRIM(fname)
CALL wrf_debug( 0 , wrf_err_message )
ELSE
CALL wrf_debug( 0 , 'File name that is causing troubles = ' // TRIM(fname) )
WRITE(wrf_err_message,*)'You can try 1) ensure that the input file was created with WRF v4 pre-processors, or '
CALL wrf_debug( 0 , TRIM(wrf_err_message) )
WRITE(wrf_err_message,*)'2) use force_use_old_data=T in the time_control record of the namelist.input file'
CALL wrf_debug( 0 , TRIM(wrf_err_message) )
WRITE(wrf_err_message,*)'---- ERROR: The input file appears to be from a pre-v4 version of WRF initialization routines'
CALL wrf_error_fatal( wrf_err_message )
END IF
END IF
#endif
#if ( NMM_CORE != 1 )
! Verify feature consistency between model input and model nml settings
IF ( .NOT. dryrun ) THEN
IF ( switch .EQ. input_only ) THEN
CALL wrf_get_dom_ti_char ( fid , 'TITLE' , version_name, ierr )
IF ( INDEX(TRIM(version_name),' V4.') .NE. 0 ) THEN
CALL wrf_get_dom_ti_integer( fid , 'HYBRID_OPT', hybrid_opt, 1, icnt, ierr )
CALL wrf_get_dom_ti_integer( fid , 'USE_THETA_M', use_theta_m, 1, icnt, ierr )
IF ( hybrid_opt .NE. config_flags%hybrid_opt ) THEN
WRITE(wrf_err_message,*) '---- ERROR: Input file hybrid_opt = ',hybrid_opt
CALL wrf_debug ( 0, TRIM(wrf_err_message) )
WRITE(wrf_err_message,*) '---- ERROR: Namelist hybrid_opt = ',config_flags%hybrid_opt
CALL wrf_debug ( 0, TRIM(wrf_err_message) )
CALL wrf_debug ( 0, "---- ERROR: hybrid_opt values must be consistent" )
count_fatal_error = count_fatal_error + 1
END IF
IF ( use_theta_m .NE. config_flags%use_theta_m ) THEN
WRITE(wrf_err_message,*) '---- ERROR: Input file use_theta_m = ',use_theta_m
CALL wrf_debug ( 0, TRIM(wrf_err_message) )
WRITE(wrf_err_message,*) '---- ERROR: Namelist use_theta_m = ',config_flags%use_theta_m
CALL wrf_debug ( 0, TRIM(wrf_err_message) )
CALL wrf_debug ( 0, "---- ERROR: use_theta_m values must be consistent" )
count_fatal_error = count_fatal_error + 1
END IF
END IF
ELSE IF ( switch .EQ. auxinput1_only ) THEN
CALL wrf_get_dom_ti_char ( fid , 'TITLE' , version_name, ierr )
IF ( INDEX(TRIM(version_name),' V4.') .NE. 0 ) THEN
grid%v4_metgrid = .TRUE.
ELSE
grid%v4_metgrid = .FALSE.
END IF
END IF
END IF
#endif
! INPUT ONLY (KK)
IF ( switch .EQ. restart_only ) THEN
! recover the restart alarms from input if available
CALL wrf_get_dom_ti_integer( fid , 'MAX_WRF_ALARMS', max_wrf_alarms_compare, 1, icnt, ierr )
IF ( max_wrf_alarms_compare .NE. MAX_WRF_ALARMS ) THEN
WRITE(wrf_err_message,*)'MAX_WRF_ALARMS different in restart file (',max_wrf_alarms_compare,&
') from in code (',MAX_WRF_ALARMS,'). Disregarding info in restart file.'
ELSE
curtime = domain_get_current_time( grid )
DO i = auxinput1_only, MAX_WRF_ALARMS
IF ( grid%alarms_created(i) .AND. .NOT. i .EQ. boundary_only ) THEN
write(alarmname,'("WRF_ALARM_ISRINGING_",i2.2)')i
CALL wrf_get_dom_ti_integer( fid, TRIM(alarmname), iring, 1, icnt, ierr )
write(alarmname,'("WRF_ALARM_SECS_TIL_NEXT_RING_",i2.2)')i
CALL wrf_get_dom_ti_integer( fid, TRIM(alarmname), seconds, 1, icnt, ierr )
IF ( ierr .EQ. 0 &
.AND. seconds .GE. 0 ) THEN ! disallow negative intervals; can happen with wrfbdy datasets
! which keep time differently
! Get and set interval so that we are sure to have both the
! interval and first ring time set correctly
CALL WRFU_AlarmGet( grid%alarms(i), ringinterval=interval2 )
IF (config_flags%override_restart_timers) THEN
IF (i .EQ. restart_only) THEN
seconds = grid%restart_interval_d * 86400 + &
grid%restart_interval_h * 3600 + &
grid%restart_interval_m * 60 + &
grid%restart_interval * 60 + &
grid%restart_interval_s
ENDIF
ENDIF
CALL WRFU_TimeIntervalSet(interval,S=seconds)
ringTime = curtime + interval
CALL WRFU_AlarmSet( grid%alarms(i), RingInterval=interval2, RingTime=ringTime )
ENDIF
IF ( iring .EQ. 1 ) THEN
CALL WRFU_AlarmRingerOn( grid%alarms( i ) )
ELSE
CALL WRFU_AlarmRingerOff( grid%alarms( i ) )
ENDIF
ENDIF
ENDDO
ENDIF
!OUTPUT ONLY (KK)
IF ( switch .EQ. restart_only .AND. .NOT. config_flags%override_restart_timers ) THEN
! recover the restart alarms from input if available
CALL wrf_get_dom_ti_integer( fid , 'MAX_WRF_ALARMS', max_wrf_alarms_compare, 1, icnt, ierr )
IF ( max_wrf_alarms_compare .NE. MAX_WRF_ALARMS ) THEN
WRITE(wrf_err_message,*)'MAX_WRF_ALARMS different in restart file (',max_wrf_alarms_compare,&
') from in code (',MAX_WRF_ALARMS,'). Disregarding info in restart file.'
ELSE
curtime = domain_get_current_time( grid )
DO i = 1, auxinput1_only-1
IF ( grid%alarms_created(i) .AND. .NOT. i .EQ. boundary_only ) THEN
write(alarmname,'("WRF_ALARM_ISRINGING_",i2.2)')i
CALL wrf_get_dom_ti_integer( fid, TRIM(alarmname), iring, 1, icnt, ierr )
write(alarmname,'("WRF_ALARM_SECS_TIL_NEXT_RING_",i2.2)')i
CALL wrf_get_dom_ti_integer( fid, TRIM(alarmname), seconds, 1, icnt, ierr )
IF ( ierr .EQ. 0 &
.AND. seconds .GE. 0 ) THEN ! disallow negative intervals; can happen with wrfbdy datasets
! which keep time differently
! Get and set interval so that we are sure to have both the
! interval and first ring time set correctly
CALL WRFU_AlarmGet( grid%alarms(i), ringinterval=interval2 )
IF (config_flags%override_restart_timers) THEN
IF (i .EQ. history_only) THEN
seconds = grid%history_interval_d * 86400 + &
grid%history_interval_h * 3600 + &
grid%history_interval_m * 60 + &
grid%history_interval * 60 + &
grid%history_interval_s
ENDIF
ENDIF
CALL WRFU_TimeIntervalSet(interval,S=seconds)
ringTime = curtime + interval
CALL WRFU_AlarmSet( grid%alarms(i), RingInterval=interval, RingTime=ringTime )
ENDIF
IF ( iring .EQ. 1 ) THEN
CALL WRFU_AlarmRingerOn( grid%alarms( i ) )
ELSE
CALL WRFU_AlarmRingerOff( grid%alarms( i ) )
ENDIF
ENDIF
ENDDO
ENDIF
ENDIF
CALL wrf_get_dom_ti_char ( fid , 'SIMULATION_START_DATE' , simulation_start_date , ierr )
CALL nl_get_reset_simulation_start ( 1, reset_simulation_start )
IF ( ( ierr .EQ. 0 ) .AND. ( .NOT. reset_simulation_start ) ) THEN
! Overwrite simulation start date with metadata.
#ifdef PLANET
READ ( simulation_start_date , fmt = '(I4,1x,I5,1x,I2,1x,I2,1x,I2)' ) &
simulation_start_year, &
simulation_start_day, simulation_start_hour, &
simulation_start_minute, simulation_start_second
simulation_start_month = 0
#else
READ ( simulation_start_date , fmt = '(I4,1x,I2,1x,I2,1x,I2,1x,I2,1x,I2)' ) &
simulation_start_year, simulation_start_month, &
simulation_start_day, simulation_start_hour, &
simulation_start_minute, simulation_start_second
#endif
CALL nl_set_simulation_start_year ( 1 , simulation_start_year )
CALL nl_set_simulation_start_month ( 1 , simulation_start_month )
CALL nl_set_simulation_start_day ( 1 , simulation_start_day )
CALL nl_set_simulation_start_hour ( 1 , simulation_start_hour )
CALL nl_set_simulation_start_minute ( 1 , simulation_start_minute )
CALL nl_set_simulation_start_second ( 1 , simulation_start_second )
IF ( switch .EQ. input_only ) THEN
WRITE(wrf_err_message,*) ' input_wrf, input_only: SIMULATION_START_DATE = ', &
simulation_start_date(1:19)
CALL wrf_debug ( 300 , TRIM(wrf_err_message ) )
ELSE IF ( switch .EQ. restart_only ) THEN
WRITE(wrf_err_message,*) ' input_wrf, restart_only: SIMULATION_START_DATE = ', &
simulation_start_date(1:19)
CALL wrf_debug ( 300 , TRIM(wrf_err_message ) )
ENDIF
ELSE
CALL nl_get_start_year ( 1 , simulation_start_year )
CALL nl_get_start_month ( 1 , simulation_start_month )
CALL nl_get_start_day ( 1 , simulation_start_day )
CALL nl_get_start_hour ( 1 , simulation_start_hour )
CALL nl_get_start_minute ( 1 , simulation_start_minute )
CALL nl_get_start_second ( 1 , simulation_start_second )
CALL nl_set_simulation_start_year ( 1 , simulation_start_year )
CALL nl_set_simulation_start_month ( 1 , simulation_start_month )
CALL nl_set_simulation_start_day ( 1 , simulation_start_day )
CALL nl_set_simulation_start_hour ( 1 , simulation_start_hour )
CALL nl_set_simulation_start_minute ( 1 , simulation_start_minute )
CALL nl_set_simulation_start_second ( 1 , simulation_start_second )
IF ( reset_simulation_start ) THEN
CALL wrf_message('input_wrf: forcing SIMULATION_START_DATE = head_grid start time')
CALL wrf_message(' due to namelist variable reset_simulation_start')
ELSE
CALL wrf_message('input_wrf: SIMULATION_START_DATE not available in input')
CALL wrf_message('will use head_grid start time from namelist')
ENDIF
ENDIF
! Initialize derived time quantity in grid%xtime.
! Note that this call is also made in setup_timekeeping().
! Ugh, what a hack. Simplify all this later...
CALL domain_clock_get( grid, minutesSinceSimulationStart=grid%xtime )
! Note that it is NOT necessary to reset grid%julian here.
WRITE(wrf_err_message,*) 'input_wrf: set xtime to ',grid%xtime
CALL wrf_debug ( 100, TRIM(wrf_err_message) )
ELSE IF ( switch .EQ. auxinput1_only ) then
CALL wrf_get_dom_ti_char ( fid , 'SIMULATION_START_DATE' , first_date_input , ierr )
WRITE(wrf_err_message,*)'metgrid input_wrf.F first_date_input = ',first_date_input
CALL wrf_message(wrf_err_message)
CALL nl_get_start_year ( 1 , first_date_start_year )
CALL nl_get_start_month ( 1 , first_date_start_month )
CALL nl_get_start_day ( 1 , first_date_start_day )
CALL nl_get_start_hour ( 1 , first_date_start_hour )
CALL nl_get_start_minute ( 1 , first_date_start_minute )
CALL nl_get_start_second ( 1 , first_date_start_second )
WRITE ( first_date_nml, fmt = '(I4.4,"-",I2.2,"-",I2.2,"_",I2.2,":",I2.2,":",I2.2)' ) &
first_date_start_year, first_date_start_month, &
first_date_start_day, first_date_start_hour, &
first_date_start_minute, first_date_start_second
WRITE (wrf_err_message,*) 'metgrid input_wrf.F first_date_nml = ',first_date_nml
CALL wrf_message( TRIM(wrf_err_message ) )
ENDIF
! Test to make sure that the input data is the right size. Do this for input from real/ideal into
! WRF, and from the standard initialization into real.
IF ( ( switch .EQ. input_only ) .OR. &
( switch .EQ. auxinput1_only ) ) THEN
ierr = 0
CALL wrf_get_dom_ti_integer ( fid , 'WEST-EAST_GRID_DIMENSION' , ide_compare , 1 , icnt , ierr3 )
ierr = max( ierr, ierr3 )
CALL wrf_get_dom_ti_integer ( fid , 'SOUTH-NORTH_GRID_DIMENSION' , jde_compare , 1 , icnt , ierr3 )
ierr = max( ierr, ierr3 )
CALL wrf_get_dom_ti_integer ( fid , 'BOTTOM-TOP_GRID_DIMENSION' , kde_compare , 1 , icnt , ierr3 )
ierr = max( ierr, ierr3 )
IF ( ierr3 .NE. 0 ) THEN
CALL wrf_debug ( 0, '---- ERROR: wrf_get_dom_ti_integer getting dimension information from dataset' )
count_fatal_error = count_fatal_error + 1
END IF
#if (EM_CORE == 1)
IF ( switch .EQ. input_only ) then
CALL wrf_get_dom_ti_char ( fid , 'SIMULATION_START_DATE' , simulation_start_date , ierr )
END IF
! Test to make sure that the grid distances are the right size.
CALL wrf_get_dom_ti_real ( fid , 'DX' , dx_compare , 1 , icnt , ierr )
CALL wrf_get_dom_ti_real ( fid , 'DY' , dy_compare , 1 , icnt , ierr )
IF ( ( ABS ( dx_compare - config_flags%dx ) .GT. 1.E-5 * dx_compare ) .OR. &
( ABS ( dy_compare - config_flags%dy ) .GT. 1.E-5 * dy_compare ) ) THEN
IF ( ( config_flags%polar ) .AND. ( config_flags%grid_id .EQ. 1 ) ) THEN
WRITE(wrf_err_message,*)'input_wrf: DX and DY from input file expected to be wrong'
CALL wrf_debug ( 1 , wrf_err_message )
ELSE
WRITE(wrf_err_message,*)'dx and dy from file ',dx_compare,dy_compare
CALL wrf_message(wrf_err_message)
WRITE(wrf_err_message,*)'dx and dy from namelist ',config_flags%dx,config_flags%dy
CALL wrf_message(wrf_err_message)
CALL wrf_debug ( 0, '---- ERROR: DX and DY do not match comparing namelist to the input file' )
count_fatal_error = count_fatal_error + 1
END IF
END IF
#endif
END IF
#if (EM_CORE == 1)
IF ( ( switch .EQ. input_only ) .OR. ( switch .EQ. auxinput2_only ) .OR. ( switch .EQ. auxinput1_only ) ) THEN
ierr = 0
ierr3 = 0
IF ( ( ( switch .EQ. input_only ) .AND. ( grid%id .GE. 2 ) ) .OR. ( switch .EQ. auxinput2_only ) ) THEN
CALL wrf_get_dom_ti_integer ( fid , 'I_PARENT_START' , itmp , 1 , icnt , ierr3 )
ELSE IF ( ( switch .EQ. auxinput1_only ) .AND. ( grid%id .GE. 2 ) ) THEN
CALL wrf_get_dom_ti_integer ( fid , 'i_parent_start' , itmp , 1 , icnt , ierr3 )
ELSE IF ( ( ( switch .EQ. auxinput1_only ) .OR. ( switch .EQ. input_only ) ) .AND. ( grid%id .EQ. 1 ) ) THEN
itmp = config_flags%i_parent_start
ierr3 = 0
END IF
ierr = max( ierr, ierr3 )
IF ( itmp .NE. config_flags%i_parent_start ) THEN
ierr = 1
WRITE(wrf_err_message,*)'i_parent_start from namelist.input file = ',config_flags%i_parent_start
CALL wrf_message(wrf_err_message)
WRITE(wrf_err_message,*)'i_parent_start from gridded input file = ',itmp
CALL wrf_message(wrf_err_message)
END IF
IF ( ( ( switch .EQ. input_only ) .AND. ( grid%id .GE. 2 ) ) .OR. ( switch .EQ. auxinput2_only ) ) THEN
CALL wrf_get_dom_ti_integer ( fid , 'J_PARENT_START' , itmp , 1 , icnt , ierr3 )
ELSE IF ( ( switch .EQ. auxinput1_only ) .AND. ( grid%id .GE. 2 ) ) THEN
CALL wrf_get_dom_ti_integer ( fid , 'j_parent_start' , itmp , 1 , icnt , ierr3 )
ELSE IF ( ( ( switch .EQ. auxinput1_only ) .OR. ( switch .EQ. input_only ) ) .AND. ( grid%id .EQ. 1 ) ) THEN
itmp = config_flags%j_parent_start
ierr3 = 0
END IF
ierr = max( ierr, ierr3 )
IF ( itmp .NE. config_flags%j_parent_start ) THEN
ierr = 1
WRITE(wrf_err_message,*)'j_parent_start from namelist.input file = ',config_flags%j_parent_start
CALL wrf_message(wrf_err_message)
WRITE(wrf_err_message,*)'j_parent_start from gridded input file = ',itmp
CALL wrf_message(wrf_err_message)
END IF
IF ( ierr .NE. 0 ) THEN
CALL wrf_debug ( 0, '---- ERROR: Nest start locations do not match: namelist.input vs gridded input file' )
count_fatal_error = count_fatal_error + 1
END IF
END IF
#endif
! do the check later (see check_if_dryrun below)
! We do not want the CEN_LAT LON values from the boundary file. For 1-way nests
! with ndown, this ends up being the data from the previous coarse domain.
IF ( switch .NE. boundary_only ) THEN
CALL wrf_get_dom_ti_real ( fid , 'CEN_LAT' , config_flags%cen_lat , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for CEN_LAT returns ',config_flags%cen_lat
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_cen_lat ( grid%id , config_flags%cen_lat )
CALL wrf_get_dom_ti_real ( fid , 'CEN_LON' , config_flags%cen_lon , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for CEN_LON returns ',config_flags%cen_lon
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_cen_lon ( grid%id , config_flags%cen_lon )
ELSE
CALL wrf_get_dom_ti_real ( fid , 'CEN_LAT' , dum , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for CEN_LAT returns ',dum
CALL wrf_debug ( 300 , wrf_err_message )
CALL wrf_get_dom_ti_real ( fid , 'CEN_LON' , dum , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for CEN_LON returns ',dum
CALL wrf_debug ( 300 , wrf_err_message )
END IF
CALL wrf_get_dom_ti_real ( fid , 'TRUELAT1' , config_flags%truelat1 , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for TRUELAT1 returns ',config_flags%truelat1
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_truelat1 ( grid%id , config_flags%truelat1 )
CALL wrf_get_dom_ti_real ( fid , 'TRUELAT2' , config_flags%truelat2 , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for TRUELAT2 returns ',config_flags%truelat2
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_truelat2 ( grid%id , config_flags%truelat2 )
CALL wrf_get_dom_ti_real ( fid , 'MOAD_CEN_LAT' , config_flags%moad_cen_lat , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for MOAD_CEN_LAT returns ',config_flags%moad_cen_lat
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_moad_cen_lat ( grid%id , config_flags%moad_cen_lat )
CALL wrf_get_dom_ti_real ( fid , 'STAND_LON' , config_flags%stand_lon , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for STAND_LON returns ',config_flags%stand_lon
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_stand_lon ( grid%id , config_flags%stand_lon )
#if ( NMM_CORE != 1 )
CALL wrf_get_dom_ti_real ( fid , 'POLE_LAT' , config_flags%pole_lat , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for POLE_LAT returns ',config_flags%pole_lat
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_pole_lat ( grid%id , config_flags%pole_lat )
CALL wrf_get_dom_ti_real ( fid , 'POLE_LON' , config_flags%pole_lon , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for POLE_LON returns ',config_flags%pole_lon
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_pole_lon ( grid%id , config_flags%pole_lon )
! program_name is defined in module_domain and set in the main program for whatever application
! is using subroutine input_wrf (that is, the subroutine you are looking at here). Data files
! written by SI have P_TOP as a metadata item; the real program and wrf model have it as a
! state variable. This test is to supress non-fatal but confusing messages from the model complaining
! that P_TOP cannot be read from the metadata for this dataset. JM 20040905
!
! Note, P_TOP is not defined in the NMM core.
IF ( program_name(1:7) .EQ. "REAL_EM" ) THEN
CALL wrf_get_dom_ti_real ( fid , 'P_TOP' , grid%p_top , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for P_TOP returns ',grid%p_top
CALL wrf_debug ( 300 , wrf_err_message )
ENDIF
#endif
IF ( switch .NE. boundary_only ) THEN
CALL wrf_get_dom_ti_real ( fid , 'GMT' , config_flags%gmt , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_real for GMT returns ',config_flags%gmt
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_gmt ( grid%id , config_flags%gmt )
CALL wrf_get_dom_ti_integer ( fid , 'JULYR' , config_flags%julyr , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_integer for JULYR returns ',config_flags%julyr
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_julyr ( grid%id , config_flags%julyr )
CALL wrf_get_dom_ti_integer ( fid , 'JULDAY' , config_flags%julday , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_integer for JULDAY returns ',config_flags%julday
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_julday ( grid%id , config_flags%julday )
ENDIF
CALL wrf_get_dom_ti_integer ( fid , 'MAP_PROJ' , config_flags%map_proj , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_integer for MAP_PROJ returns ',config_flags%map_proj
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_map_proj ( grid%id , config_flags%map_proj )
grid%map_proj = config_flags%map_proj
mminlu = " "
CALL wrf_get_dom_ti_char ( fid , 'MMINLU', mminlu , ierr )
IF ( ierr .NE. 0 ) mminlu = " "
#if ( ( EM_CORE == 1 ) && ( DA_CORE != 1 ) )
IF ( ( ( switch .EQ. input_only ) .OR. ( switch .EQ. restart_only ) ) .AND. &
( ( config_flags%io_form_input .EQ. 2 ) .OR. &
( config_flags%io_form_input .EQ. 11 ) ) ) THEN
CALL wrf_get_dom_ti_char ( fid , 'SIMULATION_INITIALIZATION_TYPE', sim_type , icnt )
IF ( TRIM(sim_type) .NE. "IDEALIZED DATA" ) THEN
IF ( ierr .NE. 0 ) THEN
WRITE(wrf_err_message,*)'MMINLU error on input'
mminlu = " "
CALL wrf_debug ( 0 , wrf_err_message )
END IF
END IF
ELSE IF ( ( switch .EQ. input_only ) .OR. ( switch .EQ. restart_only ) ) THEN
IF ( ierr .NE. 0 ) THEN
WRITE(wrf_err_message,*)'MMINLU error on input'
mminlu = " "
CALL wrf_debug ( 0 , wrf_err_message )
END IF
END IF
#endif
IF ( ierr .EQ. 0 ) THEN
IF ( ( ( mminlu(1:1) .GE. "A" ) .AND. ( mminlu(1:1) .LE. "Z" ) ) .OR. &
( ( mminlu(1:1) .GE. "a" ) .AND. ( mminlu(1:1) .LE. "z" ) ) .OR. &
( ( mminlu(1:1) .GE. "0" ) .AND. ( mminlu(1:1) .LE. "9" ) ) ) THEN
! no-op, the mminlu field is probably OK
ELSE IF ( mminlu(1:1) .EQ. " " ) THEN
mminlu = " "
ELSE
mminlu = " "
END IF
END IF
call wrf_debug( 1 , "mminlu = '" // TRIM(mminlu) // "'")
if (index(mminlu, char(0)) > 0) mminlu(index(mminlu, char(0)):) = " "
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_char for MMINLU returns ' // TRIM(mminlu)
CALL wrf_debug ( 300 , wrf_err_message )
CALL nl_set_mminlu ( grid%id, mminlu )
! Test to make sure that the number of land categories is set correctly
! The default is set to 24 somewhere, from the number of categories
! in the traditional USGS dataset
IF ( ( switch .EQ. input_only ) .OR. &
( switch .EQ. auxinput1_only ) .OR. &
( switch .EQ. auxinput2_only ) ) THEN
call wrf_get_dom_ti_integer(fid, "NUM_LAND_CAT", num_land_cat_compare, 1, icnt, ierr)
if ( (ierr .NE. 0) .OR. ( num_land_cat_compare .LT. 1 ) .OR. ( num_land_cat_compare .GT. 1000 ) ) then
IF (mminlu == 'MODIFIED_IGBP_MODIS_NOAH') THEN
call wrf_debug( 1 , "Must be old WPS data, assuming 20 levels for NUM_LAND_CAT")
num_land_cat_compare = 20
ELSE
call wrf_debug( 1 , "Must be old WPS data, assuming 24 levels for NUM_LAND_CAT")
num_land_cat_compare = 24
END IF
endif
if ( config_flags%num_land_cat /= num_land_cat_compare ) then
call wrf_message("----------------- ERROR -------------------")
WRITE(wrf_err_message,'("namelist : NUM_LAND_CAT = ",I10)') config_flags%num_land_cat
call wrf_message(wrf_err_message)
WRITE(wrf_err_message,'("input files : NUM_LAND_CAT = ",I10, " (from geogrid selections).")') num_land_cat_compare
call wrf_message(wrf_err_message)
CALL wrf_debug ( 0, '---- ERROR: Mismatch between namelist and wrf input files for dimension NUM_LAND_CAT')
count_fatal_error = count_fatal_error + 1
endif
ENDIF
! Test here to check that config_flags%num_metgrid_soil_levels in namelist
! is equal to what is in the global attributes of the met_em files. Note that
! if this is not the first time period, we don't really care about soil data.
IF ( ( switch .EQ. auxinput1_only ) .AND. &
( first_date_nml .EQ. first_date_input ) ) THEN
CALL wrf_get_dom_ti_integer ( fid, 'NUM_METGRID_SOIL_LEVELS', itmp, 1, icnt, ierr )
IF ( ierr .EQ. 0 ) THEN
#if (EM_CORE == 1)
IF ( itmp .EQ. 1 ) THEN
CALL wrf_debug ( 0, "---- ERROR: NUM_METGRID_SOIL_LEVELS must be greater than 1")
count_fatal_error = count_fatal_error + 1
END IF
#endif
WRITE(wrf_err_message,*)'input_wrf: global attribute NUM_METGRID_SOIL_LEVELS returns ', itmp
CALL wrf_debug ( 300 , wrf_err_message )
IF ( config_flags%num_metgrid_soil_levels /= itmp ) THEN
call wrf_message("----------------- ERROR -------------------")
WRITE(wrf_err_message,'("namelist : num_metgrid_soil_levels = ",I10)') config_flags%num_metgrid_soil_levels
call wrf_message(wrf_err_message)
#if (EM_CORE == 1)
WRITE(wrf_err_message,'("input files : NUM_METGRID_SOIL_LEVELS = ",I10, " (from met_em files).")') itmp
#else
WRITE(wrf_err_message,'("input files : NUM_METGRID_SOIL_LEVELS = ",I10, " (from met_nmm files).")') itmp
#endif
call wrf_message(wrf_err_message)
CALL wrf_debug ( 0, "---- ERROR: Mismatch between namelist and global attribute NUM_METGRID_SOIL_LEVELS")
count_fatal_error = count_fatal_error + 1
END IF
END IF
END IF
#if 0
#if ( WRF_CHEM == 1 )
! Dust erosion static data.
CALL wrf_get_dom_ti_integer ( fid, 'EROSION_DIM', itmp, 1, icnt, ierr )
IF ( ierr .EQ. 0 ) THEN
WRITE(wrf_err_message,*)'input_wrf: global attribute EROSION_DIM returns ', itmp
CALL wrf_debug ( 300 , wrf_err_message )
IF ( config_flags%erosion_dim /= itmp ) THEN
call wrf_message("----------------- ERROR -------------------")
WRITE(wrf_err_message,'("namelist : erosion_dim = ",I10)') config_flags%erosion_dim
call wrf_message(wrf_err_message)
WRITE(wrf_err_message,'("input files : EROSION_DIM = ",I10, " (from met_em files).")') itmp
call wrf_message(wrf_err_message)
CALL wrf_debug ( 0, "---- ERROR: Mismatch between namelist and global attribute EROSION_DIM")
count_fatal_error = count_fatal_error + 1
END IF
END IF
#endif
#endif
#if ( DA_CORE != 1 )
! Test here to check that config_flags%sf_surface_physics in namelist
! is equal to what is in the global attributes of the wrfinput files
IF ( config_flags%sf_surface_physics /= 0 ) THEN
IF ( switch .EQ. input_only ) THEN
CALL wrf_get_dom_ti_integer ( fid, 'SF_SURFACE_PHYSICS', itmp, 1, icnt, ierr )
IF ( ierr .EQ. 0 ) THEN
WRITE(wrf_err_message,*)'input_wrf: global attribute SF_SURFACE_PHYSICS returns ', itmp
CALL wrf_debug ( 300 , wrf_err_message )
IF ( config_flags%sf_surface_physics /= itmp ) THEN
IF ( ( config_flags%sf_surface_physics == LSMSCHEME ) .and. ( itmp == NOAHMPSCHEME ) ) then
! All is well. Noah-MP and Noah have compatible wrfinput files.
ELSE IF ( ( config_flags%sf_surface_physics == NOAHMPSCHEME ) .and. ( itmp == LSMSCHEME ) ) then
! All is well. Noah-MP and Noah have compatible wrfinput files.
ELSE
call wrf_message("----------------- ERROR -------------------")
WRITE(wrf_err_message,'("namelist : sf_surface_physics = ",I10)') config_flags%sf_surface_physics
call wrf_message(wrf_err_message)
WRITE(wrf_err_message,'("input files : SF_SURFACE_PHYSICS = ",I10, " (from wrfinput files).")') itmp
call wrf_message(wrf_err_message)
CALL wrf_debug ( 0, "---- ERROR: Mismatch between namelist and global attribute SF_SURFACE_PHYSICS")
count_fatal_error = count_fatal_error + 1
END IF
END IF
END IF
END IF
END IF
! Test here to check that config_flags%gwd_opt in namelist
! is equal to what is in the global attributes of the wrfinput files
IF ( config_flags%gwd_opt /= 0 ) THEN
IF ( switch .EQ. input_only ) THEN
CALL wrf_get_dom_ti_integer ( fid, 'GWD_OPT', itmp, 1, icnt, ierr )
IF ( ierr .EQ. 0 ) THEN
WRITE(wrf_err_message,*)'input_wrf: global attribute GWD_OPT returns ', itmp
CALL wrf_debug ( 300 , wrf_err_message )
IF ( config_flags%gwd_opt /= itmp ) THEN
call wrf_message("----------------- ERROR -------------------")
WRITE(wrf_err_message,'("namelist : gwd_opt = ",I10)') config_flags%gwd_opt
call wrf_message(wrf_err_message)
WRITE(wrf_err_message,'("input files : GWD_OPT = ",I10, " (from wrfinput files).")') itmp
call wrf_message(wrf_err_message)
call wrf_debug ( 0, "---- ERROR: Mismatch between namelist and global attribute GWD_OPT")
count_fatal_error = count_fatal_error + 1
END IF
END IF
END IF
END IF
#endif
#if ( ( EM_CORE == 1 ) && ( DA_CORE != 1 ) )
! Test here to check that config_flags%sf_ocean_physics in namelist
! is equal to what is in the global attributes of the wrfinput files
IF ( config_flags%sf_ocean_physics /= 0 ) THEN
IF ( switch .EQ. input_only ) THEN
CALL wrf_get_dom_ti_integer ( fid, 'SF_OCEAN_PHYSICS', itmp, 1, icnt, ierr )
IF ( ierr .EQ. 0 ) THEN
WRITE(wrf_err_message,*)'input_wrf: global attribute SF_OCEAN_PHYSICS returns ', itmp
CALL wrf_debug ( 300 , wrf_err_message )
IF ( config_flags%sf_ocean_physics /= itmp ) THEN
call wrf_message("----------------- ERROR -------------------")
WRITE(wrf_err_message,'("namelist : sf_ocean_physics = ",I10)') config_flags%sf_ocean_physics
call wrf_message(wrf_err_message)
WRITE(wrf_err_message,'("input files : SF_OCEAN_PHYSICS = ",I10, " (from wrfinput files).")') itmp
call wrf_message(wrf_err_message)
call wrf_debug ( 0, "---- ERROR: Mismatch between namelist and global attribute SF_OCEAN_PHYSICS")
count_fatal_error = count_fatal_error + 1
END IF
END IF
END IF
END IF
#endif
#if ( DA_CORE != 1 )
! Test here to check that config_flags%sf_urban_physics in namelist
! is equal to the value listed the global attributes of the wrfinput files.
! We only perform this check if the WRF model has sf_urban_physics turned on.
! If the WRF model runs with nml sf_urban_physics==0, then any setting of the
! sf_urban_physics in the metadata is acceptable, so not test is required.
IF ( config_flags%sf_urban_physics /= 0 ) THEN
IF ( switch .EQ. input_only ) THEN
CALL wrf_get_dom_ti_integer ( fid, 'SF_URBAN_PHYSICS', itmp, 1, icnt, ierr )
IF ( ierr .EQ. 0 ) THEN
WRITE(wrf_err_message,*)'input_wrf: global attribute SF_URBAN_PHYSICS returns ', itmp
CALL wrf_debug ( 300 , wrf_err_message )
IF ( config_flags%sf_urban_physics /= itmp ) THEN
call wrf_message("----------------- ERROR -------------------")
WRITE(wrf_err_message,'("namelist : sf_urban_physics = ",I10)') config_flags%sf_urban_physics
call wrf_message(wrf_err_message)
WRITE(wrf_err_message,'("input files : SF_URBAN_PHYSICS = ",I10, " (from wrfinput files).")') itmp
call wrf_message(wrf_err_message)
call wrf_debug ( 0, "---- ERROR: Mismatch between namelist and global attribute SF_URBAN_PHYSICS")
count_fatal_error = count_fatal_error + 1
END IF
END IF
END IF
END IF
#endif
CALL wrf_get_dom_ti_integer ( fid , 'ISWATER' , config_flags%iswater , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_integer for ISWATER returns ',config_flags%iswater
CALL wrf_debug ( 300 , wrf_err_message )
IF ( ierr .NE. 0 ) THEN
IF (mminlu == 'UMD') THEN
config_flags%iswater = 14
ELSE IF (mminlu == 'MODIFIED_IGBP_MODIS_NOAH') THEN
config_flags%iswater = 17
ELSE
config_flags%iswater = 16
ENDIF
ENDIF
CALL nl_set_iswater ( grid%id , config_flags%iswater )
grid%iswater = config_flags%iswater
CALL wrf_get_dom_ti_integer ( fid , 'ISLAKE' , config_flags%islake , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_integer for ISLAKE returns ',config_flags%islake
CALL wrf_debug ( 300 , wrf_err_message )
IF ( ierr .NE. 0 ) THEN
config_flags%islake = -1
ENDIF
CALL nl_set_islake ( grid%id , config_flags%islake )
grid%islake = config_flags%islake
CALL wrf_get_dom_ti_integer ( fid , 'ISICE' , config_flags%isice , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_integer for ISICE returns ',config_flags%isice
CALL wrf_debug ( 300 , wrf_err_message )
IF ( ierr .NE. 0 ) THEN
IF (mminlu == 'UMD') THEN
config_flags%isice = 14
ELSE IF (mminlu == 'MODIFIED_IGBP_MODIS_NOAH') THEN
config_flags%isice = 15
ELSE
config_flags%isice = 24
ENDIF
ENDIF
CALL nl_set_isice ( grid%id , config_flags%isice )
grid%isice = config_flags%isice
CALL wrf_get_dom_ti_integer ( fid , 'ISURBAN' , config_flags%isurban , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_integer for ISURBAN returns ',config_flags%isurban
CALL wrf_debug ( 300 , wrf_err_message )
IF ( ierr .NE. 0 ) THEN
IF (mminlu == 'UMD') THEN
config_flags%isurban = 13
ELSE IF (mminlu == 'MODIFIED_IGBP_MODIS_NOAH') THEN
config_flags%isurban = 13
ELSE
config_flags%isurban = 1
ENDIF
ENDIF
CALL nl_set_isurban ( grid%id , config_flags%isurban )
grid%isurban = config_flags%isurban
CALL wrf_get_dom_ti_integer ( fid , 'ISOILWATER' , config_flags%isoilwater , 1 , icnt , ierr )
WRITE(wrf_err_message,*)'input_wrf: wrf_get_dom_ti_integer for ISOILWATER returns ',config_flags%isoilwater
CALL wrf_debug ( 300 , wrf_err_message )
IF ( ierr .NE. 0 ) THEN
config_flags%isoilwater = 14
ENDIF
CALL nl_set_isoilwater ( grid%id , config_flags%isoilwater )
grid%isoilwater = config_flags%isoilwater
#ifdef MOVE_NESTS
! Added these fields for restarting of moving nests, JM
! DANGER and TODO
! It is very important that these be set correctly if they are set at all in here.
! Garbage values will produce unpredictable results, possibly segfaults, in the nesting
! code. Need some integrity checking here or elsewhere in the code to at least check to
! make sure that the istart and jstart values make sense with respect to the nest dimensions
! and the position in the parent domain.
CALL wrf_get_dom_ti_integer ( fid , 'I_PARENT_START' , itmp , 1 , icnt, ierr )
IF ( ierr .EQ. 0 .AND. switch .EQ. restart_only ) THEN
config_flags%i_parent_start = itmp
CALL nl_set_i_parent_start ( grid%id , config_flags%i_parent_start )
ENDIF
CALL wrf_get_dom_ti_integer ( fid , 'J_PARENT_START' , itmp , 1 , icnt, ierr )
IF ( ierr .EQ. 0 .AND. switch .EQ. restart_only ) THEN
config_flags%j_parent_start = itmp
CALL nl_set_j_parent_start ( grid%id , config_flags%j_parent_start )
ENDIF
#endif
#if (EM_CORE == 1)
!KLUDGE - is there a more elegant way to determine "old si" input
IF ( ( switch .EQ. input_only ) .OR. &
( ( switch .EQ. auxinput1_only ) .AND. &
( config_flags%auxinput1_inname(1:8) .EQ. 'wrf_real' ) ) ) THEN
! Test to make sure that the input data is the right size: real into WRF.
IF ( ide .NE. ide_compare ) THEN
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: namelist e_we = ',ide
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: input file WEST-EAST_GRID_DIMENSION = ',ide_compare
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
CALL wrf_debug ( 0, "---- ERROR: Mismatch between namelist and input file dimensions" )
count_fatal_error = count_fatal_error + 1
ENDIF
IF ( jde .NE. jde_compare ) THEN
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: namelist e_sn = ',jde
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: input file SOUTH-NORTH_GRID_DIMENSION = ',jde_compare
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
CALL wrf_debug ( 0, "---- ERROR: Mismatch between namelist and input file dimensions" )
count_fatal_error = count_fatal_error + 1
ENDIF
IF ( kde .NE. kde_compare ) THEN
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: namelist e_vert = ',kde
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: input file BOTTOM-TOP_GRID_DIMENSION = ',kde_compare
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
CALL wrf_debug ( 0, "---- ERROR: Mismatch between namelist and input file dimensions" )
count_fatal_error = count_fatal_error + 1
ENDIF
ELSE IF ( switch .EQ. auxinput1_only ) THEN
! Test to make sure that the input data is the right size: metgrid into real.
IF ( ide .NE. ide_compare ) THEN
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: namelist e_we = ',ide
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: input file WEST-EAST_GRID_DIMENSION = ',ide_compare
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
CALL wrf_debug ( 0, "---- ERROR: Mismatch between namelist and input file dimensions" )
count_fatal_error = count_fatal_error + 1
ENDIF
IF ( jde .NE. jde_compare ) THEN
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: namelist e_sn = ',jde
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: input file SOUTH-NORTH_GRID_DIMENSION = ',jde_compare
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
CALL wrf_debug ( 0, "---- ERROR: Mismatch between namelist and input file dimensions" )
count_fatal_error = count_fatal_error + 1
ENDIF
IF ( config_flags%num_metgrid_levels .NE. kde_compare ) THEN
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: namelist num_metgrid_levels = ',config_flags%num_metgrid_levels
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: input file BOTTOM-TOP_GRID_DIMENSION = ',kde_compare
CALL wrf_debug ( 0, TRIM( wrf_err_message ) )
CALL wrf_debug ( 0, "---- ERROR: Mismatch between namelist and input file dimensions" )
count_fatal_error = count_fatal_error + 1
ENDIF
ENDIF
#endif
#if (NMM_CORE == 1)
IF ( ( switch .EQ. auxinput1_only ) .AND. &
( config_flags%auxinput1_inname(1:8) .EQ. 'wrf_real' ) ) THEN
CALL wrf_get_dom_ti_integer ( fid , 'BOTTOM-TOP_GRID_DIMENSION' , kde_compare , 1 , icnt , ierr3 )
! Test to make sure that the input data is the right size.
IF ( ( ide-1 .NE. ide_compare ) .OR. &
( kde .NE. kde_compare ) .OR. &
( jde-1 .NE. jde_compare ) .AND. ierr3 .EQ. 0 ) THEN
WRITE(wrf_err_message,*)'input_wrf.F: SIZE MISMATCH: namelist ide-1,jde-1,kde=',ide-1,jde-1,kde,&
'; input data ide,jde,kde=',ide_compare , jde_compare , kde_compare
CALL wrf_debug( 100, wrf_err_message )
ENDIF
ELSEIF ( switch .EQ. auxinput1_only ) THEN ! assume just WPS in this branch
IF ( ( ide-1 .NE. ide_compare ) .OR. &
( config_flags%num_metgrid_levels .NE. kde_compare ) .OR. &