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 2000 for branches/DEV_r1784_mid_year_merge_2010/NEMO/OPA_SRC/SBC – NEMO

Ignore:
Timestamp:
2010-07-09T13:27:11+02:00 (14 years ago)
Author:
acc
Message:

ticket #684 step 7: Add in changes between the head of the DEV_r1821_Rivers branch and the trunk@1821. Note untested changes were made to the Rivers branch before this merge see wiki ticket page for details

Location:
branches/DEV_r1784_mid_year_merge_2010/NEMO/OPA_SRC/SBC
Files:
4 edited

Legend:

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

    r1705 r2000  
    4949   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   emp       !: freshwater budget: volume flux               [Kg/m2/s] 
    5050   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   emps      !: freshwater budget: concentration/dillution   [Kg/m2/s] 
     51   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   rnf       !: river runoff   [Kg/m2/s]   
    5152   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   emp_tot   !: total evaporation - (liquid + solid) precpitation over oce and ice 
    5253   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   tprecip   !: total precipitation           [Kg/m2/s] 
  • branches/DEV_r1784_mid_year_merge_2010/NEMO/OPA_SRC/SBC/sbcfwb.F90

    r1976 r2000  
    3232   REAL(wp) ::   a_fwb_b            ! annual domain averaged freshwater budget 
    3333   REAL(wp) ::   a_fwb              ! for 2 year before (_b) and before year. 
    34    REAL(wp) ::   empold             ! empold to be suppressed 
     34   REAL(wp) ::   fwfold             ! fwfold to be suppressed 
    3535   REAL(wp) ::   area               ! global mean ocean surface (interior domain) 
    3636 
     
    6666      INTEGER  ::   inum                  ! temporary logical unit 
    6767      INTEGER  ::   ikty, iyear           !  
    68       REAL(wp) ::   z_emp, z_emp_nsrf       ! temporary scalars 
     68      REAL(wp) ::   z_fwf, z_fwf_nsrf       ! temporary scalars 
    6969      REAL(wp) ::   zsurf_neg, zsurf_pos, zsurf_tospread 
    7070      REAL(wp), DIMENSION(jpi,jpj) ::   ztmsk_neg, ztmsk_pos, ztmsk_tospread 
     
    8080            IF( kn_fwb == 1 )   WRITE(numout,*) '          instantaneously set to zero' 
    8181            IF( kn_fwb == 2 )   WRITE(numout,*) '          adjusted from previous year budget' 
    82             IF( kn_fwb == 3 )   WRITE(numout,*) '          emp set to zero and spread out over erp area' 
     82            IF( kn_fwb == 3 )   WRITE(numout,*) '          fwf set to zero and spread out over erp area' 
    8383            ! 
    8484            IF( kn_fwb == 3 .AND. nn_sssr /= 2 )   & 
     
    101101          
    102102      ! 
    103       CASE ( 1 )                               ! global mean emp set to zero 
     103      CASE ( 1 )                               ! global mean fwf set to zero 
    104104         IF( MOD( kt-1, kn_fsbc ) == 0 ) THEN 
    105             z_emp = glob_sum( e1e2_i(:,:) * emp(:,:) ) / area   ! sum over the global domain 
    106             emp (:,:) = emp (:,:) - z_emp 
    107             emps(:,:) = emps(:,:) - z_emp 
    108          ENDIF 
    109          ! 
    110       CASE ( 2 )                               ! emp budget adjusted from the previous year 
     105            z_fwf = glob_sum( e1e2_i(:,:) * ( emp(:,:) - rnf(:,:) ) ) / area   ! sum over the global domain 
     106            emp (:,:) = emp (:,:) - z_fwf  
     107            emps(:,:) = emps(:,:) - z_fwf  
     108         ENDIF 
     109         ! 
     110      CASE ( 2 )                               ! fwf budget adjusted from the previous year 
    111111         ! initialisation 
    112112         IF( kt == nit000 ) THEN 
    113             ! Read the corrective factor on precipitations (empold) 
     113            ! Read the corrective factor on precipitations (fwfold) 
    114114            CALL ctl_opn( inum, 'EMPave_old.dat', 'OLD', 'FORMATTED', 'SEQUENTIAL', -1, numout, .FALSE. ) 
    115115            READ ( inum, "(24X,I8,2ES24.16)" ) iyear, a_fwb_b, a_fwb 
    116116            CLOSE( inum ) 
    117             empold = a_fwb                  ! current year freshwater budget correction 
     117            fwfold = a_fwb                  ! current year freshwater budget correction 
    118118            !                               ! estimate from the previous year budget 
    119119            IF(lwp)WRITE(numout,*) 
    120             IF(lwp)WRITE(numout,*)'sbc_fwb : year = ',iyear  , ' freshwater budget correction = ', empold 
     120            IF(lwp)WRITE(numout,*)'sbc_fwb : year = ',iyear  , ' freshwater budget correction = ', fwfold 
    121121            IF(lwp)WRITE(numout,*)'          year = ',iyear-1, ' freshwater budget read       = ', a_fwb 
    122122            IF(lwp)WRITE(numout,*)'          year = ',iyear-2, ' freshwater budget read       = ', a_fwb_b 
    123123         ENDIF    
    124124         !  
    125          ! Update empold if new year start 
     125         ! Update fwfold if new year start 
    126126         ikty = 365 * 86400 / rdttra(1)    !!bug  use of 365 days leap year or 360d year !!!!!!! 
    127127         IF( MOD( kt, ikty ) == 0 ) THEN 
     
    130130            a_fwb   = a_fwb * 1.e+3 / ( area * 86400. * 365. )     ! convert in Kg/m3/s = mm/s 
    131131!!gm        !                                                      !!bug 365d year  
    132             empold =  a_fwb                 ! current year freshwater budget correction 
     132            fwfold =  a_fwb                 ! current year freshwater budget correction 
    133133            !                               ! estimate from the previous year budget 
    134134         ENDIF 
     
    136136         ! correct the freshwater fluxes 
    137137         IF( MOD( kt-1, kn_fsbc ) == 0 ) THEN 
    138             emp (:,:) = emp (:,:) + empold 
    139             emps(:,:) = emps(:,:) + empold 
    140          ENDIF 
    141          ! 
    142          ! save empold value in a file 
     138            emp (:,:) = emp (:,:) + fwfold 
     139            emps(:,:) = emps(:,:) + fwfold 
     140         ENDIF 
     141         ! 
     142         ! save fwfold value in a file 
    143143         IF( kt == nitend .AND. lwp ) THEN 
    144144            CALL ctl_opn( inum, 'EMPave.dat', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, numout, .FALSE., narea ) 
     
    147147         ENDIF 
    148148         ! 
    149       CASE ( 3 )                               ! global emp set to zero and spread out over erp area 
     149      CASE ( 3 )                               ! global fwf set to zero and spread out over erp area 
    150150         ! 
    151151         IF( MOD( kt-1, kn_fsbc ) == 0 ) THEN 
     
    159159            zsurf_pos = SUM( e1e2_i(:,:)*ztmsk_pos(:,:) ) 
    160160         
    161             ! emp global mean  
    162             z_emp = glob_sum( e1e2_i(:,:) * emp(:,:) ) / area 
     161            ! fwf global mean  
     162            z_fwf = glob_sum( e1e2_i(:,:) * ( emp(:,:) - rnf(:,:) ) ) / area 
    163163            ! 
    164164             
    165             IF( z_emp < 0.e0 ) THEN 
     165            IF( z_fwf < 0.e0 ) THEN 
    166166                ! to spread out over >0 erp area to increase evaporation damping process 
    167167                zsurf_tospread = zsurf_pos 
     
    173173            ENDIF 
    174174 
    175             ! emp global mean over <0 or >0 erp area 
    176             z_emp_nsrf = SUM( e1e2_i(:,:) * z_emp ) / ( zsurf_tospread + rsmall ) 
     175            ! fwf global mean over <0 or >0 erp area 
     176            z_fwf_nsrf = SUM( e1e2_i(:,:) * z_fwf ) / ( zsurf_tospread + rsmall ) 
    177177            ! weight to respect erp field 2D structure  
    178178            z_wgt(:,:) = ztmsk_tospread(:,:) * erp(:,:) / ( SUM( ztmsk_tospread(:,:) * erp(:,:) * e1e2_i(:,:) ) + rsmall ) 
    179179            ! final correction term to apply 
    180             zerp_cor(:,:) = -1. * z_emp_nsrf * zsurf_tospread * z_wgt(:,:) 
     180            zerp_cor(:,:) = -1. * z_fwf_nsrf * zsurf_tospread * z_wgt(:,:) 
    181181 
    182182            CALL lbc_lnk( zerp_cor, 'T', 1. ) 
     
    187187             
    188188            IF( nprint == 1 .AND. lwp ) THEN 
    189                IF( z_emp < 0.e0 ) THEN 
    190                   WRITE(numout,*)'       z_emp < 0' 
     189               IF( z_fwf < 0.e0 ) THEN 
     190                  WRITE(numout,*)'       z_fwf < 0' 
    191191                  WRITE(numout,*)'       SUM(erp+)        = ', SUM( ztmsk_tospread(:,:)*erp(:,:)*e1e2_i(:,:) )*1.e-3,' m3.s-1' 
    192192               ELSE 
    193                    WRITE(numout,*)'      z_emp >= 0' 
     193                   WRITE(numout,*)'      z_fwf >= 0' 
    194194                   WRITE(numout,*)'      SUM(erp-)        = ', SUM( ztmsk_tospread(:,:)*erp(:,:)*e1e2_i(:,:) )*1.e-3,' m3.s-1' 
    195195               ENDIF 
    196                WRITE(numout,*)'      SUM(empG)        = ', SUM( z_emp*e1e2_i(:,:) )*1.e-3,' m3.s-1' 
    197                WRITE(numout,*)'      z_emp            = ', z_emp      ,' mm.s-1' 
    198                WRITE(numout,*)'      z_emp_nsrf       = ', z_emp_nsrf ,' mm.s-1' 
     196               WRITE(numout,*)'      SUM(empG)        = ', SUM( z_fwf*e1e2_i(:,:) )*1.e-3,' m3.s-1' 
     197               WRITE(numout,*)'      z_fwf            = ', z_fwf      ,' mm.s-1' 
     198               WRITE(numout,*)'      z_fwf_nsrf       = ', z_fwf_nsrf ,' mm.s-1' 
    199199               WRITE(numout,*)'      MIN(zerp_cor)    = ', MINVAL(zerp_cor)  
    200200               WRITE(numout,*)'      MAX(zerp_cor)    = ', MAXVAL(zerp_cor)  
  • branches/DEV_r1784_mid_year_merge_2010/NEMO/OPA_SRC/SBC/sbcmod.F90

    r1953 r2000  
    237237      ! 
    238238      IF( MOD( kt-1, nn_fsbc ) == 0 ) THEN 
    239          CALL iom_put( "emp"    , emp       )                   ! upward water flux 
    240          CALL iom_put( "emps"   , emps      )                   ! c/d water flux 
    241          CALL iom_put( "qns+qsr", qns + qsr )                   ! total heat flux   (caution if ln_dm2dc=true, to be  
    242          CALL iom_put( "qns"    , qns       )                   ! solar heat flux    moved after the call to iom_setkt) 
    243          CALL iom_put( "qsr"    ,       qsr )                   ! solar heat flux    moved after the call to iom_setkt) 
     239         CALL iom_put( "emp-rnf"  , (emp-rnf)  )                ! upward water flux  
     240         CALL iom_put( "emps-rnf" , (emps-rnf) )                ! c/d water flux  
     241         CALL iom_put( "qns+qsr"  , qns + qsr  )                ! total heat flux   (caution if ln_dm2dc=true, to be  
     242         CALL iom_put( "qns"      , qns        )                ! solar heat flux    moved after the call to iom_setkt) 
     243         CALL iom_put( "qsr"      ,       qsr  )                ! solar heat flux    moved after the call to iom_setkt) 
    244244         IF(  nn_ice > 0 )   CALL iom_put( "ice_cover", fr_i )  ! ice fraction  
    245245      ENDIF 
     
    254254      IF(ln_ctl) THEN         ! print mean trends (used for debugging) 
    255255         CALL prt_ctl(tab2d_1=fr_i   , clinfo1=' fr_i - : ', mask1=tmask, ovlap=1 ) 
    256          CALL prt_ctl(tab2d_1=emp    , clinfo1=' emp  - : ', mask1=tmask, ovlap=1 ) 
    257          CALL prt_ctl(tab2d_1=emps   , clinfo1=' emps - : ', mask1=tmask, ovlap=1 ) 
     256         CALL prt_ctl(tab2d_1=(emp-rnf) , clinfo1=' emp-rnf  - : ', mask1=tmask, ovlap=1 )  
     257         CALL prt_ctl(tab2d_1=(emps-rnf), clinfo1=' emps-rnf - : ', mask1=tmask, ovlap=1 )  
    258258         CALL prt_ctl(tab2d_1=qns    , clinfo1=' qns  - : ', mask1=tmask, ovlap=1 ) 
    259259         CALL prt_ctl(tab2d_1=qsr    , clinfo1=' qsr  - : ', mask1=tmask, ovlap=1 ) 
  • branches/DEV_r1784_mid_year_merge_2010/NEMO/OPA_SRC/SBC/sbcrnf.F90

    r1951 r2000  
    3232   TYPE(FLD_N)       , PUBLIC ::   sn_rnf                 !: information about the runoff file to be read 
    3333   TYPE(FLD_N)       , PUBLIC ::   sn_cnf                 !: information about the runoff mouth file to be read 
     34   TYPE(FLD_N)                ::   sn_sal_rnf             !: information about the salinities of runoff file to be read   
     35   TYPE(FLD_N)                ::   sn_tmp_rnf             !: information about the temperatures of runoff file to be read   
     36   TYPE(FLD_N)                ::   sn_dep_rnf             !: information about the depth which river inflow affects 
    3437   LOGICAL           , PUBLIC ::   ln_rnf_mouth = .false. !: specific treatment in mouths vicinity 
    3538   REAL(wp)          , PUBLIC ::   rn_hrnf      = 0.e0    !: runoffs, depth over which enhanced vertical mixing is used 
    3639   REAL(wp)          , PUBLIC ::   rn_avt_rnf   = 0.e0    !: runoffs, value of the additional vertical mixing coef. [m2/s] 
     40   LOGICAL           , PUBLIC ::   ln_rnf_att   = .false. !: river runoffs attributes (temp, sal & depth) are specified in a file  
    3741   REAL(wp)          , PUBLIC ::   rn_rfact     = 1.e0    !: multiplicative factor for runoff 
    3842 
     
    4145   REAL(wp), PUBLIC, DIMENSION(jpk)     ::   rnfmsk_z    !: river mouth mask (vert.) 
    4246 
    43    TYPE(FLD), ALLOCATABLE, DIMENSION(:) ::   sf_rnf   ! structure of input SST (file information, fields read) 
     47   TYPE(FLD), ALLOCATABLE, DIMENSION(:) ::   sf_rnf        !: structure of input river runoff (file information, fields read) 
     48 
     49   TYPE(FLD), ALLOCATABLE, DIMENSION(:) ::   sf_sal_rnf    !: structure of input river runoff salinity (file information, fields read)   
     50   TYPE(FLD), ALLOCATABLE, DIMENSION(:) ::   sf_tmp_rnf    !: structure of input river runoff temperature (file information, fields read)   
     51  
     52   REAL,    PUBLIC, DIMENSION(jpi,jpj) ::  rnf_dep         !: depth of runoff in m   
     53   INTEGER, PUBLIC, DIMENSION(jpi,jpj) ::  rnf_mod_dep     !: depth of runoff in model levels   
     54   REAL,    PUBLIC, DIMENSION(jpi,jpj) ::  rnf_sal         !: salinity of river runoff   
     55   REAL,    PUBLIC, DIMENSION(jpi,jpj) ::  rnf_tmp         !: temperature of river runoff   
     56   
     57   INTEGER  ::  ji, jj ,jk    ! dummy loop indices   
     58   INTEGER  ::  inum          ! temporary logical unit   
     59   
     60   !! * Substitutions   
     61#  include "domzgr_substitute.h90"   
    4462 
    4563   !!---------------------------------------------------------------------- 
     
    7088      !                                    
    7189      IF( kt == nit000 ) THEN   
    72          IF( .NOT. ln_rnf_emp ) THEN 
    73             ALLOCATE( sf_rnf(1), STAT=ierror ) 
    74             IF( ierror > 0 ) THEN 
    75                CALL ctl_stop( 'sbc_rnf: unable to allocate sf_rnf structure' )   ;   RETURN 
    76             ENDIF 
    77             ALLOCATE( sf_rnf(1)%fnow(jpi,jpj,1  ) ) 
    78             ALLOCATE( sf_rnf(1)%fdta(jpi,jpj,1,2) ) 
    79          ENDIF 
    80          CALL sbc_rnf_init(sf_rnf) 
     90         CALL sbc_rnf_init                      ! Read namelist and allocate structures 
    8191      ENDIF 
    8292 
     
    8797         CALL fld_read( kt, nn_fsbc, sf_rnf )   ! Read Runoffs data and provides it 
    8898         !                                      ! at the current time-step 
     99         IF ( ln_rnf_att ) THEN   
     100            CALL fld_read ( kt, nn_fsbc, sf_sal_rnf )   
     101            CALL fld_read ( kt, nn_fsbc, sf_tmp_rnf )   
     102         ENDIF   
    89103 
    90104         ! Runoff reduction only associated to the ORCA2_LIM configuration 
     
    101115 
    102116         IF( MOD( kt-1, nn_fsbc ) == 0 ) THEN 
    103             emp (:,:) = emp (:,:) - rn_rfact * ABS( sf_rnf(1)%fnow(:,:,1) ) 
    104             emps(:,:) = emps(:,:) - rn_rfact * ABS( sf_rnf(1)%fnow(:,:,1) ) 
    105             CALL iom_put( "runoffs", sf_rnf(1)%fnow )         ! runoffs 
     117            rnf(:,:)  = rn_rfact * ( sf_rnf(1)%fnow(:,:) )   
     118            IF ( ln_rnf_att ) THEN   
     119               rnf_sal(:,:) = ( sf_sal_rnf(1)%fnow(:,:) )   
     120               rnf_tmp(:,:) = ( sf_tmp_rnf(1)%fnow(:,:) )   
     121            ELSE   
     122               rnf_sal(:,:) = 0   
     123               rnf_tmp(:,:) = -999   
     124            ENDIF   
     125            CALL iom_put( "runoffs", rnf )         ! runoffs 
    106126         ENDIF 
    107127         ! 
     
    111131 
    112132 
    113    SUBROUTINE sbc_rnf_init( sf_rnf ) 
     133   SUBROUTINE sbc_rnf_init 
    114134      !!---------------------------------------------------------------------- 
    115135      !!                  ***  ROUTINE sbc_rnf_init  *** 
     
    121141      !! ** Action  : - read parameters 
    122142      !!---------------------------------------------------------------------- 
    123       TYPE(FLD), INTENT(inout), DIMENSION(:) :: sf_rnf   ! input data 
    124       !! 
    125       NAMELIST/namsbc_rnf/ cn_dir, ln_rnf_emp, sn_rnf, sn_cnf, ln_rnf_mouth,   & 
    126          &                 rn_hrnf, rn_avt_rnf, rn_rfact 
     143      CHARACTER(len=32) ::   rn_dep_file   ! runoff file name   
     144      !!  
     145      NAMELIST/namsbc_rnf/ cn_dir, ln_rnf_emp, sn_rnf, sn_cnf, sn_sal_rnf, sn_tmp_rnf, sn_dep_rnf,   &   
     146         &                 ln_rnf_mouth, ln_rnf_att, rn_hrnf, rn_avt_rnf, rn_rfact   
    127147      !!---------------------------------------------------------------------- 
    128148 
     
    136156      sn_cnf = FLD_N( 'runoffs',     0     , 'sorunoff' ,  .FALSE.   , .true. ,   'yearly'  , ''       , ''         ) 
    137157 
     158      sn_sal_rnf = FLD_N( 'runoffs',  24.  , 'rosaline' ,  .TRUE.    , .true. ,   'yearly'  , ''    , ''  )   
     159      sn_tmp_rnf = FLD_N( 'runoffs',  24.  , 'rotemper' ,  .TRUE.    , .true. ,   'yearly'  , ''    , ''  )   
     160      sn_dep_rnf = FLD_N( 'runoffs',   0.  , 'rodepth'  ,  .FALSE.   , .true. ,   'yearly'  , ''    , ''  )   
    138161      ! 
    139162      REWIND ( numnam )                         ! Read Namelist namsbc_rnf 
     
    160183         IF(lwp) WRITE(numout,*) 
    161184         IF(lwp) WRITE(numout,*) '          runoffs directly provided in the precipitations' 
     185         IF ( ln_rnf_att ) THEN 
     186           CALL ctl_warn( 'runoffs already included in precipitations & so runoff attributes will not be used' )  
     187           ln_rnf_att = .FALSE. 
     188         ENDIF 
    162189         ! 
    163190      ELSE                                      ! runoffs read in a file : set sf_rnf structure  
    164191         ! 
    165          ! sf_rnf already allocated in main routine 
     192         ! Allocate sf_rnf structure and (if required) sf_sal_rnf and sf_tmp_rnf structures 
     193         ALLOCATE( sf_rnf(1), STAT=ierror ) 
     194         IF( ierror > 0 ) THEN 
     195            CALL ctl_stop( 'sbc_rnf: unable to allocate sf_rnf structure' )   ;   RETURN 
     196         ENDIF 
     197         ALLOCATE( sf_rnf(1)%fnow(jpi,jpj) ) 
     198         ALLOCATE( sf_rnf(1)%fdta(jpi,jpj,2) ) 
     199 
     200         IF( ln_rnf_att ) THEN 
     201            ALLOCATE( sf_sal_rnf(1), STAT=ierror ) 
     202            IF( ierror > 0 ) THEN 
     203               CALL ctl_stop( 'sbc_sal_rnf: unable to allocate sf_sal_rnf structure' )   ;   RETURN 
     204            ENDIF 
     205            ALLOCATE( sf_sal_rnf(1)%fnow(jpi,jpj) ) 
     206            ALLOCATE( sf_sal_rnf(1)%fdta(jpi,jpj,2) ) 
     207 
     208            ALLOCATE( sf_tmp_rnf(1), STAT=ierror ) 
     209            IF( ierror > 0 ) THEN 
     210                CALL ctl_stop( 'sbc_tmp_rnf: unable to allocate sf_tmp_rnf structure' )   ;   RETURN 
     211            ENDIF 
     212            ALLOCATE( sf_tmp_rnf(1)%fnow(jpi,jpj) ) 
     213            ALLOCATE( sf_tmp_rnf(1)%fdta(jpi,jpj,2) ) 
     214         ENDIF 
    166215         ! fill sf_rnf with sn_rnf and control print 
    167216         CALL fld_fill( sf_rnf, (/ sn_rnf /), cn_dir, 'sbc_rnf_init', 'read runoffs data', 'namsbc_rnf' ) 
    168          ! 
     217  
     218         IF ( ln_rnf_att ) THEN   
     219            CALL fld_fill (sf_sal_rnf, (/ sn_sal_rnf /), cn_dir, 'sbc_rnf_init', 'read runoff salinity data', 'namsbc_rnf' )   
     220            CALL fld_fill (sf_tmp_rnf, (/ sn_tmp_rnf /), cn_dir, 'sbc_rnf_init', 'read runoff temperature data', 'namsbc_rnf' )   
     221   
     222            rn_dep_file = TRIM( cn_dir )//TRIM( sn_dep_rnf%clname )   
     223            CALL iom_open ( rn_dep_file, inum )                           ! open file   
     224            CALL iom_get  ( inum, jpdom_data, sn_dep_rnf%clvar, rnf_dep )    ! read the river mouth array   
     225            CALL iom_close( inum )                                      ! close file   
     226   
     227            rnf_mod_dep(:,:)=0   
     228            DO jj=1,jpj   
     229              DO ji=1,jpi   
     230                IF ( rnf_dep(ji,jj) > 0.e0 ) THEN   
     231                  jk=2   
     232                  DO WHILE ( jk/=jpkm1 .AND. fsdept(ji,jj,jk) < rnf_dep(ji,jj) );  jk=jk+1;   ENDDO   
     233                  rnf_mod_dep(ji,jj)=jk   
     234                ELSE IF ( rnf_dep(ji,jj) .eq. -1 ) THEN   
     235                  rnf_mod_dep(ji,jj)=1   
     236                ELSE IF ( rnf_dep(ji,jj) .eq. -999 ) THEN   
     237                  rnf_mod_dep(ji,jj)=jpkm1   
     238                ELSE IF ( rnf_dep(ji,jj) /= 0 ) THEN   
     239                  CALL ctl_stop( 'runoff depth not positive, and not -999 or -1, rnf value in file fort.999'  )   
     240                  WRITE(999,*) 'ji, jj, rnf(ji,jj) :', ji, jj, rnf(ji,jj)   
     241                ENDIF   
     242              ENDDO   
     243            ENDDO   
     244         ELSE   
     245            rnf_mod_dep(:,:)=1   
     246         ENDIF   
     247      !  
    169248      ENDIF 
    170249 
     
    179258         ! 
    180259         !                                          ! Number of level over which Kz increase 
     260         IF ( ln_rnf_att )  &   
     261              &  CALL ctl_warn( 'increased mixing turned on but effects may already be spread through depth by ln_rnf_att' )  
    181262         nkrnf = 0 
    182263         IF( rn_hrnf > 0.e0 ) THEN 
Note: See TracChangeset for help on using the changeset viewer.