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 6101 for branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/TOP_SRC/TRP – NEMO

Ignore:
Timestamp:
2015-12-17T16:48:41+01:00 (8 years ago)
Author:
cbricaud
Message:

correction of bugs from last update and improvments for CRS

Location:
branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/TOP_SRC/TRP
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/TOP_SRC/TRP/trcdmp.F90

    r5602 r6101  
    2424   USE trdtra 
    2525   USE trd_oce 
    26    USE iom 
     26   USE iom , ONLY : iom_open, iom_get, iom_close, jpdom_autoglo 
    2727 
    2828   IMPLICIT NONE 
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/TOP_SRC/TRP/trcldf_crs.F90

    r5601 r6101  
    219219         IF(lwp) WRITE(numout,*) '          esopa control: use all lateral physics options' 
    220220         nldf = -1 
    221       ENDIF 
    222  
    223       IF( .NOT. ln_trcldf_diff ) THEN 
    224          IF(lwp) WRITE(numout,*) '          No lateral diffusion on passive tracers' 
    225          nldf = -2 
    226221      ENDIF 
    227222 
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/TOP_SRC/TRP/trcsbc.F90

    r5602 r6101  
    1919   USE trc             ! ocean  passive tracers variables 
    2020   USE prtctl_trc      ! Print control for debbuging 
    21    USE iom 
     21   USE iom, ONLY : iom_varid, iom_get, iom_rstput,jpdom_autoglo 
    2222   USE trd_oce 
    2323   USE trdtra 
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/TOP_SRC/TRP/trctrp.F90

    r5602 r6101  
    3434   USE zpshde          ! partial step: hor. derivative       (zps_hde routine) 
    3535   USE zpshde_crs      ! partial step: hor. derivative       (zps_hde routine) 
    36    USE dom_oce , ONLY : ln_crs 
     36   USE dom_oce , ONLY : ln_crs, ln_isfcav 
    3737   USE crs     , ONLY : jpi_crs,jpj_crs,wn_crs,ln_crs_top !cbr 
    3838   USE ldfslp_crs 
    39  
    4039#if defined key_agrif 
    4140   USE agrif_top_sponge ! tracers sponges 
     
    111110               CALL zps_hde_crs( kstp, jptra, trn, gtru, gtrv ) 
    112111            ELSE 
    113                IF( ln_isfcav)        & 
     112               IF( ln_isfcav )THEN 
    114113                  CALL zps_hde_isf( kstp, jptra, trn, pgtu=gtru, pgtv=gtrv, pgtui=gtrui, pgtvi=gtrvi )  ! Partial steps: now horizontal gradient of passive 
    115114               ELSE 
    116115                  CALL zps_hde    ( kstp, jptra, trn, gtru, gtrv )   ! Partial steps: now horizontal gradient of passive 
    117116               ENDIF 
     117            ENDIF 
    118118         ENDIF 
    119119                                                                ! tracers at the bottom ocean level 
Note: See TracChangeset for help on using the changeset viewer.