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 13233 for NEMO/branches/2019/dev_r11708_aumont_PISCES_QUOTA/src/TOP/PISCES/P4Z/p4zsms.F90 – NEMO

Ignore:
Timestamp:
2020-07-02T20:34:16+02:00 (4 years ago)
Author:
aumont
Message:

update of the PISCES comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r11708_aumont_PISCES_QUOTA/src/TOP/PISCES/P4Z/p4zsms.F90

    r12759 r13233  
    7474        IF( .NOT. ln_rsttr ) THEN 
    7575            CALL p4z_che            ! initialize the chemical constants 
    76             CALL ahini_for_at(hi)   !  set PH at kt=nit000 
     76            CALL ahini_for_at(hi)   ! set PH at kt=nit000 
    7777            t_oce_co2_flx_cum = 0._wp 
    7878        ELSE 
     
    8484      IF( ln_pisdmp .AND. MOD( kt - nn_dttrc, nn_pisdmp ) == 0 )   CALL p4z_dmp( kt )      ! Relaxation of some tracers 
    8585      ! 
    86       rfact = r2dttrc 
     86      rfact = r2dttrc  ! time step of PISCES 
    8787      ! 
    8888      IF( ( ln_top_euler .AND. kt == nittrc000 )  .OR. ( .NOT.ln_top_euler .AND. kt <= nittrc000 + nn_dttrc ) ) THEN 
    89          rfactr  = 1. / rfact 
    90          rfact2  = rfact / REAL( nrdttrc, wp ) 
    91          rfact2r = 1. / rfact2 
    92          xstep = rfact2 / rday         ! Time step duration for biology 
     89         rfactr  = 1. / rfact  ! inverse of the time step 
     90         rfact2  = rfact / REAL( nrdttrc, wp )  ! time step of the biological SMS 
     91         rfact2r = 1. / rfact2  ! Inverse of the biological time step 
     92         xstep = rfact2 / rday         ! Time step duration for biology relative to a day 
    9393         IF(lwp) WRITE(numout,*)  
    9494         IF(lwp) WRITE(numout,*) '    Passive Tracer  time step    rfact  = ', rfact, ' rdt = ', rdt 
     
    147147            tra(:,:,:,jn) = 0._wp 
    148148         END DO 
    149          ! 
     149         ! Euler-forward temporal scheme 
    150150         IF( ln_top_euler ) THEN 
    151151            DO jn = jp_pcs0, jp_pcs1 
     
    167167         ! 
    168168         CALL sed_model( kt )     !  Main program of Sediment model 
    169          ! 
     169         ! Eulor forward temporal scheme 
    170170         IF( ln_top_euler ) THEN 
    171171            DO jn = jp_pcs0, jp_pcs1 
Note: See TracChangeset for help on using the changeset viewer.