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 2091 for branches/DEV_r1837_MLF/NEMO/OPA_SRC/SBC – NEMO

Ignore:
Timestamp:
2010-09-14T22:29:38+02:00 (14 years ago)
Author:
mlelod
Message:

ticket: #663 cosmetic changes

Location:
branches/DEV_r1837_MLF/NEMO/OPA_SRC/SBC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DEV_r1837_MLF/NEMO/OPA_SRC/SBC/sbc_oce.F90

    r2068 r2091  
    5353   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   emp_tot           !: total E-P-R over ocean and ice               [Kg/m2/s] 
    5454   ! - ML - begin 
    55    REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   sbc_trd_hc_n      !: sbc heat content trend now                   [K/m/s] 
    56    REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   sbc_trd_hc_b      !:  "   "      "      "   before                   " 
    57    REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   sbc_trd_sc_n      !: sbc salt content trend now                   [psu/m/s] 
    58    REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   sbc_trd_sc_b      !:  "   "      "      "   before                   " 
    59    REAL(wp), PUBLIC, DIMENSION(jpi,jpj,jpk) ::   qsr_trd_hc_n  !: heat content trend due to qsr flux now       [K/m/s] 
    60    REAL(wp), PUBLIC, DIMENSION(jpi,jpj,jpk) ::   qsr_trd_hc_b  !:  "      "      "    "  "   "   "   before       " 
     55   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   sbc_hc_n          !: sbc heat content trend now                   [K/m/s] 
     56   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   sbc_hc_b          !:  "   "      "      "   before                   " 
     57   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   sbc_sc_n          !: sbc salt content trend now                   [psu/m/s] 
     58   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   sbc_sc_b          !:  "   "      "      "   before                   " 
     59   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,jpk) ::   qsr_hc_n      !: heat content trend due to qsr flux now       [K/m/s] 
     60   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,jpk) ::   qsr_hc_b      !:  "      "      "    "  "   "   "   before       " 
    6161   ! - ML - end 
    6262   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   tprecip           !: total precipitation                          [Kg/m2/s] 
  • branches/DEV_r1837_MLF/NEMO/OPA_SRC/SBC/sbcmod.F90

    r2068 r2091  
    198198         emp_b (:,:) = emp (:,:) 
    199199         emps_b(:,:) = emps(:,:) 
    200          ! - ML - 
    201          ! sbc_trd_hc_b(:,:) = sbc_trd_hc_n(:,:) 
    202          ! qsr_trd_hc_b(:,:,:) = qsr_trd_hc_n(:,:,:) 
    203          ! IF ( .NOT. lk_vvl )  sbc_trd_sc_b(:,:) = sbc_trd_sc_n(:,:) 
    204200          
    205201      ENDIF 
     
    266262            CALL iom_get( numror, jpdom_autoglo, 'emp_b' , emp_b  )   ! before     freshwater flux (T-point) 
    267263            CALL iom_get( numror, jpdom_autoglo, 'emps_b', emps_b )   ! before C/D freshwater flux (T-point) 
    268             ! - ML - 
    269             ! CALL iom_get( numror, jpdom_autoglo, 'sbc_trd_hc_b', sbc_trd_hc_b )   ! before heat content sbc trend 
    270             ! CALL iom_get( numror, jpdom_autoglo, 'qsr_trd_hc_b', qsr_trd_hc_b )   ! before heat content trend due to Qsr flux 
    271             ! IF ( .NOT. lk_vvl ) THEN 
    272             !    CALL iom_get( numror, jpdom_autoglo, 'sbc_trd_sc_b', sbc_trd_sc_b )   ! before salt content sbc trend 
    273             ! ENDIF 
    274             ! 
    275264         ELSE                                                   !* no restart: set from nit000 values 
    276265            IF(lwp) WRITE(numout,*) '          nit000-1 surface forcing fields set to nit000' 
     
    291280            &                    'at it= ', kt,' date= ', ndastp 
    292281         IF(lwp) WRITE(numout,*) '~~~~' 
    293          CALL iom_rstput( kt, nitrst, numrow, 'utau_b' , utau )    !  
     282         CALL iom_rstput( kt, nitrst, numrow, 'utau_b' , utau ) 
    294283         CALL iom_rstput( kt, nitrst, numrow, 'vtau_b' , vtau ) 
    295284         CALL iom_rstput( kt, nitrst, numrow, 'qns_b'  , qns  ) 
     
    297286         CALL iom_rstput( kt, nitrst, numrow, 'emp_b'  , emp  ) 
    298287         CALL iom_rstput( kt, nitrst, numrow, 'emps_b' , emps ) 
    299          ! - ML - 
    300          ! CALL iom_rstput( kt, nitrst, numrow, 'sbc_trd_hc_b', sbc_trd_hc_n ) 
    301          ! CALL iom_rstput( kt, nitrst, numrow, 'qsr_trd_hc_b', qsr_trd_hc_n ) 
    302          ! IF ( .NOT. lk_vvl ) THEN 
    303          !    CALL iom_rstput( kt, nitrst, numrow, 'sbc_trd_sc_b', sbc_trd_sc_n ) 
    304          ! ENDIF 
    305          ! 
    306288      ENDIF 
    307289 
Note: See TracChangeset for help on using the changeset viewer.