source: trunk/MESOSCALE/LMD_MM_MARS/SRC/WRFV2/main/real_em.F @ 549

Last change on this file since 549 was 549, checked in by aslmd, 13 years ago

MESOSCALE: for improved watercycle runs: ccn_mass and ccn_number are now passed through boundaries.

File size: 60.3 KB
Line 
1!  Create an initial data set for the WRF model based on real data.  This
2!  program is specifically set up for the Eulerian, mass-based coordinate.
3PROGRAM real_data
4
5   USE module_machine
6   USE module_domain
7   USE module_initialize
8   USE module_io_domain
9   USE module_driver_constants
10   USE module_configure
11   USE module_timing
12#ifdef WRF_CHEM
13   USE module_input_chem_data
14   USE module_input_chem_bioemiss
15#endif
16   USE module_utility
17#ifdef DM_PARALLEL
18   USE module_dm
19#endif
20
21   IMPLICIT NONE
22
23#ifdef WRF_CHEM
24  ! interface
25   INTERFACE
26     ! mediation-supplied
27     SUBROUTINE med_read_wrf_chem_bioemiss ( grid , config_flags)
28       USE module_domain
29       TYPE (domain) grid
30       TYPE (grid_config_rec_type) config_flags
31     END SUBROUTINE med_read_wrf_chem_bioemiss
32   END INTERFACE
33#endif
34
35   REAL    :: time , bdyfrq
36
37   INTEGER :: loop , levels_to_process , debug_level
38
39
40   TYPE(domain) , POINTER :: null_domain
41   TYPE(domain) , POINTER :: grid , another_grid
42   TYPE(domain) , POINTER :: grid_ptr , grid_ptr2
43   TYPE (grid_config_rec_type)              :: config_flags
44   INTEGER                :: number_at_same_level
45
46   INTEGER :: max_dom, domain_id , grid_id , parent_id , parent_id1 , id
47   INTEGER :: e_we , e_sn , i_parent_start , j_parent_start
48   INTEGER :: idum1, idum2
49#ifdef DM_PARALLEL
50   INTEGER                 :: nbytes
51   INTEGER, PARAMETER      :: configbuflen = 4* CONFIG_BUF_LEN
52   INTEGER                 :: configbuf( configbuflen )
53   LOGICAL , EXTERNAL      :: wrf_dm_on_monitor
54#endif
55   LOGICAL found_the_id
56
57   INTEGER :: ids , ide , jds , jde , kds , kde
58   INTEGER :: ims , ime , jms , jme , kms , kme
59   INTEGER :: ips , ipe , jps , jpe , kps , kpe
60   INTEGER :: ijds , ijde , spec_bdy_width
61   INTEGER :: i , j , k , idts, rc
62   INTEGER :: sibling_count , parent_id_hold , dom_loop
63
64   CHARACTER (LEN=80)     :: message
65
66   INTEGER :: start_year , start_month , start_day , start_hour , start_minute , start_second
67   INTEGER ::   end_year ,   end_month ,   end_day ,   end_hour ,   end_minute ,   end_second
68   INTEGER :: interval_seconds , real_data_init_type
69   INTEGER :: time_loop_max , time_loop
70real::t1,t2
71   INTERFACE
72     SUBROUTINE Setup_Timekeeping( grid )
73      USE module_domain
74      TYPE(domain), POINTER :: grid
75     END SUBROUTINE Setup_Timekeeping
76   END INTERFACE
77
78#include "version_decl"
79
80   !  Define the name of this program (program_name defined in module_domain)
81
82   ! NOTE: share/input_wrf.F tests first 7 chars of this name to decide
83   ! whether to read P_TOP as metadata from the SI (yes, if .eq. REAL_EM)
84
85   program_name = "REAL_EM " // TRIM(release_version) // " PREPROCESSOR"
86
87#ifdef DM_PARALLEL
88   CALL disable_quilting
89#endif
90
91   !  Initialize the modules used by the WRF system.  Many of the CALLs made from the
92   !  init_modules routine are NO-OPs.  Typical initializations are: the size of a
93   !  REAL, setting the file handles to a pre-use value, defining moisture and
94   !  chemistry indices, etc.
95
96   CALL       wrf_debug ( 100 , 'real_em: calling init_modules ' )
97   CALL init_modules(1)   ! Phase 1 returns after MPI_INIT() (if it is called)
98   CALL WRFU_Initialize( defaultCalendar=WRFU_CAL_GREGORIAN, rc=rc )
99   CALL init_modules(2)   ! Phase 2 resumes after MPI_INIT() (if it is called)
100
101   !  The configuration switches mostly come from the NAMELIST input.
102
103#ifdef DM_PARALLEL
104   IF ( wrf_dm_on_monitor() ) THEN
105      CALL initial_config
106   ENDIF
107   CALL get_config_as_buffer( configbuf, configbuflen, nbytes )
108   CALL wrf_dm_bcast_bytes( configbuf, nbytes )
109   CALL set_config_as_buffer( configbuf, configbuflen )
110   CALL wrf_dm_initialize
111#else
112   CALL initial_config
113#endif
114
115   CALL nl_get_debug_level ( 1, debug_level )
116   CALL set_wrf_debug_level ( debug_level )
117
118   CALL  wrf_message ( program_name )
119
120   !  Allocate the space for the mother of all domains.
121
122   NULLIFY( null_domain )
123   CALL       wrf_debug ( 100 , 'real_em: calling alloc_and_configure_domain ' )
124   CALL alloc_and_configure_domain ( domain_id  = 1           , &
125                                     grid       = head_grid   , &
126                                     parent     = null_domain , &
127                                     kid        = -1            )
128
129   grid => head_grid
130   CALL nl_get_max_dom ( 1 , max_dom )
131
132   IF ( model_config_rec%interval_seconds .LE. 0 ) THEN
133     CALL wrf_error_fatal( 'namelist value for interval_seconds must be > 0')
134   ENDIF
135
136   all_domains : DO domain_id = 1 , max_dom
137
138      IF ( ( model_config_rec%input_from_file(domain_id) ) .OR. &
139           ( domain_id .EQ. 1 ) ) THEN
140
141         IF ( domain_id .GT. 1 ) THEN
142
143            CALL nl_get_grid_id        ( domain_id, grid_id        )
144            CALL nl_get_parent_id      ( domain_id, parent_id      )
145            CALL nl_get_e_we           ( domain_id, e_we           )
146            CALL nl_get_e_sn           ( domain_id, e_sn           )
147            CALL nl_get_i_parent_start ( domain_id, i_parent_start )
148            CALL nl_get_j_parent_start ( domain_id, j_parent_start )
149            WRITE (message,FMT='(A,2I3,2I4,2I3)') &
150            'new allocated  domain: id, par id, dims i/j, start i/j =', &
151            grid_id, parent_id, e_we, e_sn, i_parent_start, j_parent_start
152
153            CALL wrf_debug ( 100 , message )
154            CALL nl_get_grid_id        ( parent_id, grid_id        )
155            CALL nl_get_parent_id      ( parent_id, parent_id1     )
156            CALL nl_get_e_we           ( parent_id, e_we           )
157            CALL nl_get_e_sn           ( parent_id, e_sn           )
158            CALL nl_get_i_parent_start ( parent_id, i_parent_start )
159            CALL nl_get_j_parent_start ( parent_id, j_parent_start )
160            WRITE (message,FMT='(A,2I3,2I4,2I3)') &
161            'parent domain: id, par id, dims i/j, start i/j =', &
162            grid_id, parent_id1, e_we, e_sn, i_parent_start, j_parent_start
163            CALL wrf_debug ( 100 , message )
164
165            CALL nl_get_grid_id        ( domain_id, grid_id        )
166            CALL nl_get_parent_id      ( domain_id, parent_id      )
167            CALL nl_get_e_we           ( domain_id, e_we           )
168            CALL nl_get_e_sn           ( domain_id, e_sn           )
169            CALL nl_get_i_parent_start ( domain_id, i_parent_start )
170            CALL nl_get_j_parent_start ( domain_id, j_parent_start )
171            grid_ptr2 => head_grid
172            found_the_id = .FALSE.
173            CALL find_my_parent ( grid_ptr2 , grid_ptr , domain_id , parent_id , found_the_id )
174            IF ( found_the_id ) THEN
175
176               sibling_count = 0
177               DO dom_loop = 2 , domain_id
178                 CALL nl_get_parent_id ( dom_loop, parent_id_hold )
179                 IF ( parent_id_hold .EQ. parent_id ) THEN
180                    sibling_count = sibling_count + 1
181                 END IF
182               END DO
183               CALL alloc_and_configure_domain ( domain_id  = domain_id    , &
184                                                 grid       = another_grid , &
185                                                 parent     = grid_ptr     , &
186                                                 kid        = sibling_count )
187               grid => another_grid
188            ELSE
189              CALL wrf_error_fatal( 'real_em.F: Could not find the parent domain')
190            END IF
191         END IF
192
193         CALL Setup_Timekeeping ( grid )
194         CALL set_current_grid_ptr( grid )
195         CALL domain_clockprint ( 150, grid, &
196                'DEBUG real:  clock after Setup_Timekeeping,' )
197         CALL domain_clock_set( grid, &
198                                time_step_seconds=model_config_rec%interval_seconds )
199         CALL domain_clockprint ( 150, grid, &
200                'DEBUG real:  clock after timeStep set,' )
201
202
203         CALL       wrf_debug ( 100 , 'real_em: calling set_scalar_indices_from_config ' )
204         CALL set_scalar_indices_from_config ( grid%id , idum1, idum2 )
205
206         CALL       wrf_debug ( 100 , 'real_em: calling model_to_grid_config_rec ' )
207         CALL model_to_grid_config_rec ( grid%id , model_config_rec , config_flags )
208
209         !  Initialize the WRF IO: open files, init file handles, etc.
210
211         CALL       wrf_debug ( 100 , 'real_em: calling init_wrfio' )
212         CALL init_wrfio
213
214
215         !  Some of the configuration values may have been modified from the initial READ
216         !  of the NAMELIST, so we re-broadcast the configuration records.
217
218#ifdef DM_PARALLEL
219         CALL       wrf_debug ( 100 , 'real_em: re-broadcast the configuration records' )
220         CALL get_config_as_buffer( configbuf, configbuflen, nbytes )
221         CALL wrf_dm_bcast_bytes( configbuf, nbytes )
222         CALL set_config_as_buffer( configbuf, configbuflen )
223#endif
224
225         !   No looping in this layer. 
226
227         CALL       wrf_debug ( 100 , 'calling med_sidata_input' )
228         CALL med_sidata_input ( grid , config_flags )
229         CALL       wrf_debug ( 100 , 'backfrom med_sidata_input' )
230
231      ELSE
232         CYCLE all_domains
233      END IF
234
235   END DO all_domains
236
237   CALL set_current_grid_ptr( head_grid )
238
239   !  We are done.
240
241   CALL       wrf_debug (   0 , 'real_em: SUCCESS COMPLETE REAL_EM INIT' )
242
243   CALL wrf_shutdown
244
245   CALL WRFU_Finalize( rc=rc )
246
247END PROGRAM real_data
248
249SUBROUTINE med_sidata_input ( grid , config_flags )
250  ! Driver layer
251   USE module_domain
252   USE module_io_domain
253  ! Model layer
254   USE module_configure
255   USE module_bc_time_utilities
256   USE module_initialize
257   USE module_optional_si_input
258#ifdef WRF_CHEM
259   USE module_input_chem_data
260   USE module_input_chem_bioemiss
261#endif
262
263   USE module_date_time
264   USE module_utility
265
266   IMPLICIT NONE
267
268
269  ! Interface
270   INTERFACE
271     SUBROUTINE start_domain ( grid , allowed_to_read )  ! comes from module_start in appropriate dyn_ directory
272       USE module_domain
273       TYPE (domain) grid
274       LOGICAL, INTENT(IN) :: allowed_to_read
275     END SUBROUTINE start_domain
276   END INTERFACE
277
278  ! Arguments
279   TYPE(domain)                :: grid
280   TYPE (grid_config_rec_type) :: config_flags
281  ! Local
282   INTEGER                :: time_step_begin_restart
283   INTEGER                :: idsi , ierr , myproc
284   CHARACTER (LEN=80)      :: si_inpname
285   CHARACTER (LEN=80)      :: message
286
287   CHARACTER(LEN=19) :: start_date_char , end_date_char , current_date_char , next_date_char
288
289   INTEGER :: time_loop_max , loop, rc
290   INTEGER :: julyr , julday
291   REAL :: gmt
292real::t1,t2,t3,t4
293
294   grid%input_from_file = .true.
295   grid%input_from_file = .false.
296
297   CALL compute_si_start_and_end ( model_config_rec%start_year  (grid%id) , &
298                                   model_config_rec%start_month (grid%id) , &
299                                   model_config_rec%start_day   (grid%id) , &
300                                   model_config_rec%start_hour  (grid%id) , &
301                                   model_config_rec%start_minute(grid%id) , &
302                                   model_config_rec%start_second(grid%id) , &
303                                   model_config_rec%  end_year  (grid%id) , &
304                                   model_config_rec%  end_month (grid%id) , &
305                                   model_config_rec%  end_day   (grid%id) , &
306                                   model_config_rec%  end_hour  (grid%id) , &
307                                   model_config_rec%  end_minute(grid%id) , &
308                                   model_config_rec%  end_second(grid%id) , &
309                                   model_config_rec%interval_seconds      , &
310                                   model_config_rec%real_data_init_type   , &
311                                   start_date_char , end_date_char , time_loop_max )
312
313   !  Override stop time with value computed above. 
314   CALL domain_clock_set( grid, stop_timestr=end_date_char )
315
316   ! TBH:  for now, turn off stop time and let it run data-driven
317   CALL WRFU_ClockStopTimeDisable( grid%domain_clock, rc=rc )
318   CALL wrf_check_error( WRFU_SUCCESS, rc, &
319                         'WRFU_ClockStopTimeDisable(grid%domain_clock) FAILED', &
320                         __FILE__ , &
321                         __LINE__  )
322   CALL domain_clockprint ( 150, grid, &
323          'DEBUG med_sidata_input:  clock after stopTime set,' )
324
325   !  Here we define the initial time to process, for later use by the code.
326   
327   current_date_char = start_date_char
328   start_date = start_date_char // '.0000'
329   current_date = start_date
330
331   CALL nl_set_bdyfrq ( grid%id , REAL(model_config_rec%interval_seconds) )
332
333   !!!!!!!  Loop over each time period to process.
334
335   CALL cpu_time ( t1 )
336   DO loop = 1 , time_loop_max
337
338      internal_time_loop = loop
339      IF ( ( grid%id .GT. 1 ) .AND. ( loop .GT. 1 ) .AND. (model_config_rec%grid_fdda(grid%id) .EQ. 0) ) EXIT
340
341      print *,' '
342      print *,'-----------------------------------------------------------------------------'
343      print *,' '
344      print '(A,I2,A,A,A,I2,A,I2)' , &
345      ' Domain ',grid%id,': Current date being processed: ',current_date, ', which is loop #',loop,' out of ',time_loop_max
346
347      !  After current_date has been set, fill in the julgmt stuff.
348
349      CALL geth_julgmt ( config_flags%julyr , config_flags%julday , config_flags%gmt )
350
351        print *,'configflags%julyr, %julday, %gmt:',config_flags%julyr, config_flags%julday, config_flags%gmt
352      !  Now that the specific Julian info is available, save these in the model config record.
353
354      CALL nl_set_gmt (grid%id, config_flags%gmt)
355      CALL nl_set_julyr (grid%id, config_flags%julyr)
356      CALL nl_set_julday (grid%id, config_flags%julday)
357
358      !  Open the input file for real.  This is either the "new" one or the "old" one.  The "new" one could have
359      !  a suffix for the type of the data format.  Check to see if either is around.
360
361      CALL cpu_time ( t3 )
362      IF ( grid%dyn_opt .EQ. dyn_em ) THEN
363         WRITE ( wrf_err_message , FMT='(A,A)' )'med_sidata_input: calling open_r_dataset for ', &
364                                                TRIM(config_flags%auxinput1_inname)
365         CALL wrf_debug ( 100 , wrf_err_message )
366         CALL construct_filename4a( si_inpname , config_flags%auxinput1_inname , grid%id , 2 , &
367                                    current_date_char , config_flags%io_form_auxinput1 )
368         CALL open_r_dataset ( idsi, TRIM(si_inpname) , grid , config_flags , "DATASET=AUXINPUT1", ierr )
369         IF ( ierr .NE. 0 ) THEN
370            CALL wrf_debug( 1 , 'error opening ' // TRIM(si_inpname) // &
371                                ' for input; bad date in namelist or file not in directory' )
372            CALL wrf_debug( 1 , 'will try again without the extension' )
373            CALL construct_filename2a( si_inpname , config_flags%auxinput1_inname , grid%id , 2 , current_date_char )
374            CALL open_r_dataset ( idsi, TRIM(si_inpname) , grid , config_flags , "DATASET=AUXINPUT1", ierr )
375            IF ( ierr .NE. 0 ) THEN
376               CALL wrf_error_fatal( 'error opening ' // TRIM(si_inpname) // &
377                                     ' for input; bad date in namelist or file not in directory' )
378            ENDIF
379         ENDIF
380      END IF
381
382      !  Input data.
383
384      CALL wrf_debug ( 100 , 'med_sidata_input: calling input_aux_model_input1' )
385      CALL input_aux_model_input1 ( idsi ,   grid , config_flags , ierr )
386      CALL cpu_time ( t4 )
387      WRITE ( wrf_err_message , FMT='(A,I10,A)' ) 'Timing for input ',NINT(t4-t3) ,' s.'
388      CALL wrf_debug( 0, wrf_err_message )
389
390      !  Possible optional SI input.  This sets flags used by init_domain.
391
392      CALL cpu_time ( t3 )
393      IF ( loop .EQ. 1 ) THEN
394         already_been_here = .FALSE.
395         CALL       wrf_debug ( 100 , 'med_sidata_input: calling init_module_optional_si_input' )
396         CALL init_module_optional_si_input ( grid , config_flags )
397      END IF
398      CALL       wrf_debug ( 100 , 'med_sidata_input: calling optional_si_input' )
399      CALL  optional_si_input ( grid , idsi )
400
401      !  Initialize the mother domain for this time period with input data.
402
403      CALL       wrf_debug ( 100 , 'med_sidata_input: calling init_domain' )
404      grid%input_from_file = .true.
405      CALL init_domain ( grid )
406      CALL cpu_time ( t4 )
407      WRITE ( wrf_err_message , FMT='(A,I10,A)' ) 'Timing for processing ',NINT(t4-t3) ,' s.'
408      CALL wrf_debug( 0, wrf_err_message )
409      CALL model_to_grid_config_rec ( grid%id , model_config_rec , config_flags )
410
411      !  Close this file that is output from the SI and input to this pre-proc.
412
413      CALL       wrf_debug ( 100 , 'med_sidata_input: back from init_domain' )
414      CALL close_dataset ( idsi , config_flags , "DATASET=INPUT" )
415
416!     CALL start_domain ( grid , .TRUE. )
417
418#ifdef WRF_CHEM
419      IF ( loop == 1 ) THEN
420         IF( grid%chem_opt > 0 ) then
421           ! Read the chemistry data from a previous wrf forecast (wrfout file)
422           IF(grid%chem_in_opt == 1 ) THEN
423              message = 'INITIALIZING CHEMISTRY WITH OLD SIMULATION'
424              CALL  wrf_message ( message )
425
426              CALL input_ext_chem_file( grid )
427
428              IF(grid%bio_emiss_opt == BEIS311 ) THEN
429                 message = 'READING BEIS3.11 EMISSIONS DATA'
430                 CALL  wrf_message ( message )
431                 CALL med_read_wrf_chem_bioemiss ( grid , config_flags)
432              END IF
433 
434           ELSEIF(grid%chem_in_opt == 0)then
435              ! Generate chemistry data from a idealized vertical profile
436              message = 'STARTING WITH BACKGROUND CHEMISTRY '
437              CALL  wrf_message ( message )
438
439              CALL input_chem_profile ( grid )
440
441              IF(grid%bio_emiss_opt == BEIS311 ) THEN
442                 message = 'READING BEIS3.11 EMISSIONS DATA'
443                 CALL  wrf_message ( message )
444                 CALL med_read_wrf_chem_bioemiss ( grid , config_flags)
445              END IF
446
447           ELSE
448             message = 'RUNNING WITHOUT CHEMISTRY INITIALIZATION'
449             CALL  wrf_message ( message )
450           ENDIF
451         ENDIF
452      ENDIF
453#endif
454
455      CALL cpu_time ( t3 )
456      CALL assemble_output ( grid , config_flags , loop , time_loop_max )
457      CALL cpu_time ( t4 )
458      WRITE ( wrf_err_message , FMT='(A,I10,A)' ) 'Timing for output ',NINT(t4-t3) ,' s.'
459      CALL wrf_debug( 0, wrf_err_message )
460      CALL cpu_time ( t2 )
461      WRITE ( wrf_err_message , FMT='(A,I4,A,I10,A)' ) 'Timing for loop # ',loop,' = ',NINT(t2-t1) ,' s.'
462      CALL wrf_debug( 0, wrf_err_message )
463
464      !  If this is not the last time, we define the next time that we are going to process.
465
466      IF ( loop .NE. time_loop_max ) THEN
467         CALL geth_newdate ( current_date_char , start_date_char , loop * model_config_rec%interval_seconds )
468         current_date =  current_date_char // '.0000'
469         CALL domain_clockprint ( 150, grid, &
470                'DEBUG med_sidata_input:  clock before current_date set,' )
471         WRITE (wrf_err_message,*) &
472           'DEBUG med_sidata_input:  before currTime set, current_date = ',TRIM(current_date)
473         CALL wrf_debug ( 150 , wrf_err_message )
474         CALL domain_clock_set( grid, current_date(1:19) )
475         CALL domain_clockprint ( 150, grid, &
476                'DEBUG med_sidata_input:  clock after current_date set,' )
477      END IF
478      CALL cpu_time ( t1 )
479   END DO
480
481END SUBROUTINE med_sidata_input
482
483SUBROUTINE compute_si_start_and_end (  &
484   start_year , start_month , start_day , start_hour , start_minute , start_second , &
485     end_year ,   end_month ,   end_day ,   end_hour ,   end_minute ,   end_second , &
486   interval_seconds , real_data_init_type , &
487   start_date_char , end_date_char , time_loop_max )
488
489   USE module_date_time
490
491   IMPLICIT NONE
492
493   INTEGER :: start_year , start_month , start_day , start_hour , start_minute , start_second
494   INTEGER ::   end_year ,   end_month ,   end_day ,   end_hour ,   end_minute ,   end_second
495   INTEGER :: interval_seconds , real_data_init_type
496   INTEGER :: time_loop_max , time_loop
497
498   CHARACTER(LEN=19) :: current_date_char , start_date_char , end_date_char , next_date_char
499
500   WRITE ( start_date_char , FMT = '(I4.4,"-",I2.2,"-",I2.2,"_",I2.2,":",I2.2,":",I2.2)' ) &
501           start_year,start_month,start_day,start_hour,start_minute,start_second
502   WRITE (   end_date_char , FMT = '(I4.4,"-",I2.2,"-",I2.2,"_",I2.2,":",I2.2,":",I2.2)' ) &
503             end_year,  end_month,  end_day,  end_hour,  end_minute,  end_second
504
505   IF ( end_date_char .LT. start_date_char ) THEN
506      CALL wrf_error_fatal( 'Ending date in namelist ' // end_date_char // ' prior to beginning date ' // start_date_char )
507   END IF
508
509!  start_date = start_date_char // '.0000'
510
511   !  Figure out our loop count for the processing times.
512
513   time_loop = 1
514   PRINT '(A,I4,A,A,A)','Time period #',time_loop,' to process = ',start_date_char,'.'
515   current_date_char = start_date_char
516   loop_count : DO
517      CALL geth_newdate ( next_date_char , current_date_char , interval_seconds )
518      IF      ( next_date_char .LT. end_date_char ) THEN
519         time_loop = time_loop + 1
520         PRINT '(A,I4,A,A,A)','Time period #',time_loop,' to process = ',next_date_char,'.'
521         current_date_char = next_date_char
522      ELSE IF ( next_date_char .EQ. end_date_char ) THEN
523         time_loop = time_loop + 1
524         PRINT '(A,I4,A,A,A)','Time period #',time_loop,' to process = ',next_date_char,'.'
525         PRINT '(A,I4,A)','Total analysis times to input = ',time_loop,'.'
526         time_loop_max = time_loop
527         EXIT loop_count
528      ELSE IF ( next_date_char .GT. end_date_char ) THEN
529         PRINT '(A,I4,A)','Total analysis times to input = ',time_loop,'.'
530         time_loop_max = time_loop
531         EXIT loop_count
532      END IF
533   END DO loop_count
534END SUBROUTINE compute_si_start_and_end
535
536SUBROUTINE assemble_output ( grid , config_flags , loop , time_loop_max )
537
538   USE module_big_step_utilities_em
539   USE module_domain
540   USE module_io_domain
541   USE module_configure
542   USE module_date_time
543   USE module_bc
544   IMPLICIT NONE
545
546   TYPE(domain)                 :: grid
547   TYPE (grid_config_rec_type)  :: config_flags
548   INTEGER , INTENT(IN)         :: loop , time_loop_max
549
550   INTEGER :: ids , ide , jds , jde , kds , kde
551   INTEGER :: ims , ime , jms , jme , kms , kme
552   INTEGER :: ips , ipe , jps , jpe , kps , kpe
553   INTEGER :: ijds , ijde , spec_bdy_width
554   INTEGER :: i , j , k , idts
555
556   INTEGER :: id1 , interval_seconds , ierr, rc, sst_update, grid_fdda
557   INTEGER , SAVE :: id, id2,  id5
558   CHARACTER (LEN=80) :: inpname , bdyname
559   CHARACTER(LEN= 4) :: loop_char
560character *19 :: temp19
561character *24 :: temp24 , temp24b
562
563   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: ubdy3dtemp1 , vbdy3dtemp1 , tbdy3dtemp1 , pbdy3dtemp1 , qbdy3dtemp1
564!!!!***MARS >>
565   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q2bdy3dtemp1
566   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q3bdy3dtemp1
567   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q4bdy3dtemp1
568   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q5bdy3dtemp1
569   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q6bdy3dtemp1
570!!!!***MARS <<
571   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: mbdy2dtemp1
572   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: ubdy3dtemp2 , vbdy3dtemp2 , tbdy3dtemp2 , pbdy3dtemp2 , qbdy3dtemp2
573!!!!***MARS >>
574   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q2bdy3dtemp2
575   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q3bdy3dtemp2
576   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q4bdy3dtemp2
577   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q5bdy3dtemp2
578   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q6bdy3dtemp2
579!!!!***MARS <<
580   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: mbdy2dtemp2
581real::t1,t2
582
583   !  Various sizes that we need to be concerned about.
584
585   ids = grid%sd31
586   ide = grid%ed31
587   kds = grid%sd32
588   kde = grid%ed32
589   jds = grid%sd33
590   jde = grid%ed33
591
592   ims = grid%sm31
593   ime = grid%em31
594   kms = grid%sm32
595   kme = grid%em32
596   jms = grid%sm33
597   jme = grid%em33
598
599   ips = grid%sp31
600   ipe = grid%ep31
601   kps = grid%sp32
602   kpe = grid%ep32
603   jps = grid%sp33
604   jpe = grid%ep33
605
606   ijds = MIN ( ids , jds )
607   ijde = MAX ( ide , jde )
608
609   !  Boundary width, scalar value.
610
611   spec_bdy_width = model_config_rec%spec_bdy_width
612   interval_seconds = model_config_rec%interval_seconds
613   sst_update = model_config_rec%sst_update
614   grid_fdda = model_config_rec%grid_fdda(grid%id)
615
616
617   IF ( loop .EQ. 1 ) THEN
618
619      !  This is the space needed to save the current 3d data for use in computing
620      !  the lateral boundary tendencies.
621
622      IF ( ALLOCATED ( ubdy3dtemp1 ) ) DEALLOCATE ( ubdy3dtemp1 )
623      IF ( ALLOCATED ( vbdy3dtemp1 ) ) DEALLOCATE ( vbdy3dtemp1 )
624      IF ( ALLOCATED ( tbdy3dtemp1 ) ) DEALLOCATE ( tbdy3dtemp1 )
625      IF ( ALLOCATED ( pbdy3dtemp1 ) ) DEALLOCATE ( pbdy3dtemp1 )
626      IF ( ALLOCATED ( qbdy3dtemp1 ) ) DEALLOCATE ( qbdy3dtemp1 )
627!!!!***MARS >>
628      IF ( ALLOCATED ( q2bdy3dtemp1 ) ) DEALLOCATE ( q2bdy3dtemp1 )
629      IF ( ALLOCATED ( q3bdy3dtemp1 ) ) DEALLOCATE ( q3bdy3dtemp1 )
630      IF ( ALLOCATED ( q4bdy3dtemp1 ) ) DEALLOCATE ( q4bdy3dtemp1 )
631      IF ( ALLOCATED ( q3bdy3dtemp1 ) ) DEALLOCATE ( q5bdy3dtemp1 )
632      IF ( ALLOCATED ( q4bdy3dtemp1 ) ) DEALLOCATE ( q6bdy3dtemp1 )
633!!!!***MARS <<
634      IF ( ALLOCATED ( mbdy2dtemp1 ) ) DEALLOCATE ( mbdy2dtemp1 )
635      IF ( ALLOCATED ( ubdy3dtemp2 ) ) DEALLOCATE ( ubdy3dtemp2 )
636      IF ( ALLOCATED ( vbdy3dtemp2 ) ) DEALLOCATE ( vbdy3dtemp2 )
637      IF ( ALLOCATED ( tbdy3dtemp2 ) ) DEALLOCATE ( tbdy3dtemp2 )
638      IF ( ALLOCATED ( pbdy3dtemp2 ) ) DEALLOCATE ( pbdy3dtemp2 )
639      IF ( ALLOCATED ( qbdy3dtemp2 ) ) DEALLOCATE ( qbdy3dtemp2 )
640!!!!***MARS >>
641      IF ( ALLOCATED ( q2bdy3dtemp2 ) ) DEALLOCATE ( q2bdy3dtemp2 )
642      IF ( ALLOCATED ( q3bdy3dtemp2 ) ) DEALLOCATE ( q3bdy3dtemp2 )
643      IF ( ALLOCATED ( q4bdy3dtemp2 ) ) DEALLOCATE ( q4bdy3dtemp2 )
644      IF ( ALLOCATED ( q3bdy3dtemp2 ) ) DEALLOCATE ( q5bdy3dtemp2 )
645      IF ( ALLOCATED ( q4bdy3dtemp2 ) ) DEALLOCATE ( q6bdy3dtemp2 )
646!!!!***MARS <<
647      IF ( ALLOCATED ( mbdy2dtemp2 ) ) DEALLOCATE ( mbdy2dtemp2 )
648
649      ALLOCATE ( ubdy3dtemp1(ims:ime,kms:kme,jms:jme) )
650      ALLOCATE ( vbdy3dtemp1(ims:ime,kms:kme,jms:jme) )
651      ALLOCATE ( tbdy3dtemp1(ims:ime,kms:kme,jms:jme) )
652      ALLOCATE ( pbdy3dtemp1(ims:ime,kms:kme,jms:jme) )
653      ALLOCATE ( qbdy3dtemp1(ims:ime,kms:kme,jms:jme) )
654!!!!***MARS >>
655      ALLOCATE ( q2bdy3dtemp1(ims:ime,kms:kme,jms:jme) )
656      ALLOCATE ( q3bdy3dtemp1(ims:ime,kms:kme,jms:jme) )
657      ALLOCATE ( q4bdy3dtemp1(ims:ime,kms:kme,jms:jme) )
658      ALLOCATE ( q5bdy3dtemp1(ims:ime,kms:kme,jms:jme) )
659      ALLOCATE ( q6bdy3dtemp1(ims:ime,kms:kme,jms:jme) )
660!!!!***MARS <<
661      ALLOCATE ( mbdy2dtemp1(ims:ime,1:1,    jms:jme) )
662      ALLOCATE ( ubdy3dtemp2(ims:ime,kms:kme,jms:jme) )
663      ALLOCATE ( vbdy3dtemp2(ims:ime,kms:kme,jms:jme) )
664      ALLOCATE ( tbdy3dtemp2(ims:ime,kms:kme,jms:jme) )
665      ALLOCATE ( pbdy3dtemp2(ims:ime,kms:kme,jms:jme) )
666      ALLOCATE ( qbdy3dtemp2(ims:ime,kms:kme,jms:jme) )
667!!!!***MARS >>
668      ALLOCATE ( q2bdy3dtemp2(ims:ime,kms:kme,jms:jme) )
669      ALLOCATE ( q3bdy3dtemp2(ims:ime,kms:kme,jms:jme) )
670      ALLOCATE ( q4bdy3dtemp2(ims:ime,kms:kme,jms:jme) )
671      ALLOCATE ( q5bdy3dtemp2(ims:ime,kms:kme,jms:jme) )
672      ALLOCATE ( q6bdy3dtemp2(ims:ime,kms:kme,jms:jme) )
673!!!!***MARS <<
674      ALLOCATE ( mbdy2dtemp2(ims:ime,1:1,    jms:jme) )
675
676      !  Open the wrfinput file.  From this program, this is an *output* file.
677
678      CALL construct_filename1( inpname , 'wrfinput' , grid%id , 2 )
679      CALL open_w_dataset ( id1, TRIM(inpname) , grid , config_flags , output_model_input , "DATASET=INPUT", ierr )
680      IF ( ierr .NE. 0 ) THEN
681         CALL wrf_error_fatal( 'real: error opening wrfinput for writing' )
682      ENDIF
683      IF(sst_update .EQ. 1)THEN
684        CALL construct_filename1( inpname , 'wrflowinp' , grid%id , 2 )
685        CALL open_w_dataset ( id5, TRIM(inpname) , grid , config_flags , output_aux_model_input5 , "DATASET=AUXINPUT5", ierr )
686        IF ( ierr .NE. 0 ) THEN
687           CALL wrf_error_fatal( 'real: error opening wrflowinp for writing' )
688        ENDIF
689      ENDIF
690!     CALL calc_current_date ( grid%id , 0. )
691      CALL output_model_input ( id1, grid , config_flags , ierr )
692      CALL close_dataset ( id1 , config_flags , "DATASET=INPUT" )
693      IF(sst_update .EQ. 1)THEN
694        CALL output_aux_model_input5 ( id5, grid , config_flags , ierr )
695      ENDIF
696
697      !  We need to save the 3d data to compute a difference during the next loop.  Couple the
698      !  3d fields with total mu (mub + mu_2) and the stagger-specific map scale factor.
699
700      CALL couple ( grid%em_mu_2 , grid%em_mub , ubdy3dtemp1 , grid%em_u_2                 , 'u' , grid%msfu , &
701                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
702      CALL couple ( grid%em_mu_2 , grid%em_mub , vbdy3dtemp1 , grid%em_v_2                 , 'v' , grid%msfv , &
703                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
704      CALL couple ( grid%em_mu_2 , grid%em_mub , tbdy3dtemp1 , grid%em_t_2                 , 't' , grid%msft , &
705                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
706      CALL couple ( grid%em_mu_2 , grid%em_mub , pbdy3dtemp1 , grid%em_ph_2                , 'h' , grid%msft , &
707                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
708!      CALL couple ( grid%em_mu_2 , grid%em_mub , qbdy3dtemp1 , grid%moist(:,:,:,P_QV) , 't' , grid%msft , &
709!                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
710
711!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
712!!!!!MARS: si config_flags%mars != 0 il y a au moins un autre traceur (indice 2 a cause du dummy tracer)
713!!!!!MARS: -- il faut donc definir ses conditions aux bornes
714!!!!!MARS: -- cas generique ici, les choix de flux ou non-flux sont dans solve_em
715!!!!!MARS: ensuite faire au cas par cas (ou un jour une boucle sur le nombre de traceurs ???) !!!q2bdy3dtemp1
716!!!!!MARS: NB NB: si on ne veut pas passer un traceur aux bornes, tout ce qui suit n'est pas utile
717!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
718IF (config_flags%mars .gt. 0) THEN
719      CALL couple ( grid%em_mu_2 , grid%em_mub , qbdy3dtemp1 , grid%scalar(:,:,:,2) , 't' , grid%msft , &
720                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
721ENDIF
722!!!!!MARS: autres possibilites. pour le moment seuls 4 traceurs aux bornes sont supportes.
723!!!!!MARS: ... mais il est facile d'en ajouter... ajouter simplement des tableaux type q2bdy3dtemp1
724IF ( (config_flags%mars .eq. 1) .OR. &
725     (config_flags%mars .eq. 3) .OR. &
726     (config_flags%mars .eq. 11) .OR. &
727     (config_flags%mars .eq. 12) ) THEN
728      CALL couple ( grid%em_mu_2 , grid%em_mub , q2bdy3dtemp1 , grid%scalar(:,:,:,3) , 't' , grid%msft , &
729                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
730ENDIF
731IF ((config_flags%mars .eq. 11) .OR. (config_flags%mars .eq. 12)) THEN
732      CALL couple ( grid%em_mu_2 , grid%em_mub , q3bdy3dtemp1 , grid%scalar(:,:,:,4) , 't' , grid%msft , &
733                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
734      CALL couple ( grid%em_mu_2 , grid%em_mub , q4bdy3dtemp1 , grid%scalar(:,:,:,5) , 't' , grid%msft , &
735                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
736ENDIF
737IF ((config_flags%mars .eq. 12)) THEN
738      CALL couple ( grid%em_mu_2 , grid%em_mub , q5bdy3dtemp1 , grid%scalar(:,:,:,6) , 't' , grid%msft , &
739                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
740      CALL couple ( grid%em_mu_2 , grid%em_mub , q6bdy3dtemp1 , grid%scalar(:,:,:,7) , 't' , grid%msft , &
741                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
742ENDIF
743!!!!!MARS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
744
745
746
747      DO j = jps , MIN(jde-1,jpe)
748         DO i = ips , MIN(ide-1,ipe)
749            mbdy2dtemp1(i,1,j) = grid%em_mu_2(i,j)
750         END DO
751      END DO
752
753      IF(grid_fdda .EQ. 1)THEN
754! for fdda
755         DO j = jps , jpe
756            DO k = kps , kpe
757               DO i = ips , ipe
758                  grid%fdda3d(i,k,j,p_u_ndg_old) = grid%em_u_2(i,k,j)
759                  grid%fdda3d(i,k,j,p_v_ndg_old) = grid%em_v_2(i,k,j)
760                  grid%fdda3d(i,k,j,p_t_ndg_old) = grid%em_t_2(i,k,j)
761                  grid%fdda3d(i,k,j,p_q_ndg_old) = grid%moist(i,k,j,P_QV)
762                  grid%fdda3d(i,k,j,p_ph_ndg_old) = grid%em_ph_2(i,k,j)
763               END DO
764            END DO
765         END DO
766
767         DO j = jps , jpe
768            DO i = ips , ipe
769               grid%fdda2d(i,1,j,p_mu_ndg_old) = grid%em_mu_2(i,j)
770            END DO
771         END DO
772      ENDIF
773
774
775      !  There are 2 components to the lateral boundaries.  First, there is the starting
776      !  point of this time period - just the outer few rows and columns.
777
778      CALL stuff_bdy     ( ubdy3dtemp1 , grid%em_u_b     , 'U' , ijds , ijde , spec_bdy_width      , &
779                                                                 ids , ide , jds , jde , kds , kde , &
780                                                                 ims , ime , jms , jme , kms , kme , &
781                                                                 ips , ipe , jps , jpe , kps , kpe )
782      CALL stuff_bdy     ( vbdy3dtemp1 , grid%em_v_b     , 'V' , ijds , ijde , spec_bdy_width      , &
783                                                                 ids , ide , jds , jde , kds , kde , &
784                                                                 ims , ime , jms , jme , kms , kme , &
785                                                                 ips , ipe , jps , jpe , kps , kpe )
786      CALL stuff_bdy     ( tbdy3dtemp1 , grid%em_t_b     , 'T' , ijds , ijde , spec_bdy_width      , &
787                                                                 ids , ide , jds , jde , kds , kde , &
788                                                                 ims , ime , jms , jme , kms , kme , &
789                                                                 ips , ipe , jps , jpe , kps , kpe )
790      CALL stuff_bdy     ( pbdy3dtemp1 , grid%em_ph_b    , 'W' , ijds , ijde , spec_bdy_width      , &
791                                                                 ids , ide , jds , jde , kds , kde , &
792                                                                 ims , ime , jms , jme , kms , kme , &
793                                                                 ips , ipe , jps , jpe , kps , kpe )
794!      CALL stuff_bdy     ( qbdy3dtemp1 , grid%moist_b(:,:,:,:,P_QV)   , 'T' , ijds , ijde , spec_bdy_width      , &
795!                                                                 ids , ide , jds , jde , kds , kde , &
796!                                                                 ims , ime , jms , jme , kms , kme , &
797!                                                                 ips , ipe , jps , jpe , kps , kpe )
798!!!!!MARS >>
799IF (config_flags%mars .gt. 0) THEN
800      CALL stuff_bdy     ( qbdy3dtemp1 , grid%scalar_b(:,:,:,:,2)   , 'T' , ijds , ijde , spec_bdy_width      , &
801                                                                 ids , ide , jds , jde , kds , kde , &
802                                                                 ims , ime , jms , jme , kms , kme , &
803                                                                 ips , ipe , jps , jpe , kps , kpe )
804ENDIF
805IF ( (config_flags%mars .eq. 1) .OR. &
806     (config_flags%mars .eq. 3) .OR. &
807     (config_flags%mars .eq. 11) .OR. &
808     (config_flags%mars .eq. 12) ) THEN
809      CALL stuff_bdy     ( q2bdy3dtemp1 , grid%scalar_b(:,:,:,:,3)   , 'T' , ijds , ijde , spec_bdy_width      , &
810                                                                 ids , ide , jds , jde , kds , kde , &
811                                                                 ims , ime , jms , jme , kms , kme , &
812                                                                 ips , ipe , jps , jpe , kps , kpe )
813ENDIF
814IF ((config_flags%mars .eq. 11) .OR. (config_flags%mars .eq. 12)) THEN
815      CALL stuff_bdy     ( q3bdy3dtemp1 , grid%scalar_b(:,:,:,:,4)   , 'T' , ijds , ijde , spec_bdy_width      , &
816                                                                 ids , ide , jds , jde , kds , kde , &
817                                                                 ims , ime , jms , jme , kms , kme , &
818                                                                 ips , ipe , jps , jpe , kps , kpe )
819      CALL stuff_bdy     ( q4bdy3dtemp1 , grid%scalar_b(:,:,:,:,5)   , 'T' , ijds , ijde , spec_bdy_width      , &
820                                                                 ids , ide , jds , jde , kds , kde , &
821                                                                 ims , ime , jms , jme , kms , kme , &
822                                                                 ips , ipe , jps , jpe , kps , kpe )
823ENDIF
824IF ((config_flags%mars .eq. 12)) THEN
825      CALL stuff_bdy     ( q5bdy3dtemp1 , grid%scalar_b(:,:,:,:,6)   , 'T' , ijds , ijde , spec_bdy_width      , &
826                                                                 ids , ide , jds , jde , kds , kde , &
827                                                                 ims , ime , jms , jme , kms , kme , &
828                                                                 ips , ipe , jps , jpe , kps , kpe )
829      CALL stuff_bdy     ( q6bdy3dtemp1 , grid%scalar_b(:,:,:,:,7)   , 'T' , ijds , ijde , spec_bdy_width      , &
830                                                                 ids , ide , jds , jde , kds , kde , &
831                                                                 ims , ime , jms , jme , kms , kme , &
832                                                                 ips , ipe , jps , jpe , kps , kpe )
833ENDIF
834!!!!MARS <<
835
836      CALL stuff_bdy     ( mbdy2dtemp1 , grid%em_mu_b    , 'M' , ijds , ijde , spec_bdy_width      , &
837                                                                 ids , ide , jds , jde , 1 , 1 , &
838                                                                 ims , ime , jms , jme , 1 , 1 , &
839                                                                 ips , ipe , jps , jpe , 1 , 1 )
840
841
842   ELSE IF ( loop .GT. 1 ) THEN
843
844      IF(sst_update .EQ. 1)THEN
845        CALL output_aux_model_input5 ( id5, grid , config_flags , ierr )
846      ENDIF
847
848      !  Open the boundary file.
849
850
851      IF ( loop .eq. 2 ) THEN
852       IF(grid%id .eq. 1)THEN
853         CALL construct_filename1( bdyname , 'wrfbdy' , grid%id , 2 )
854         CALL open_w_dataset ( id, TRIM(bdyname) , grid , config_flags , output_boundary , "DATASET=BOUNDARY", ierr )
855         IF ( ierr .NE. 0 ) THEN
856               CALL wrf_error_fatal( 'real: error opening wrfbdy for writing' )
857         ENDIF
858       ENDIF
859       IF(grid_fdda .EQ. 1)THEN
860! for fdda
861         CALL construct_filename1( inpname , 'wrffdda' , grid%id , 2 )
862         CALL open_w_dataset ( id2, TRIM(inpname) , grid , config_flags , output_aux_model_input10 , "DATASET=AUXINPUT10", ierr )
863         IF ( ierr .NE. 0 ) THEN
864               CALL wrf_error_fatal( 'real: error opening wrffdda for writing' )
865         ENDIF
866       ENDIF
867      ELSE
868         IF ( .NOT. domain_clockisstoptime(grid) ) THEN
869            CALL domain_clockadvance( grid )
870            CALL domain_clockprint ( 150, grid, &
871                   'DEBUG assemble_output:  clock after ClockAdvance,' )
872         ENDIF
873      END IF
874
875
876      !  Couple this time period's data with total mu, and save it in the *bdy3dtemp2 arrays.
877
878      CALL couple ( grid%em_mu_2 , grid%em_mub , ubdy3dtemp2 , grid%em_u_2                 , 'u' , grid%msfu , &
879                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
880      CALL couple ( grid%em_mu_2 , grid%em_mub , vbdy3dtemp2 , grid%em_v_2                 , 'v' , grid%msfv , &
881                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
882      CALL couple ( grid%em_mu_2 , grid%em_mub , tbdy3dtemp2 , grid%em_t_2                 , 't' , grid%msft , &
883                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
884      CALL couple ( grid%em_mu_2 , grid%em_mub , pbdy3dtemp2 , grid%em_ph_2                , 'h' , grid%msft , &
885                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
886!      CALL couple ( grid%em_mu_2 , grid%em_mub , qbdy3dtemp2 , grid%moist(:,:,:,P_QV) , 't' , grid%msft , &
887!                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
888!!!!!MARS >>
889IF (config_flags%mars .gt. 0) THEN
890      CALL couple ( grid%em_mu_2 , grid%em_mub , qbdy3dtemp2 , grid%scalar(:,:,:,2) , 't' , grid%msft , &
891                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
892ENDIF
893IF ( (config_flags%mars .eq. 1) .OR. &
894     (config_flags%mars .eq. 3) .OR. &
895     (config_flags%mars .eq. 11) .OR. &
896     (config_flags%mars .eq. 12) ) THEN
897      CALL couple ( grid%em_mu_2 , grid%em_mub , q2bdy3dtemp2 , grid%scalar(:,:,:,3) , 't' , grid%msft , &
898                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
899ENDIF
900IF ((config_flags%mars .eq. 11) .OR. (config_flags%mars .eq. 12)) THEN
901      CALL couple ( grid%em_mu_2 , grid%em_mub , q3bdy3dtemp2 , grid%scalar(:,:,:,4) , 't' , grid%msft , &
902                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
903      CALL couple ( grid%em_mu_2 , grid%em_mub , q4bdy3dtemp2 , grid%scalar(:,:,:,5) , 't' , grid%msft , &
904                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
905ENDIF
906IF ((config_flags%mars .eq. 12)) THEN
907      CALL couple ( grid%em_mu_2 , grid%em_mub , q5bdy3dtemp2 , grid%scalar(:,:,:,6) , 't' , grid%msft , &
908                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
909      CALL couple ( grid%em_mu_2 , grid%em_mub , q6bdy3dtemp2 , grid%scalar(:,:,:,7) , 't' , grid%msft , &
910                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
911ENDIF
912!!!!!MARS <<
913
914      DO j = jps , jpe
915         DO i = ips , ipe
916            mbdy2dtemp2(i,1,j) = grid%em_mu_2(i,j)
917         END DO
918      END DO
919
920      IF(grid_fdda .EQ. 1)THEN
921! for fdda
922         DO j = jps , jpe
923            DO k = kps , kpe
924               DO i = ips , ipe
925                  grid%fdda3d(i,k,j,p_u_ndg_new) = grid%em_u_2(i,k,j)
926                  grid%fdda3d(i,k,j,p_v_ndg_new) = grid%em_v_2(i,k,j)
927                  grid%fdda3d(i,k,j,p_t_ndg_new) = grid%em_t_2(i,k,j)
928                  grid%fdda3d(i,k,j,p_q_ndg_new) = grid%moist(i,k,j,P_QV)
929                  grid%fdda3d(i,k,j,p_ph_ndg_new) = grid%em_ph_2(i,k,j)
930               END DO
931            END DO
932         END DO
933
934         DO j = jps , jpe
935            DO i = ips , ipe
936               grid%fdda2d(i,1,j,p_mu_ndg_new) = grid%em_mu_2(i,j)
937            END DO
938         END DO
939      ENDIF
940
941      !  During all of the loops after the first loop, we first compute the boundary
942      !  tendencies with the current data values (*bdy3dtemp2 arrays) and the previously
943      !  saved information stored in the *bdy3dtemp1 arrays.
944
945      CALL stuff_bdytend ( ubdy3dtemp2 , ubdy3dtemp1 , REAL(interval_seconds) , grid%em_u_bt  , 'U' , &
946                                                            ijds , ijde , spec_bdy_width      , &
947                                                            ids , ide , jds , jde , kds , kde , &
948                                                            ims , ime , jms , jme , kms , kme , &
949                                                            ips , ipe , jps , jpe , kps , kpe )
950      CALL stuff_bdytend ( vbdy3dtemp2 , vbdy3dtemp1 , REAL(interval_seconds) , grid%em_v_bt  , 'V' , &
951                                                            ijds , ijde , spec_bdy_width      , &
952                                                            ids , ide , jds , jde , kds , kde , &
953                                                            ims , ime , jms , jme , kms , kme , &
954                                                            ips , ipe , jps , jpe , kps , kpe )
955      CALL stuff_bdytend ( tbdy3dtemp2 , tbdy3dtemp1 , REAL(interval_seconds) , grid%em_t_bt  , 'T' , &
956                                                            ijds , ijde , spec_bdy_width      , &
957                                                            ids , ide , jds , jde , kds , kde , &
958                                                            ims , ime , jms , jme , kms , kme , &
959                                                            ips , ipe , jps , jpe , kps , kpe )
960      CALL stuff_bdytend ( pbdy3dtemp2 , pbdy3dtemp1 , REAL(interval_seconds) , grid%em_ph_bt  , 'W' , &
961                                                            ijds , ijde , spec_bdy_width      , &
962                                                            ids , ide , jds , jde , kds , kde , &
963                                                            ims , ime , jms , jme , kms , kme , &
964                                                            ips , ipe , jps , jpe , kps , kpe )
965!      CALL stuff_bdytend ( qbdy3dtemp2 , qbdy3dtemp1 , REAL(interval_seconds) , grid%moist_bt(:,:,:,:,P_QV) , 'T' , &
966!                                                            ijds , ijde , spec_bdy_width      , &
967!                                                            ids , ide , jds , jde , kds , kde , &
968!                                                            ims , ime , jms , jme , kms , kme , &
969!                                                            ips , ipe , jps , jpe , kps , kpe )
970!!!!!MARS >>
971IF (config_flags%mars .gt. 0) THEN
972      CALL stuff_bdytend ( qbdy3dtemp2 , qbdy3dtemp1 , REAL(interval_seconds) , grid%scalar_bt(:,:,:,:,2) , 'T' , &
973                                                            ijds , ijde , spec_bdy_width      , &
974                                                            ids , ide , jds , jde , kds , kde , &
975                                                            ims , ime , jms , jme , kms , kme , &
976                                                            ips , ipe , jps , jpe , kps , kpe )
977ENDIF
978IF ( (config_flags%mars .eq. 1) .OR. &
979     (config_flags%mars .eq. 3) .OR. &
980     (config_flags%mars .eq. 11) .OR. &
981     (config_flags%mars .eq. 12) ) THEN
982      CALL stuff_bdytend ( q2bdy3dtemp2 , q2bdy3dtemp1 , REAL(interval_seconds) ,grid%scalar_bt(:,:,:,:,3) , 'T' , &
983                                                            ijds , ijde , spec_bdy_width      , &
984                                                            ids , ide , jds , jde , kds , kde , &
985                                                            ims , ime , jms , jme , kms , kme , &
986                                                            ips , ipe , jps , jpe , kps , kpe )
987ENDIF
988IF ((config_flags%mars .eq. 11) .OR. (config_flags%mars .eq. 12)) THEN
989      CALL stuff_bdytend ( q3bdy3dtemp2 , q3bdy3dtemp1 , REAL(interval_seconds) , grid%scalar_bt(:,:,:,:,4) , 'T' , &
990                                                            ijds , ijde , spec_bdy_width      , &
991                                                            ids , ide , jds , jde , kds , kde , &
992                                                            ims , ime , jms , jme , kms , kme , &
993                                                            ips , ipe , jps , jpe , kps , kpe )
994      CALL stuff_bdytend ( q4bdy3dtemp2 , q4bdy3dtemp1 , REAL(interval_seconds) ,grid%scalar_bt(:,:,:,:,5) , 'T' , &
995                                                            ijds , ijde , spec_bdy_width      , &
996                                                            ids , ide , jds , jde , kds , kde , &
997                                                            ims , ime , jms , jme , kms , kme , &
998                                                            ips , ipe , jps , jpe , kps , kpe )
999ENDIF
1000IF ((config_flags%mars .eq. 12)) THEN
1001      CALL stuff_bdytend ( q5bdy3dtemp2 , q5bdy3dtemp1 , REAL(interval_seconds) , grid%scalar_bt(:,:,:,:,6) , 'T' , &
1002                                                            ijds , ijde , spec_bdy_width      , &
1003                                                            ids , ide , jds , jde , kds , kde , &
1004                                                            ims , ime , jms , jme , kms , kme , &
1005                                                            ips , ipe , jps , jpe , kps , kpe )
1006      CALL stuff_bdytend ( q6bdy3dtemp2 , q6bdy3dtemp1 , REAL(interval_seconds) ,grid%scalar_bt(:,:,:,:,7) , 'T' , &
1007                                                            ijds , ijde , spec_bdy_width      , &
1008                                                            ids , ide , jds , jde , kds , kde , &
1009                                                            ims , ime , jms , jme , kms , kme , &
1010                                                            ips , ipe , jps , jpe , kps , kpe )
1011ENDIF
1012!!!!!MARS <<
1013
1014      CALL stuff_bdytend ( mbdy2dtemp2 , mbdy2dtemp1 , REAL(interval_seconds) , grid%em_mu_bt  , 'M' , &
1015                                                            ijds , ijde , spec_bdy_width      , &
1016                                                            ids , ide , jds , jde , 1 , 1 , &
1017                                                            ims , ime , jms , jme , 1 , 1 , &
1018                                                            ips , ipe , jps , jpe , 1 , 1 )
1019
1020      !  Both pieces of the boundary data are now available to be written (initial time and tendency).
1021      !  This looks ugly, these date shifting things.  What's it for?  We want the "Times" variable
1022      !  in the lateral BDY file to have the valid times of when the initial fields are written.
1023      !  That's what the loop-2 thingy is for with the start date.  We increment the start_date so
1024      !  that the starting time in the attributes is the second time period.  Why you may ask.  I
1025      !  agree, why indeed.
1026
1027      CALL domain_clockprint ( 150, grid, &
1028             'DEBUG assemble_output:  clock before 1st current_date set,' )
1029      WRITE (wrf_err_message,*) &
1030        'DEBUG assemble_output:  before 1st currTime set, current_date = ',TRIM(current_date)
1031      CALL wrf_debug ( 150 , wrf_err_message )
1032      CALL domain_clock_set( grid, current_date(1:19) )
1033      CALL domain_clockprint ( 150, grid, &
1034             'DEBUG assemble_output:  clock after 1st current_date set,' )
1035
1036      temp24= current_date
1037      temp24b=start_date
1038      start_date = current_date
1039      CALL geth_newdate ( temp19 , temp24b(1:19) , (loop-2) * model_config_rec%interval_seconds )
1040      current_date = temp19 //  '.0000'
1041      CALL domain_clockprint ( 150, grid, &
1042             'DEBUG assemble_output:  clock before 2nd current_date set,' )
1043      WRITE (wrf_err_message,*) &
1044        'DEBUG assemble_output:  before 2nd currTime set, current_date = ',TRIM(current_date)
1045      CALL wrf_debug ( 150 , wrf_err_message )
1046      CALL domain_clock_set( grid, current_date(1:19) )
1047      CALL domain_clockprint ( 150, grid, &
1048             'DEBUG assemble_output:  clock after 2nd current_date set,' )
1049      IF(grid%id .EQ. 1)THEN
1050        print *,'LBC valid between these times ',current_date, ' ',start_date
1051        CALL output_boundary ( id, grid , config_flags , ierr )
1052      ENDIF
1053! for fdda
1054      IF(grid_fdda .EQ. 1) THEN
1055         CALL output_aux_model_input10 ( id2, grid , config_flags , ierr )
1056      END IF
1057      current_date = temp24
1058      start_date = temp24b
1059      CALL domain_clockprint ( 150, grid, &
1060             'DEBUG assemble_output:  clock before 3rd current_date set,' )
1061      WRITE (wrf_err_message,*) &
1062        'DEBUG assemble_output:  before 3rd currTime set, current_date = ',TRIM(current_date)
1063      CALL wrf_debug ( 150 , wrf_err_message )
1064      CALL domain_clock_set( grid, current_date(1:19) )
1065      CALL domain_clockprint ( 150, grid, &
1066             'DEBUG assemble_output:  clock after 3rd current_date set,' )
1067
1068      !  OK, for all of the loops, we output the initialzation data, which would allow us to
1069      !  start the model at any of the available analysis time periods.
1070
1071!     WRITE ( loop_char , FMT = '(I4.4)' ) loop
1072!     CALL open_w_dataset ( id1, 'wrfinput'//loop_char , grid , config_flags , output_model_input , "DATASET=INPUT", ierr )
1073!     IF ( ierr .NE. 0 ) THEN
1074!       CALL wrf_error_fatal( 'real: error opening wrfinput'//loop_char//' for writing' )
1075!     ENDIF
1076
1077!     CALL calc_current_date ( grid%id , 0. )
1078!     CALL output_model_input ( id1, grid , config_flags , ierr )
1079!     CALL close_dataset ( id1 , config_flags , "DATASET=INPUT" )
1080      !  Is this or is this not the last time time?  We can remove some unnecessary
1081      !  stores if it is not.
1082      IF     ( loop .LT. time_loop_max ) THEN
1083
1084         !  We need to save the 3d data to compute a difference during the next loop.  Couple the
1085         !  3d fields with total mu (mub + mu_2) and the stagger-specific map scale factor.
1086         !  We load up the boundary data again for use in the next loop.
1087
1088         DO j = jps , jpe
1089            DO k = kps , kpe
1090               DO i = ips , ipe
1091                  ubdy3dtemp1(i,k,j) = ubdy3dtemp2(i,k,j)
1092                  vbdy3dtemp1(i,k,j) = vbdy3dtemp2(i,k,j)
1093                  tbdy3dtemp1(i,k,j) = tbdy3dtemp2(i,k,j)
1094                  pbdy3dtemp1(i,k,j) = pbdy3dtemp2(i,k,j)
1095                  qbdy3dtemp1(i,k,j) = qbdy3dtemp2(i,k,j)
1096!!!!MARS >>
1097                  q2bdy3dtemp1(i,k,j) = q2bdy3dtemp2(i,k,j)
1098                  q3bdy3dtemp1(i,k,j) = q3bdy3dtemp2(i,k,j)
1099                  q4bdy3dtemp1(i,k,j) = q4bdy3dtemp2(i,k,j)
1100                  q5bdy3dtemp1(i,k,j) = q5bdy3dtemp2(i,k,j)
1101                  q6bdy3dtemp1(i,k,j) = q6bdy3dtemp2(i,k,j)
1102!!!!MARS <<
1103               END DO
1104            END DO
1105         END DO
1106
1107         DO j = jps , jpe
1108            DO i = ips , ipe
1109               mbdy2dtemp1(i,1,j) = mbdy2dtemp2(i,1,j)
1110            END DO
1111         END DO
1112
1113      IF(grid_fdda .EQ. 1)THEN
1114! for fdda
1115         DO j = jps , jpe
1116            DO k = kps , kpe
1117               DO i = ips , ipe
1118                  grid%fdda3d(i,k,j,p_u_ndg_old) = grid%fdda3d(i,k,j,p_u_ndg_new)
1119                  grid%fdda3d(i,k,j,p_v_ndg_old) = grid%fdda3d(i,k,j,p_v_ndg_new)
1120                  grid%fdda3d(i,k,j,p_t_ndg_old) = grid%fdda3d(i,k,j,p_t_ndg_new)
1121                  grid%fdda3d(i,k,j,p_q_ndg_old) = grid%fdda3d(i,k,j,p_q_ndg_new)
1122                  grid%fdda3d(i,k,j,p_ph_ndg_old) = grid%fdda3d(i,k,j,p_ph_ndg_new)
1123               END DO
1124            END DO
1125         END DO
1126
1127         DO j = jps , jpe
1128            DO i = ips , ipe
1129               grid%fdda2d(i,1,j,p_mu_ndg_old) = grid%fdda2d(i,1,j,p_mu_ndg_new)
1130            END DO
1131         END DO
1132      ENDIF
1133
1134         !  There are 2 components to the lateral boundaries.  First, there is the starting
1135         !  point of this time period - just the outer few rows and columns.
1136
1137         CALL stuff_bdy     ( ubdy3dtemp1 , grid%em_u_b     , 'U' , ijds , ijde , spec_bdy_width      , &
1138                                                                    ids , ide , jds , jde , kds , kde , &
1139                                                                    ims , ime , jms , jme , kms , kme , &
1140                                                                    ips , ipe , jps , jpe , kps , kpe )
1141         CALL stuff_bdy     ( vbdy3dtemp1 , grid%em_v_b     , 'V' , ijds , ijde , spec_bdy_width      , &
1142                                                                    ids , ide , jds , jde , kds , kde , &
1143                                                                    ims , ime , jms , jme , kms , kme , &
1144                                                                    ips , ipe , jps , jpe , kps , kpe )
1145         CALL stuff_bdy     ( tbdy3dtemp1 , grid%em_t_b     , 'T' , ijds , ijde , spec_bdy_width      , &
1146                                                                    ids , ide , jds , jde , kds , kde , &
1147                                                                    ims , ime , jms , jme , kms , kme , &
1148                                                                    ips , ipe , jps , jpe , kps , kpe )
1149         CALL stuff_bdy     ( pbdy3dtemp1 , grid%em_ph_b    , 'W' , ijds , ijde , spec_bdy_width      , &
1150                                                                    ids , ide , jds , jde , kds , kde , &
1151                                                                    ims , ime , jms , jme , kms , kme , &
1152                                                                    ips , ipe , jps , jpe , kps , kpe )
1153!         CALL stuff_bdy     ( qbdy3dtemp1 , grid%moist_b(:,:,:,:,P_QV)   , 'T' , ijds , ijde , spec_bdy_width      , &
1154!                                                                    ids , ide , jds , jde , kds , kde , &
1155!                                                                    ims , ime , jms , jme , kms , kme , &
1156!                                                                    ips , ipe , jps , jpe , kps , kpe )
1157!!!!!MARS >>
1158IF (config_flags%mars .gt. 0) THEN
1159        CALL stuff_bdy     ( qbdy3dtemp1 , grid%scalar_b(:,:,:,:,2)   , 'T', ijds , ijde , spec_bdy_width      , &
1160                                                                    ids , ide , jds , jde , kds , kde , &
1161                                                                    ims , ime , jms , jme , kms , kme , &
1162                                                                    ips , ipe , jps , jpe , kps , kpe )
1163ENDIF
1164IF ( (config_flags%mars .eq. 1) .OR. &
1165     (config_flags%mars .eq. 3) .OR. &
1166     (config_flags%mars .eq. 11) .OR. &
1167     (config_flags%mars .eq. 12) ) THEN
1168        CALL stuff_bdy     ( q2bdy3dtemp1 , grid%scalar_b(:,:,:,:,3)   , 'T', ijds , ijde , spec_bdy_width      , &
1169                                                                    ids , ide , jds , jde , kds , kde , &
1170                                                                    ims , ime , jms , jme , kms , kme , &
1171                                                                    ips , ipe , jps , jpe , kps , kpe )
1172ENDIF
1173IF ((config_flags%mars .eq. 11) .OR. (config_flags%mars .eq. 12)) THEN
1174        CALL stuff_bdy     ( q3bdy3dtemp1 , grid%scalar_b(:,:,:,:,4)   , 'T', ijds , ijde , spec_bdy_width      , &
1175                                                                    ids , ide , jds , jde , kds , kde , &
1176                                                                    ims , ime , jms , jme , kms , kme , &
1177                                                                    ips , ipe , jps , jpe , kps , kpe )
1178        CALL stuff_bdy     ( q4bdy3dtemp1 , grid%scalar_b(:,:,:,:,5)   , 'T', ijds , ijde , spec_bdy_width      , &
1179                                                                    ids , ide , jds , jde , kds , kde , &
1180                                                                    ims , ime , jms , jme , kms , kme , &
1181                                                                    ips , ipe , jps , jpe , kps , kpe )
1182ENDIF
1183IF ((config_flags%mars .eq. 12)) THEN
1184        CALL stuff_bdy     ( q5bdy3dtemp1 , grid%scalar_b(:,:,:,:,6)   , 'T', ijds , ijde , spec_bdy_width      , &
1185                                                                    ids , ide , jds , jde , kds , kde , &
1186                                                                    ims , ime , jms , jme , kms , kme , &
1187                                                                    ips , ipe , jps , jpe , kps , kpe )
1188        CALL stuff_bdy     ( q6bdy3dtemp1 , grid%scalar_b(:,:,:,:,7)   , 'T', ijds , ijde , spec_bdy_width      , &
1189                                                                    ids , ide , jds , jde , kds , kde , &
1190                                                                    ims , ime , jms , jme , kms , kme , &
1191                                                                    ips , ipe , jps , jpe , kps , kpe )
1192ENDIF
1193!!!!MARS <<
1194         CALL stuff_bdy     ( mbdy2dtemp1 , grid%em_mu_b    , 'M' , ijds , ijde , spec_bdy_width      , &
1195                                                                    ids , ide , jds , jde , 1 , 1 , &
1196                                                                    ims , ime , jms , jme , 1 , 1 , &
1197                                                                    ips , ipe , jps , jpe , 1 , 1 )
1198
1199      ELSE IF ( loop .EQ. time_loop_max ) THEN
1200
1201         !  If this is the last time through here, we need to close the files.
1202
1203         IF(grid%id .EQ. 1)CALL close_dataset ( id , config_flags , "DATASET=BOUNDARY" )
1204         IF(grid_fdda .EQ. 1)CALL close_dataset ( id2 , config_flags , "DATASET=AUXINPUT10" )
1205        IF(sst_update .EQ. 1)THEN
1206         CALL close_dataset ( id5 , config_flags , "DATASET=AUXINPUT5" )
1207        ENDIF
1208
1209      END IF
1210
1211   END IF
1212
1213END SUBROUTINE assemble_output
Note: See TracBrowser for help on using the repository browser.