New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 3837 for branches/2011/DEV_r2739_STFC_dCSE/NEMOGCM/NEMO/OPA_SRC/step.F90 – NEMO

Ignore:
Timestamp:
2013-03-12T15:55:32+01:00 (11 years ago)
Author:
trackstand2
Message:

Merge of finiss

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/DEV_r2739_STFC_dCSE/NEMOGCM/NEMO/OPA_SRC/step.F90

    r3432 r3837  
    3838   USE asminc           ! assimilation increments    (tra_asm_inc, dyn_asm_inc routines) 
    3939   USE timing, ONLY: timing_start, timing_stop, timing_reset, timing_disable 
     40   USE arpdebugging, ONLY: dump_array 
    4041   IMPLICIT NONE 
    4142   PRIVATE 
     
    266267      IF(  ln_asmiau .AND. & 
    267268         & ln_dyninc       )   CALL dyn_asm_inc( kstp )     ! apply dynamics assimilation increment 
     269                               !CALL dump_array(kstp,'un_pre_adv',un(:,:,27), & 
     270                               !                withHalos=.TRUE.) 
     271 
    268272                               !CALL timing_start('dyn_adv')  
    269273                               CALL dyn_adv( kstp )         ! advection (vector or flux form) 
    270274                               !CALL timing_stop('dyn_adv','section')  
    271275 
     276                               !CALL dump_array(kstp,'ua_pre_vor',ua(:,:,27), & 
     277                               !                withHalos=.TRUE.) 
     278 
    272279                               !CALL timing_start('dyn_vor')  
    273280                               CALL dyn_vor( kstp )         ! vorticity term including Coriolis 
    274281                               !CALL timing_stop('dyn_vor','section')  
    275282 
     283                               !CALL dump_array(kstp,'ua_pre_ldf',ua(:,:,27), & 
     284                               !                withHalos=.TRUE.) 
     285 
    276286                               !CALL timing_start('dyn_ldf')  
    277287                               CALL dyn_ldf( kstp )         ! lateral mixing 
     
    281291      IF(.NOT. Agrif_Root())   CALL Agrif_Sponge_dyn        ! momemtum sponge 
    282292#endif 
     293                               !CALL dump_array(kstp,'ua_pre_hpg',ua(:,:,27), & 
     294                               !                withHalos=.TRUE.) 
     295 
    283296                               !CALL timing_start('dyn_hpg')  
    284297                               CALL dyn_hpg( kstp )         ! horizontal gradient of Hydrostatic pressure 
    285298                               !CALL timing_stop('dyn_hpg','section')  
    286299 
     300                               !CALL dump_array(kstp,'ua_pre_bfr',ua(:,:,27), & 
     301                               !                withHalos=.TRUE.) 
     302 
    287303                               !CALL timing_start('dyn_bfr')  
    288304                               CALL dyn_bfr( kstp )         ! bottom friction    
    289305                               !CALL timing_stop('dyn_bfr','section')  
     306                                
     307                               !CALL dump_array(kstp,'ua_pre_zdf',ua(:,:,27), & 
     308                               !                withHalos=.TRUE.) 
    290309 
    291310                               !CALL timing_start('dyn_zdf')  
    292311                               CALL dyn_zdf( kstp )         ! vertical diffusion 
    293312                               !CALL timing_stop('dyn_zdf','section')  
     313                                
     314                               !CALL dump_array(kstp,'ua_pre_spg',ua(:,:,27), & 
     315                               !                withHalos=.TRUE.) 
    294316 
    295317                               !CALL timing_start('dyn_spg')  
    296318                               CALL dyn_spg( kstp, indic )  ! surface pressure gradient 
    297319                               !CALL timing_stop('dyn_spg','section')  
     320                               !CALL dump_array(kstp,'ua_spg',ua(:,:,27), & 
     321                               !                withHalos=.TRUE.) 
    298322 
    299323                               !CALL timing_start('dyn_nxt')  
    300324                               CALL dyn_nxt( kstp )         ! lateral velocity at next time step 
     325                               !CALL timing_stop('dyn_nxt','section')  
     326 
    301327                               !CALL timing_stop('dyn_nxt','section')  
    302328 
Note: See TracChangeset for help on using the changeset viewer.