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 8899 – NEMO

Changeset 8899


Ignore:
Timestamp:
2017-12-05T14:26:11+01:00 (6 years ago)
Author:
hadlh
Message:

Removed unecessary print statements and stopped the passing back of salf and freshwater fluxes as these are output in CICE now.

Location:
branches/UKMO/GO6_package_r8356_CICEnudging/NEMOGCM/NEMO/OPA_SRC/SBC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/GO6_package_r8356_CICEnudging/NEMOGCM/NEMO/OPA_SRC/SBC/sbc_ice.F90

    r8618 r8899  
    7373   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::   botmelt            !: category botmelt 
    7474   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   ndaice_da        !: NEMO ice conc rate of change 
    75    REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   nfresh_da         !: NEMO fresh water flux to ocean due to data assim  
    76    REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   nfsalt_da          !: NEMO salt flux to ocean due to data assim  
    7775 
    7876#if defined  key_lim3 
     
    165163                ss_iov(jpi,jpj)       , fr_iu(jpi,jpj)        , fr_iv(jpi,jpj)        , & 
    166164                a_i(jpi,jpj,ncat)     , topmelt(jpi,jpj,ncat) , botmelt(jpi,jpj,ncat) , & 
    167                 sstfrz(jpi,jpj)       , ndaice_da(jpi,jpj), nfresh_da(jpi,jpj), & 
    168       nfsalt_da(jpi,jpj), STAT= ierr(1) ) 
     165                sstfrz(jpi,jpj)       , ndaice_da(jpi,jpj), STAT= ierr(1) ) 
    169166   ! Alex West: Allocating tn_ice with 5 categories.  When NEMO is used with CICE, this variable 
    170167   ! represents top layer ice temperature, which is multi-category. 
  • branches/UKMO/GO6_package_r8356_CICEnudging/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_cice.F90

    r8618 r8899  
    5555                sst,sss,uocn,vocn,ss_tltx,ss_tlty,fsalt_ai,      & 
    5656                fresh_ai,fhocn_ai,fswthru_ai,frzmlt,             & 
    57                 flatn_f,fsurfn_f,fcondtopn_f,daice_da,fresh_da,fsalt_da, & 
     57                flatn_f,fsurfn_f,fcondtopn_f,daice_da, & 
    5858                uatm,vatm,wind,fsw,flw,Tair,potT,Qa,rhoa,zlvl,   & 
    5959                swvdr,swvdf,swidr,swidf,Tf,                      & 
     
    223223      ENDIF   
    224224 
    225       ! Initialize fresh water and salt fluxes from data assim   
    226       !  and data assimilation index to cice 
    227       nfresh_da(:,:) = 0.0 
    228       nfsalt_da(:,:) = 0.0 
     225      ! Initialize  data assimilation index for cice 
    229226      ndaice_da(:,:) = 0.0 
    230227       
     
    462459!Ice concentration change (from assimilation)  
    463460      ztmp(:,:)=ndaice_da(:,:)*tmask(:,:,1)   
    464       write(numout,*) 'PE/Ar/Max/Min daice_dat ', nproc, narea, maxval(ztmp), minval(ztmp)  
    465       write(numout,*) 'PE/Ar/Max/Min daice_dat ', nproc, narea, maxval(ndaice_da), minval(ndaice_da) 
    466461      CALL nemo2cice(ztmp, daice_da,'T',1.) 
    467462 
     
    728723         snwice_fmass (:,:) = ( snwice_mass(:,:) - snwice_mass_b(:,:) ) / dt 
    729724      ENDIF 
    730  
    731 ! Import fresh water and salt flux due to seaice da 
    732       CALL cice2nemo(fresh_da, nfresh_da,'T',1.0) 
    733       CALL cice2nemo(fsalt_da, nfsalt_da,'T',1.0) 
    734       write(numout,*) 'Max/Min nfresh_da ', maxval(nfresh_da), minval(nfresh_da) 
    735       write(numout,*) 'Max/Min nfresh_da ', maxval(nfsalt_da), minval(nfsalt_da) 
    736725 
    737726! Release work space 
Note: See TracChangeset for help on using the changeset viewer.