source: trunk/mesoscale/LMD_MM_MARS/SRC/WRFV2/main/real_em.F @ 30

Last change on this file since 30 was 11, checked in by aslmd, 15 years ago

spiga@svn-planeto:ajoute le modele meso-echelle martien

File size: 49.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 INIT_ICE
565   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q2bdy3dtemp1
566   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: mbdy2dtemp1
567   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: ubdy3dtemp2 , vbdy3dtemp2 , tbdy3dtemp2 , pbdy3dtemp2 , qbdy3dtemp2
568!!!***MARS INIT_ICE
569   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: q2bdy3dtemp2
570   REAL , DIMENSION(:,:,:) , ALLOCATABLE , SAVE :: mbdy2dtemp2
571real::t1,t2
572
573   !  Various sizes that we need to be concerned about.
574
575   ids = grid%sd31
576   ide = grid%ed31
577   kds = grid%sd32
578   kde = grid%ed32
579   jds = grid%sd33
580   jde = grid%ed33
581
582   ims = grid%sm31
583   ime = grid%em31
584   kms = grid%sm32
585   kme = grid%em32
586   jms = grid%sm33
587   jme = grid%em33
588
589   ips = grid%sp31
590   ipe = grid%ep31
591   kps = grid%sp32
592   kpe = grid%ep32
593   jps = grid%sp33
594   jpe = grid%ep33
595
596   ijds = MIN ( ids , jds )
597   ijde = MAX ( ide , jde )
598
599   !  Boundary width, scalar value.
600
601   spec_bdy_width = model_config_rec%spec_bdy_width
602   interval_seconds = model_config_rec%interval_seconds
603   sst_update = model_config_rec%sst_update
604   grid_fdda = model_config_rec%grid_fdda(grid%id)
605
606
607   IF ( loop .EQ. 1 ) THEN
608
609      !  This is the space needed to save the current 3d data for use in computing
610      !  the lateral boundary tendencies.
611
612      IF ( ALLOCATED ( ubdy3dtemp1 ) ) DEALLOCATE ( ubdy3dtemp1 )
613      IF ( ALLOCATED ( vbdy3dtemp1 ) ) DEALLOCATE ( vbdy3dtemp1 )
614      IF ( ALLOCATED ( tbdy3dtemp1 ) ) DEALLOCATE ( tbdy3dtemp1 )
615      IF ( ALLOCATED ( pbdy3dtemp1 ) ) DEALLOCATE ( pbdy3dtemp1 )
616      IF ( ALLOCATED ( qbdy3dtemp1 ) ) DEALLOCATE ( qbdy3dtemp1 )
617!!!***MARS INIT_ICE
618      IF ( ALLOCATED ( q2bdy3dtemp1 ) ) DEALLOCATE ( q2bdy3dtemp1 )
619      IF ( ALLOCATED ( mbdy2dtemp1 ) ) DEALLOCATE ( mbdy2dtemp1 )
620      IF ( ALLOCATED ( ubdy3dtemp2 ) ) DEALLOCATE ( ubdy3dtemp2 )
621      IF ( ALLOCATED ( vbdy3dtemp2 ) ) DEALLOCATE ( vbdy3dtemp2 )
622      IF ( ALLOCATED ( tbdy3dtemp2 ) ) DEALLOCATE ( tbdy3dtemp2 )
623      IF ( ALLOCATED ( pbdy3dtemp2 ) ) DEALLOCATE ( pbdy3dtemp2 )
624      IF ( ALLOCATED ( qbdy3dtemp2 ) ) DEALLOCATE ( qbdy3dtemp2 )
625!!!***MARS INIT_ICE
626      IF ( ALLOCATED ( q2bdy3dtemp2 ) ) DEALLOCATE ( q2bdy3dtemp2 )
627      IF ( ALLOCATED ( mbdy2dtemp2 ) ) DEALLOCATE ( mbdy2dtemp2 )
628
629      ALLOCATE ( ubdy3dtemp1(ims:ime,kms:kme,jms:jme) )
630      ALLOCATE ( vbdy3dtemp1(ims:ime,kms:kme,jms:jme) )
631      ALLOCATE ( tbdy3dtemp1(ims:ime,kms:kme,jms:jme) )
632      ALLOCATE ( pbdy3dtemp1(ims:ime,kms:kme,jms:jme) )
633      ALLOCATE ( qbdy3dtemp1(ims:ime,kms:kme,jms:jme) )
634!!!***MARS INIT_ICE
635      ALLOCATE ( q2bdy3dtemp1(ims:ime,kms:kme,jms:jme) )
636      ALLOCATE ( mbdy2dtemp1(ims:ime,1:1,    jms:jme) )
637      ALLOCATE ( ubdy3dtemp2(ims:ime,kms:kme,jms:jme) )
638      ALLOCATE ( vbdy3dtemp2(ims:ime,kms:kme,jms:jme) )
639      ALLOCATE ( tbdy3dtemp2(ims:ime,kms:kme,jms:jme) )
640      ALLOCATE ( pbdy3dtemp2(ims:ime,kms:kme,jms:jme) )
641      ALLOCATE ( qbdy3dtemp2(ims:ime,kms:kme,jms:jme) )
642!!!***MARS INIT_ICE
643      ALLOCATE ( q2bdy3dtemp2(ims:ime,kms:kme,jms:jme) )
644      ALLOCATE ( mbdy2dtemp2(ims:ime,1:1,    jms:jme) )
645
646      !  Open the wrfinput file.  From this program, this is an *output* file.
647
648      CALL construct_filename1( inpname , 'wrfinput' , grid%id , 2 )
649      CALL open_w_dataset ( id1, TRIM(inpname) , grid , config_flags , output_model_input , "DATASET=INPUT", ierr )
650      IF ( ierr .NE. 0 ) THEN
651         CALL wrf_error_fatal( 'real: error opening wrfinput for writing' )
652      ENDIF
653      IF(sst_update .EQ. 1)THEN
654        CALL construct_filename1( inpname , 'wrflowinp' , grid%id , 2 )
655        CALL open_w_dataset ( id5, TRIM(inpname) , grid , config_flags , output_aux_model_input5 , "DATASET=AUXINPUT5", ierr )
656        IF ( ierr .NE. 0 ) THEN
657           CALL wrf_error_fatal( 'real: error opening wrflowinp for writing' )
658        ENDIF
659      ENDIF
660!     CALL calc_current_date ( grid%id , 0. )
661      CALL output_model_input ( id1, grid , config_flags , ierr )
662      CALL close_dataset ( id1 , config_flags , "DATASET=INPUT" )
663      IF(sst_update .EQ. 1)THEN
664        CALL output_aux_model_input5 ( id5, grid , config_flags , ierr )
665      ENDIF
666
667      !  We need to save the 3d data to compute a difference during the next loop.  Couple the
668      !  3d fields with total mu (mub + mu_2) and the stagger-specific map scale factor.
669
670      CALL couple ( grid%em_mu_2 , grid%em_mub , ubdy3dtemp1 , grid%em_u_2                 , 'u' , grid%msfu , &
671                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
672      CALL couple ( grid%em_mu_2 , grid%em_mub , vbdy3dtemp1 , grid%em_v_2                 , 'v' , grid%msfv , &
673                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
674      CALL couple ( grid%em_mu_2 , grid%em_mub , tbdy3dtemp1 , grid%em_t_2                 , 't' , grid%msft , &
675                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
676      CALL couple ( grid%em_mu_2 , grid%em_mub , pbdy3dtemp1 , grid%em_ph_2                , 'h' , grid%msft , &
677                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
678!      CALL couple ( grid%em_mu_2 , grid%em_mub , qbdy3dtemp1 , grid%moist(:,:,:,P_QV) , 't' , grid%msft , &
679!                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
680!!!!MARS : pb a regler avec P_QH2O qui n est pas reconnu si QH2O n est pas dans active dans le registry
681IF ( config_flags%mars .eq. 1 ) THEN
682      CALL couple ( grid%em_mu_2 , grid%em_mub , qbdy3dtemp1 , grid%scalar(:,:,:,2) , 't' , grid%msft , &
683                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
684!!!INIT_ICE
685      CALL couple ( grid%em_mu_2 , grid%em_mub , q2bdy3dtemp1 , grid%scalar(:,:,:,3) , 't' , grid%msft , &
686                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
687ENDIF
688!!!!MARS
689
690
691
692      DO j = jps , MIN(jde-1,jpe)
693         DO i = ips , MIN(ide-1,ipe)
694            mbdy2dtemp1(i,1,j) = grid%em_mu_2(i,j)
695         END DO
696      END DO
697
698      IF(grid_fdda .EQ. 1)THEN
699! for fdda
700         DO j = jps , jpe
701            DO k = kps , kpe
702               DO i = ips , ipe
703                  grid%fdda3d(i,k,j,p_u_ndg_old) = grid%em_u_2(i,k,j)
704                  grid%fdda3d(i,k,j,p_v_ndg_old) = grid%em_v_2(i,k,j)
705                  grid%fdda3d(i,k,j,p_t_ndg_old) = grid%em_t_2(i,k,j)
706                  grid%fdda3d(i,k,j,p_q_ndg_old) = grid%moist(i,k,j,P_QV)
707                  grid%fdda3d(i,k,j,p_ph_ndg_old) = grid%em_ph_2(i,k,j)
708               END DO
709            END DO
710         END DO
711
712         DO j = jps , jpe
713            DO i = ips , ipe
714               grid%fdda2d(i,1,j,p_mu_ndg_old) = grid%em_mu_2(i,j)
715            END DO
716         END DO
717      ENDIF
718
719
720      !  There are 2 components to the lateral boundaries.  First, there is the starting
721      !  point of this time period - just the outer few rows and columns.
722
723      CALL stuff_bdy     ( ubdy3dtemp1 , grid%em_u_b     , 'U' , ijds , ijde , spec_bdy_width      , &
724                                                                 ids , ide , jds , jde , kds , kde , &
725                                                                 ims , ime , jms , jme , kms , kme , &
726                                                                 ips , ipe , jps , jpe , kps , kpe )
727      CALL stuff_bdy     ( vbdy3dtemp1 , grid%em_v_b     , 'V' , ijds , ijde , spec_bdy_width      , &
728                                                                 ids , ide , jds , jde , kds , kde , &
729                                                                 ims , ime , jms , jme , kms , kme , &
730                                                                 ips , ipe , jps , jpe , kps , kpe )
731      CALL stuff_bdy     ( tbdy3dtemp1 , grid%em_t_b     , 'T' , ijds , ijde , spec_bdy_width      , &
732                                                                 ids , ide , jds , jde , kds , kde , &
733                                                                 ims , ime , jms , jme , kms , kme , &
734                                                                 ips , ipe , jps , jpe , kps , kpe )
735      CALL stuff_bdy     ( pbdy3dtemp1 , grid%em_ph_b    , 'W' , ijds , ijde , spec_bdy_width      , &
736                                                                 ids , ide , jds , jde , kds , kde , &
737                                                                 ims , ime , jms , jme , kms , kme , &
738                                                                 ips , ipe , jps , jpe , kps , kpe )
739!      CALL stuff_bdy     ( qbdy3dtemp1 , grid%moist_b(:,:,:,:,P_QV)   , 'T' , ijds , ijde , spec_bdy_width      , &
740!                                                                 ids , ide , jds , jde , kds , kde , &
741!                                                                 ims , ime , jms , jme , kms , kme , &
742!                                                                 ips , ipe , jps , jpe , kps , kpe )
743!!!!MARS
744IF ( config_flags%mars .eq. 1 ) THEN
745      CALL stuff_bdy     ( qbdy3dtemp1 , grid%scalar_b(:,:,:,:,2)   , 'T' , ijds , ijde , spec_bdy_width      , &
746                                                                 ids , ide , jds , jde , kds , kde , &
747                                                                 ims , ime , jms , jme , kms , kme , &
748                                                                 ips , ipe , jps , jpe , kps , kpe )
749!!!INIT_ICE
750      CALL stuff_bdy     ( q2bdy3dtemp1 , grid%scalar_b(:,:,:,:,3)   , 'T' , ijds, ijde , spec_bdy_width      , &
751                                                                 ids , ide , jds, jde , kds , kde , &
752                                                                 ims , ime , jms, jme , kms , kme , &
753                                                                 ips , ipe , jps, jpe , kps , kpe )
754ENDIF
755!!!!MARS
756
757      CALL stuff_bdy     ( mbdy2dtemp1 , grid%em_mu_b    , 'M' , ijds , ijde , spec_bdy_width      , &
758                                                                 ids , ide , jds , jde , 1 , 1 , &
759                                                                 ims , ime , jms , jme , 1 , 1 , &
760                                                                 ips , ipe , jps , jpe , 1 , 1 )
761
762
763   ELSE IF ( loop .GT. 1 ) THEN
764
765      IF(sst_update .EQ. 1)THEN
766        CALL output_aux_model_input5 ( id5, grid , config_flags , ierr )
767      ENDIF
768
769      !  Open the boundary file.
770
771
772      IF ( loop .eq. 2 ) THEN
773       IF(grid%id .eq. 1)THEN
774         CALL construct_filename1( bdyname , 'wrfbdy' , grid%id , 2 )
775         CALL open_w_dataset ( id, TRIM(bdyname) , grid , config_flags , output_boundary , "DATASET=BOUNDARY", ierr )
776         IF ( ierr .NE. 0 ) THEN
777               CALL wrf_error_fatal( 'real: error opening wrfbdy for writing' )
778         ENDIF
779       ENDIF
780       IF(grid_fdda .EQ. 1)THEN
781! for fdda
782         CALL construct_filename1( inpname , 'wrffdda' , grid%id , 2 )
783         CALL open_w_dataset ( id2, TRIM(inpname) , grid , config_flags , output_aux_model_input10 , "DATASET=AUXINPUT10", ierr )
784         IF ( ierr .NE. 0 ) THEN
785               CALL wrf_error_fatal( 'real: error opening wrffdda for writing' )
786         ENDIF
787       ENDIF
788      ELSE
789         IF ( .NOT. domain_clockisstoptime(grid) ) THEN
790            CALL domain_clockadvance( grid )
791            CALL domain_clockprint ( 150, grid, &
792                   'DEBUG assemble_output:  clock after ClockAdvance,' )
793         ENDIF
794      END IF
795
796
797      !  Couple this time period's data with total mu, and save it in the *bdy3dtemp2 arrays.
798
799      CALL couple ( grid%em_mu_2 , grid%em_mub , ubdy3dtemp2 , grid%em_u_2                 , 'u' , grid%msfu , &
800                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
801      CALL couple ( grid%em_mu_2 , grid%em_mub , vbdy3dtemp2 , grid%em_v_2                 , 'v' , grid%msfv , &
802                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
803      CALL couple ( grid%em_mu_2 , grid%em_mub , tbdy3dtemp2 , grid%em_t_2                 , 't' , grid%msft , &
804                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
805      CALL couple ( grid%em_mu_2 , grid%em_mub , pbdy3dtemp2 , grid%em_ph_2                , 'h' , grid%msft , &
806                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
807!      CALL couple ( grid%em_mu_2 , grid%em_mub , qbdy3dtemp2 , grid%moist(:,:,:,P_QV) , 't' , grid%msft , &
808!                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
809!!!!MARS
810IF ( config_flags%mars .eq. 1 ) THEN
811      CALL couple ( grid%em_mu_2 , grid%em_mub , qbdy3dtemp2 , grid%scalar(:,:,:,2) , 't' , grid%msft , &
812                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
813!!!INIT_ICE
814      CALL couple ( grid%em_mu_2 , grid%em_mub , q2bdy3dtemp2 , grid%scalar(:,:,:,3) , 't' , grid%msft , &
815                    ids, ide, jds, jde, kds, kde, ims, ime, jms, jme, kms, kme, ips, ipe, jps, jpe, kps, kpe )
816ENDIF
817!!!!MARS
818
819      DO j = jps , jpe
820         DO i = ips , ipe
821            mbdy2dtemp2(i,1,j) = grid%em_mu_2(i,j)
822         END DO
823      END DO
824
825      IF(grid_fdda .EQ. 1)THEN
826! for fdda
827         DO j = jps , jpe
828            DO k = kps , kpe
829               DO i = ips , ipe
830                  grid%fdda3d(i,k,j,p_u_ndg_new) = grid%em_u_2(i,k,j)
831                  grid%fdda3d(i,k,j,p_v_ndg_new) = grid%em_v_2(i,k,j)
832                  grid%fdda3d(i,k,j,p_t_ndg_new) = grid%em_t_2(i,k,j)
833                  grid%fdda3d(i,k,j,p_q_ndg_new) = grid%moist(i,k,j,P_QV)
834                  grid%fdda3d(i,k,j,p_ph_ndg_new) = grid%em_ph_2(i,k,j)
835               END DO
836            END DO
837         END DO
838
839         DO j = jps , jpe
840            DO i = ips , ipe
841               grid%fdda2d(i,1,j,p_mu_ndg_new) = grid%em_mu_2(i,j)
842            END DO
843         END DO
844      ENDIF
845
846      !  During all of the loops after the first loop, we first compute the boundary
847      !  tendencies with the current data values (*bdy3dtemp2 arrays) and the previously
848      !  saved information stored in the *bdy3dtemp1 arrays.
849
850      CALL stuff_bdytend ( ubdy3dtemp2 , ubdy3dtemp1 , REAL(interval_seconds) , grid%em_u_bt  , 'U' , &
851                                                            ijds , ijde , spec_bdy_width      , &
852                                                            ids , ide , jds , jde , kds , kde , &
853                                                            ims , ime , jms , jme , kms , kme , &
854                                                            ips , ipe , jps , jpe , kps , kpe )
855      CALL stuff_bdytend ( vbdy3dtemp2 , vbdy3dtemp1 , REAL(interval_seconds) , grid%em_v_bt  , 'V' , &
856                                                            ijds , ijde , spec_bdy_width      , &
857                                                            ids , ide , jds , jde , kds , kde , &
858                                                            ims , ime , jms , jme , kms , kme , &
859                                                            ips , ipe , jps , jpe , kps , kpe )
860      CALL stuff_bdytend ( tbdy3dtemp2 , tbdy3dtemp1 , REAL(interval_seconds) , grid%em_t_bt  , 'T' , &
861                                                            ijds , ijde , spec_bdy_width      , &
862                                                            ids , ide , jds , jde , kds , kde , &
863                                                            ims , ime , jms , jme , kms , kme , &
864                                                            ips , ipe , jps , jpe , kps , kpe )
865      CALL stuff_bdytend ( pbdy3dtemp2 , pbdy3dtemp1 , REAL(interval_seconds) , grid%em_ph_bt  , 'W' , &
866                                                            ijds , ijde , spec_bdy_width      , &
867                                                            ids , ide , jds , jde , kds , kde , &
868                                                            ims , ime , jms , jme , kms , kme , &
869                                                            ips , ipe , jps , jpe , kps , kpe )
870!      CALL stuff_bdytend ( qbdy3dtemp2 , qbdy3dtemp1 , REAL(interval_seconds) , grid%moist_bt(:,:,:,:,P_QV) , 'T' , &
871!                                                            ijds , ijde , spec_bdy_width      , &
872!                                                            ids , ide , jds , jde , kds , kde , &
873!                                                            ims , ime , jms , jme , kms , kme , &
874!                                                            ips , ipe , jps , jpe , kps , kpe )
875!!!!MARS
876IF ( config_flags%mars .eq. 1 ) THEN
877      CALL stuff_bdytend ( qbdy3dtemp2 , qbdy3dtemp1 , REAL(interval_seconds) , grid%scalar_bt(:,:,:,:,2) , 'T' , &
878                                                            ijds , ijde , spec_bdy_width      , &
879                                                            ids , ide , jds , jde , kds , kde , &
880                                                            ims , ime , jms , jme , kms , kme , &
881                                                            ips , ipe , jps , jpe , kps , kpe )
882!!!INIT_ICE
883      CALL stuff_bdytend ( q2bdy3dtemp2 , q2bdy3dtemp1 , REAL(interval_seconds) ,grid%scalar_bt(:,:,:,:,3) , 'T' , &
884                                                            ijds , ijde , spec_bdy_width      , &
885                                                            ids , ide , jds , jde , kds , kde , &
886                                                            ims , ime , jms , jme , kms , kme , &
887                                                            ips , ipe , jps , jpe , kps , kpe )
888ENDIF
889!!!!MARS
890
891      CALL stuff_bdytend ( mbdy2dtemp2 , mbdy2dtemp1 , REAL(interval_seconds) , grid%em_mu_bt  , 'M' , &
892                                                            ijds , ijde , spec_bdy_width      , &
893                                                            ids , ide , jds , jde , 1 , 1 , &
894                                                            ims , ime , jms , jme , 1 , 1 , &
895                                                            ips , ipe , jps , jpe , 1 , 1 )
896
897      !  Both pieces of the boundary data are now available to be written (initial time and tendency).
898      !  This looks ugly, these date shifting things.  What's it for?  We want the "Times" variable
899      !  in the lateral BDY file to have the valid times of when the initial fields are written.
900      !  That's what the loop-2 thingy is for with the start date.  We increment the start_date so
901      !  that the starting time in the attributes is the second time period.  Why you may ask.  I
902      !  agree, why indeed.
903
904      CALL domain_clockprint ( 150, grid, &
905             'DEBUG assemble_output:  clock before 1st current_date set,' )
906      WRITE (wrf_err_message,*) &
907        'DEBUG assemble_output:  before 1st currTime set, current_date = ',TRIM(current_date)
908      CALL wrf_debug ( 150 , wrf_err_message )
909      CALL domain_clock_set( grid, current_date(1:19) )
910      CALL domain_clockprint ( 150, grid, &
911             'DEBUG assemble_output:  clock after 1st current_date set,' )
912
913      temp24= current_date
914      temp24b=start_date
915      start_date = current_date
916      CALL geth_newdate ( temp19 , temp24b(1:19) , (loop-2) * model_config_rec%interval_seconds )
917      current_date = temp19 //  '.0000'
918      CALL domain_clockprint ( 150, grid, &
919             'DEBUG assemble_output:  clock before 2nd current_date set,' )
920      WRITE (wrf_err_message,*) &
921        'DEBUG assemble_output:  before 2nd currTime set, current_date = ',TRIM(current_date)
922      CALL wrf_debug ( 150 , wrf_err_message )
923      CALL domain_clock_set( grid, current_date(1:19) )
924      CALL domain_clockprint ( 150, grid, &
925             'DEBUG assemble_output:  clock after 2nd current_date set,' )
926      IF(grid%id .EQ. 1)THEN
927        print *,'LBC valid between these times ',current_date, ' ',start_date
928        CALL output_boundary ( id, grid , config_flags , ierr )
929      ENDIF
930! for fdda
931      IF(grid_fdda .EQ. 1) THEN
932         CALL output_aux_model_input10 ( id2, grid , config_flags , ierr )
933      END IF
934      current_date = temp24
935      start_date = temp24b
936      CALL domain_clockprint ( 150, grid, &
937             'DEBUG assemble_output:  clock before 3rd current_date set,' )
938      WRITE (wrf_err_message,*) &
939        'DEBUG assemble_output:  before 3rd currTime set, current_date = ',TRIM(current_date)
940      CALL wrf_debug ( 150 , wrf_err_message )
941      CALL domain_clock_set( grid, current_date(1:19) )
942      CALL domain_clockprint ( 150, grid, &
943             'DEBUG assemble_output:  clock after 3rd current_date set,' )
944
945      !  OK, for all of the loops, we output the initialzation data, which would allow us to
946      !  start the model at any of the available analysis time periods.
947
948!     WRITE ( loop_char , FMT = '(I4.4)' ) loop
949!     CALL open_w_dataset ( id1, 'wrfinput'//loop_char , grid , config_flags , output_model_input , "DATASET=INPUT", ierr )
950!     IF ( ierr .NE. 0 ) THEN
951!       CALL wrf_error_fatal( 'real: error opening wrfinput'//loop_char//' for writing' )
952!     ENDIF
953
954!     CALL calc_current_date ( grid%id , 0. )
955!     CALL output_model_input ( id1, grid , config_flags , ierr )
956!     CALL close_dataset ( id1 , config_flags , "DATASET=INPUT" )
957      !  Is this or is this not the last time time?  We can remove some unnecessary
958      !  stores if it is not.
959      IF     ( loop .LT. time_loop_max ) THEN
960
961         !  We need to save the 3d data to compute a difference during the next loop.  Couple the
962         !  3d fields with total mu (mub + mu_2) and the stagger-specific map scale factor.
963         !  We load up the boundary data again for use in the next loop.
964
965         DO j = jps , jpe
966            DO k = kps , kpe
967               DO i = ips , ipe
968                  ubdy3dtemp1(i,k,j) = ubdy3dtemp2(i,k,j)
969                  vbdy3dtemp1(i,k,j) = vbdy3dtemp2(i,k,j)
970                  tbdy3dtemp1(i,k,j) = tbdy3dtemp2(i,k,j)
971                  pbdy3dtemp1(i,k,j) = pbdy3dtemp2(i,k,j)
972                  qbdy3dtemp1(i,k,j) = qbdy3dtemp2(i,k,j)
973!!!INIT_ICE
974                  q2bdy3dtemp1(i,k,j) = q2bdy3dtemp2(i,k,j)
975               END DO
976            END DO
977         END DO
978
979         DO j = jps , jpe
980            DO i = ips , ipe
981               mbdy2dtemp1(i,1,j) = mbdy2dtemp2(i,1,j)
982            END DO
983         END DO
984
985      IF(grid_fdda .EQ. 1)THEN
986! for fdda
987         DO j = jps , jpe
988            DO k = kps , kpe
989               DO i = ips , ipe
990                  grid%fdda3d(i,k,j,p_u_ndg_old) = grid%fdda3d(i,k,j,p_u_ndg_new)
991                  grid%fdda3d(i,k,j,p_v_ndg_old) = grid%fdda3d(i,k,j,p_v_ndg_new)
992                  grid%fdda3d(i,k,j,p_t_ndg_old) = grid%fdda3d(i,k,j,p_t_ndg_new)
993                  grid%fdda3d(i,k,j,p_q_ndg_old) = grid%fdda3d(i,k,j,p_q_ndg_new)
994                  grid%fdda3d(i,k,j,p_ph_ndg_old) = grid%fdda3d(i,k,j,p_ph_ndg_new)
995               END DO
996            END DO
997         END DO
998
999         DO j = jps , jpe
1000            DO i = ips , ipe
1001               grid%fdda2d(i,1,j,p_mu_ndg_old) = grid%fdda2d(i,1,j,p_mu_ndg_new)
1002            END DO
1003         END DO
1004      ENDIF
1005
1006         !  There are 2 components to the lateral boundaries.  First, there is the starting
1007         !  point of this time period - just the outer few rows and columns.
1008
1009         CALL stuff_bdy     ( ubdy3dtemp1 , grid%em_u_b     , 'U' , ijds , ijde , spec_bdy_width      , &
1010                                                                    ids , ide , jds , jde , kds , kde , &
1011                                                                    ims , ime , jms , jme , kms , kme , &
1012                                                                    ips , ipe , jps , jpe , kps , kpe )
1013         CALL stuff_bdy     ( vbdy3dtemp1 , grid%em_v_b     , 'V' , ijds , ijde , spec_bdy_width      , &
1014                                                                    ids , ide , jds , jde , kds , kde , &
1015                                                                    ims , ime , jms , jme , kms , kme , &
1016                                                                    ips , ipe , jps , jpe , kps , kpe )
1017         CALL stuff_bdy     ( tbdy3dtemp1 , grid%em_t_b     , 'T' , ijds , ijde , spec_bdy_width      , &
1018                                                                    ids , ide , jds , jde , kds , kde , &
1019                                                                    ims , ime , jms , jme , kms , kme , &
1020                                                                    ips , ipe , jps , jpe , kps , kpe )
1021         CALL stuff_bdy     ( pbdy3dtemp1 , grid%em_ph_b    , 'W' , ijds , ijde , spec_bdy_width      , &
1022                                                                    ids , ide , jds , jde , kds , kde , &
1023                                                                    ims , ime , jms , jme , kms , kme , &
1024                                                                    ips , ipe , jps , jpe , kps , kpe )
1025!         CALL stuff_bdy     ( qbdy3dtemp1 , grid%moist_b(:,:,:,:,P_QV)   , 'T' , ijds , ijde , spec_bdy_width      , &
1026!                                                                    ids , ide , jds , jde , kds , kde , &
1027!                                                                    ims , ime , jms , jme , kms , kme , &
1028!                                                                    ips , ipe , jps , jpe , kps , kpe )
1029!!!!MARS
1030IF ( config_flags%mars .eq. 1 ) THEN
1031        CALL stuff_bdy     ( qbdy3dtemp1 , grid%scalar_b(:,:,:,:,2)   , 'T', ijds , ijde , spec_bdy_width      , &
1032                                                                    ids , ide , jds , jde , kds , kde , &
1033                                                                    ims , ime , jms , jme , kms , kme , &
1034                                                                    ips , ipe , jps , jpe , kps , kpe )
1035
1036!!!INIT_ICE
1037        CALL stuff_bdy     ( q2bdy3dtemp1 , grid%scalar_b(:,:,:,:,3)   , 'T', ijds , ijde , spec_bdy_width      , &
1038                                                                    ids , ide , jds , jde , kds , kde , &
1039                                                                    ims , ime , jms , jme , kms , kme , &
1040                                                                    ips , ipe , jps , jpe , kps , kpe )
1041ENDIF
1042!!!!MARS
1043
1044         CALL stuff_bdy     ( mbdy2dtemp1 , grid%em_mu_b    , 'M' , ijds , ijde , spec_bdy_width      , &
1045                                                                    ids , ide , jds , jde , 1 , 1 , &
1046                                                                    ims , ime , jms , jme , 1 , 1 , &
1047                                                                    ips , ipe , jps , jpe , 1 , 1 )
1048
1049      ELSE IF ( loop .EQ. time_loop_max ) THEN
1050
1051         !  If this is the last time through here, we need to close the files.
1052
1053         IF(grid%id .EQ. 1)CALL close_dataset ( id , config_flags , "DATASET=BOUNDARY" )
1054         IF(grid_fdda .EQ. 1)CALL close_dataset ( id2 , config_flags , "DATASET=AUXINPUT10" )
1055        IF(sst_update .EQ. 1)THEN
1056         CALL close_dataset ( id5 , config_flags , "DATASET=AUXINPUT5" )
1057        ENDIF
1058
1059      END IF
1060
1061   END IF
1062
1063END SUBROUTINE assemble_output
Note: See TracBrowser for help on using the repository browser.