MODULE trcwri_my_trc !!====================================================================== !! *** MODULE trcwri *** !! my_trc : Output of my_trc tracers !!====================================================================== !! History : 1.0 ! 2009-05 (C. Ethe) Original code !!---------------------------------------------------------------------- #if defined key_top && defined key_my_trc && defined key_iomput !!---------------------------------------------------------------------- !! 'key_my_trc' my_trc model !!---------------------------------------------------------------------- !! trc_wri_my_trc : outputs of concentration fields !!---------------------------------------------------------------------- USE trc ! passive tracers common variables USE iom ! I/O manager IMPLICIT NONE PRIVATE PUBLIC trc_wri_my_trc # include "top_substitute.h90" CONTAINS SUBROUTINE trc_wri_my_trc !!--------------------------------------------------------------------- !! *** 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_myt0, jp_myt1 cltra = TRIM( ctrcnm(jn) ) ! short title for tracer CALL iom_put( cltra, trn(:,:,:,jn) ) END DO ! END SUBROUTINE trc_wri_my_trc #else !!---------------------------------------------------------------------- !! Dummy module : No passive tracer !!---------------------------------------------------------------------- PUBLIC trc_wri_my_trc CONTAINS SUBROUTINE trc_wri_my_trc ! Empty routine END SUBROUTINE trc_wri_my_trc #endif !!---------------------------------------------------------------------- !! NEMO/TOP 3.3 , NEMO Consortium (2010) !! $Id$ !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt) !!====================================================================== END MODULE trcwri_my_trc