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 13524 for NEMO/branches/2020/dev_r12740_TOP-01_rlod_Antarctic_ice_Sheet_Fe_Source/src/TOP/trcini.F90 – NEMO

Ignore:
Timestamp:
2020-09-25T14:30:18+02:00 (4 years ago)
Author:
rlod
Message:

First step of nutrient sources from Antarctic Ice Sheet

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2020/dev_r12740_TOP-01_rlod_Antarctic_ice_Sheet_Fe_Source/src/TOP/trcini.F90

    r12377 r13524  
    2525   USE trcice          ! tracers in sea ice 
    2626   USE trcbc           ! generalized Boundary Conditions 
     27   USE trcais          ! tracers from Antartic Ice Sheet  
    2728  
    2829   IMPLICIT NONE 
     
    158159         ln_trc_cbc(jn) =       sn_tracer(jn)%llcbc 
    159160         ln_trc_obc(jn) =       sn_tracer(jn)%llobc 
     161         ln_trc_ais(jn) =       sn_tracer(jn)%llais 
    160162      END DO 
    161163      ! 
     
    180182         WRITE(numout,*) 'trc_init_sms : Summary for selected passive tracers' 
    181183         WRITE(numout,*) '~~~~~~~~~~~~' 
    182          WRITE(numout,*) '    ID     NAME     INI  SBC  CBC  OBC' 
     184         WRITE(numout,*) '    ID     NAME     INI  SBC  CBC  OBC  AIS' 
    183185         DO jn = 1, jptra 
    184             WRITE(numout,9001) jn, TRIM(ctrcnm(jn)), ln_trc_ini(jn), ln_trc_sbc(jn),ln_trc_cbc(jn),ln_trc_obc(jn) 
     186            WRITE(numout,9001) jn, TRIM(ctrcnm(jn)), ln_trc_ini(jn),ln_trc_sbc(jn),ln_trc_cbc(jn),ln_trc_obc(jn),ln_trc_ais(jn) 
    185187         END DO 
    186188      ENDIF 
     
    189191         WRITE(numout,*) ' Applying tracer boundary conditions ' 
    190192      ENDIF 
     193      ! 
     194      IF( lwp .AND. ln_trcais ) THEN 
     195         WRITE(numout,*) 
     196         WRITE(numout,*) ' Applying tracer from Antarctic Ice Sheet ' 
     197      ENDIF 
    191198      
    192 9001  FORMAT(3x,i3,1x,a10,3x,l2,3x,l2,3x,l2,3x,l2) 
     1999001  FORMAT(3x,i3,1x,a10,3x,l2,3x,l2,3x,l2,3x,l2,3x,l2) 
    193200      ! 
    194201   END SUBROUTINE trc_ini_sms 
     
    240247      ENDIF 
    241248      ! 
     249      IF( ln_trcais ) CALL trc_ais_ini   ! set tracers from Antarctic Ice Sheet 
    242250      ! 
    243251      IF( ln_rsttr ) THEN              ! restart from a file 
Note: See TracChangeset for help on using the changeset viewer.