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 9190 for branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/TRA – NEMO

Ignore:
Timestamp:
2018-01-06T15:18:23+01:00 (6 years ago)
Author:
gm
Message:

dev_merge_2017: OPA_SRC: style only, results unchanged

Location:
branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/TRA
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/TRA/traadv.F90

    r9168 r9190  
    256256         WRITE(numout,*) 
    257257         SELECT CASE ( nadv ) 
    258          CASE( np_NO_adv  )   ;   WRITE(numout,*) '      ===>>   NO T-S advection' 
    259          CASE( np_CEN     )   ;   WRITE(numout,*) '      ===>>   CEN      scheme is used. Horizontal order: ', nn_cen_h,   & 
    260             &                                                                     ' Vertical   order: ', nn_cen_v 
    261          CASE( np_FCT     )   ;   WRITE(numout,*) '      ===>>   FCT      scheme is used. Horizontal order: ', nn_fct_h,   & 
    262             &                                                                      ' Vertical   order: ', nn_fct_v 
    263          CASE( np_MUS     )   ;   WRITE(numout,*) '      ===>>   MUSCL    scheme is used' 
    264          CASE( np_UBS     )   ;   WRITE(numout,*) '      ===>>   UBS      scheme is used' 
    265          CASE( np_QCK     )   ;   WRITE(numout,*) '      ===>>   QUICKEST scheme is used' 
     258         CASE( np_NO_adv  )   ;   WRITE(numout,*) '   ==>>>   NO T-S advection' 
     259         CASE( np_CEN     )   ;   WRITE(numout,*) '   ==>>>   CEN      scheme is used. Horizontal order: ', nn_cen_h,   & 
     260            &                                                                        ' Vertical   order: ', nn_cen_v 
     261         CASE( np_FCT     )   ;   WRITE(numout,*) '   ==>>>   FCT      scheme is used. Horizontal order: ', nn_fct_h,   & 
     262            &                                                                        ' Vertical   order: ', nn_fct_v 
     263         CASE( np_MUS     )   ;   WRITE(numout,*) '   ==>>>   MUSCL    scheme is used' 
     264         CASE( np_UBS     )   ;   WRITE(numout,*) '   ==>>>   UBS      scheme is used' 
     265         CASE( np_QCK     )   ;   WRITE(numout,*) '   ==>>>   QUICKEST scheme is used' 
    266266         END SELECT 
    267267      ENDIF 
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/TRA/traadv_mle.F90

    r9168 r9190  
    292292         WRITE(numout,*) 
    293293         IF( ln_mle ) THEN 
    294             WRITE(numout,*) '      ===>>   Mixed Layer Eddy induced transport added to tracer advection' 
     294            WRITE(numout,*) '   ==>>>   Mixed Layer Eddy induced transport added to tracer advection' 
    295295            IF( nn_mle == 0 )   WRITE(numout,*) '              Fox-Kemper et al 2010 formulation' 
    296296            IF( nn_mle == 1 )   WRITE(numout,*) '              New formulation' 
    297297         ELSE 
    298             WRITE(numout,*) '      ===>>   Mixed Layer Eddy parametrisation NOT used' 
     298            WRITE(numout,*) '   ==>>>   Mixed Layer Eddy parametrisation NOT used' 
    299299         ENDIF 
    300300      ENDIF 
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/TRA/trabbc.F90

    r9168 r9190  
    160160         ! 
    161161         CASE ( 1 )                          !* constant flux 
    162             IF(lwp) WRITE(numout,*) '      ===>>   constant heat flux  =   ', rn_geoflx_cst 
     162            IF(lwp) WRITE(numout,*) '   ==>>>   constant heat flux  =   ', rn_geoflx_cst 
    163163            qgh_trd0(:,:) = r1_rau0_rcp * rn_geoflx_cst 
    164164            ! 
    165165         CASE ( 2 )                          !* variable geothermal heat flux : read the geothermal fluxes in mW/m2 
    166             IF(lwp) WRITE(numout,*) '      ===>>   variable geothermal heat flux' 
     166            IF(lwp) WRITE(numout,*) '   ==>>>   variable geothermal heat flux' 
    167167            ! 
    168168            ALLOCATE( sf_qgh(1), STAT=ierror ) 
     
    186186         ! 
    187187      ELSE 
    188          IF(lwp) WRITE(numout,*) '      ===>>   no geothermal heat flux' 
     188         IF(lwp) WRITE(numout,*) '   ==>>>   no geothermal heat flux' 
    189189      ENDIF 
    190190      ! 
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/TRA/traldf.F90

    r9019 r9190  
    185185         WRITE(numout,*) 
    186186         SELECT CASE( nldf ) 
    187          CASE( np_no_ldf )   ;   WRITE(numout,*) '      ===>>   NO lateral diffusion' 
    188          CASE( np_lap    )   ;   WRITE(numout,*) '      ===>>   laplacian iso-level operator' 
    189          CASE( np_lap_i  )   ;   WRITE(numout,*) '      ===>>   Rotated laplacian operator (standard)' 
    190          CASE( np_lap_it )   ;   WRITE(numout,*) '      ===>>   Rotated laplacian operator (triad)' 
    191          CASE( np_blp    )   ;   WRITE(numout,*) '      ===>>   bilaplacian iso-level operator' 
    192          CASE( np_blp_i  )   ;   WRITE(numout,*) '      ===>>   Rotated bilaplacian operator (standard)' 
    193          CASE( np_blp_it )   ;   WRITE(numout,*) '      ===>>   Rotated bilaplacian operator (triad)' 
     187         CASE( np_no_ldf )   ;   WRITE(numout,*) '   ==>>>   NO lateral diffusion' 
     188         CASE( np_lap    )   ;   WRITE(numout,*) '   ==>>>   laplacian iso-level operator' 
     189         CASE( np_lap_i  )   ;   WRITE(numout,*) '   ==>>>   Rotated laplacian operator (standard)' 
     190         CASE( np_lap_it )   ;   WRITE(numout,*) '   ==>>>   Rotated laplacian operator (triad)' 
     191         CASE( np_blp    )   ;   WRITE(numout,*) '   ==>>>   bilaplacian iso-level operator' 
     192         CASE( np_blp_i  )   ;   WRITE(numout,*) '   ==>>>   Rotated bilaplacian operator (standard)' 
     193         CASE( np_blp_it )   ;   WRITE(numout,*) '   ==>>>   Rotated bilaplacian operator (triad)' 
    194194         END SELECT 
    195195      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.