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 6196 for branches/UKMO/dev_r5518_pkg/NEMOGCM/NEMO – NEMO

Ignore:
Timestamp:
2016-01-04T10:31:06+01:00 (8 years ago)
Author:
frrh
Message:

Remove mysterious "trunk" content which seems to have appeared for
reasons unknown.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/dev_r5518_pkg/NEMOGCM/NEMO/OPA_SRC/SBC/sbccpl.F90

    r6195 r6196  
    5353#endif 
    5454#if defined key_medusa 
    55    USE trc 
     55! RSRH Temporarily commented out until we get MEDUSA code   USE trc 
    5656#endif 
     57 
     58 
     59 
    5760 
    5861   IMPLICIT NONE 
     
    159162   END TYPE FLD_C 
    160163   ! Send to the atmosphere                           ! 
    161    TYPE(FLD_C) ::   sn_snd_temp, sn_snd_alb, sn_snd_thick, sn_snd_crt, sn_snd_co2   
     164   TYPE(FLD_C) ::   sn_snd_temp, sn_snd_alb, sn_snd_thick, sn_snd_crt, sn_snd_co2, sn_snd_cond, sn_snd_mpnd, sn_snd_sstfrz, sn_snd_thick1 
    162165   TYPE(FLD_C) ::   sn_snd_bio_co2, sn_snd_bio_dms                        
    163166   ! Received from the atmosphere                     ! 
    164167   TYPE(FLD_C) ::   sn_rcv_w10m, sn_rcv_taumod, sn_rcv_tau, sn_rcv_dqnsdt, sn_rcv_qsr, sn_rcv_qns, sn_rcv_emp, sn_rcv_rnf 
    165    TYPE(FLD_C) ::   sn_rcv_cal, sn_rcv_iceflx, sn_rcv_co2 
     168   TYPE(FLD_C) ::   sn_rcv_cal, sn_rcv_iceflx, sn_rcv_co2, sn_rcv_ts_ice, sn_rcv_grnm, sn_rcv_antm 
    166169   TYPE(FLD_C) ::   sn_rcv_atm_pco2, sn_rcv_atm_dust                          
    167170   ! Other namelist parameters                        ! 
     
    178181 
    179182   INTEGER , ALLOCATABLE, SAVE, DIMENSION(    :) ::   nrcvinfo           ! OASIS info argument 
     183 
    180184 
    181185   !! Substitution 
     
    18901894      REAL(wp), POINTER, DIMENSION(:,:)   ::   zfr_l, ztmp1, ztmp2, zotx1, zoty1, zotz1, zitx1, zity1, zitz1 
    18911895      REAL(wp), POINTER, DIMENSION(:,:,:) ::   ztmp3, ztmp4    
     1896 
     1897#if defined key_medusa 
     1898! RSRH Temporarily definitition of array used in medusa coupling until we actually have the medusa code included in the build 
     1899   REAL(wp)  ::  TRC2D_TEST(jpi,jpj) 
     1900#endif 
     1901 
    18921902      !!---------------------------------------------------------------------- 
    18931903      ! 
     
    20412051!! May add also a coupling MED-UKCA key 
    20422052 
     2053 
     2054#if defined key_medusa 
    20432055      ! RSRH. We don't want to use magic numbers in the code (i.e. 98 and 221). 
    20442056      ! These need moving to a parameter statement (as part of MEDUSA code) or even specifying in a namelist 
    20452057      ! so the following code MUST NOT be viewed as anything more than temporary. 
    2046       IF( ssnd(jps_bio_co2)%laction )   CALL cpl_prism_snd( jps_bio_co2, isec, trc2d(:,:,98:98), info ) 
     2058!      IF( ssnd(jps_bio_co2)%laction )   CALL cpl_prism_snd( jps_bio_co2, isec, trc2d(:,:,98:98), info ) 
     2059      TRC2D_TEST(:,:) = 0.0 
     2060      IF( ssnd(jps_bio_co2)%laction )   CALL cpl_prism_snd( jps_bio_co2, isec, trc2d_TEST(:,:), info ) 
    20472061 
    20482062      IF( ssnd(jps_bio_dms)%laction )  THEN 
    20492063          ! We need to multiply DMS by a conversion factor to get values in the standard units expected in 
    20502064          ! the coupling space. 
    2051           ztmp1(:,: ) = trc2d(:,:,221) * dms_unit_conv 
     2065!         ztmp1(:,: ) = trc2d(:,:,221) * dms_unit_conv 
     2066         ztmp1(:,: ) = trc2d_TEST(:,:) * dms_unit_conv 
    20522067         CALL cpl_prism_snd( jps_bio_dms, isec, RESHAPE ( ztmp1, (/jpi,jpj,1/) ), info ) 
    20532068      ENDIF 
    2054  
     2069#endif 
    20552070      !                                                      ! ------------------------- ! 
    20562071      IF( ssnd(jps_ocx1)%laction ) THEN                      !      Surface current      ! 
     
    21552170                                &                  + v_ice(ji-1,jj  ) + v_ice(ji,jj  )  ) *  fr_i(ji,jj) 
    21562171                       END DO 
     2172                     END DO 
    21572173#if defined key_cice 
    21582174                  ELSE 
Note: See TracChangeset for help on using the changeset viewer.