1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- MODULE trcwri_c14b
- !!======================================================================
- !! *** MODULE trcwri ***
- !! c14b : Output of c14b tracers
- !!======================================================================
- !! History : 1.0 ! 2009-05 (C. Ethe) Original code
- !!----------------------------------------------------------------------
- #if defined key_top && defined key_c14b && defined key_iomput
- !!----------------------------------------------------------------------
- !! 'key_c14b' c14b model
- !!----------------------------------------------------------------------
- !! trc_wri_c14b : outputs of concentration fields
- !!----------------------------------------------------------------------
- USE trc ! passive tracers common variables
- USE iom ! I/O manager
- IMPLICIT NONE
- PRIVATE
- PUBLIC trc_wri_c14b
- # include "top_substitute.h90"
- CONTAINS
- SUBROUTINE trc_wri_c14b
- !!---------------------------------------------------------------------
- !! *** ROUTINE trc_wri_trc ***
- !!
- !! ** Purpose : output passive tracers fields
- !!---------------------------------------------------------------------
- CHARACTER (len=20) :: cltra
- INTEGER :: jn
- !!---------------------------------------------------------------------
-
- ! write the tracer concentrations in the file
- ! ---------------------------------------
- DO jn = jp_c14b0, jp_c14b1
- cltra = TRIM( ctrcnm(jn) ) ! short title for tracer
- CALL iom_put( cltra, trn(:,:,:,jn) )
- END DO
- !
- END SUBROUTINE trc_wri_c14b
- #else
- !!----------------------------------------------------------------------
- !! Dummy module : No passive tracer
- !!----------------------------------------------------------------------
- PUBLIC trc_wri_c14b
- CONTAINS
- SUBROUTINE trc_wri_c14b ! Empty routine
- END SUBROUTINE trc_wri_c14b
- #endif
- !!----------------------------------------------------------------------
- !! NEMO/TOP 3.3 , NEMO Consortium (2010)
- !! $Id: trcwri_c14b.F90 3160 2011-11-20 14:27:18Z cetlod $
- !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
- !!======================================================================
- END MODULE trcwri_c14b
|