/[MITgcm]/MITgcm/pkg/matrix/matrix_output.F
ViewVC logotype

Contents of /MITgcm/pkg/matrix/matrix_output.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Wed Apr 20 15:57:47 2005 UTC (19 years, 1 month ago) by spk
Branch: MAIN
CVS Tags: checkpoint58l_post, checkpoint57t_post, checkpoint57o_post, checkpoint58e_post, checkpoint57v_post, checkpoint58u_post, checkpoint58w_post, checkpoint57m_post, checkpoint57s_post, checkpoint57k_post, checkpoint58r_post, checkpoint57i_post, checkpoint57y_post, checkpoint58n_post, checkpoint58x_post, checkpoint58t_post, checkpoint58h_post, checkpoint57y_pre, checkpoint58q_post, checkpoint58j_post, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint59c, checkpoint59b, checkpoint59i, checkpoint59h, checkpoint57r_post, checkpoint59, checkpoint58, checkpoint57h_done, checkpoint58f_post, checkpoint57x_post, checkpoint57n_post, checkpoint58d_post, checkpoint58c_post, checkpoint57w_post, checkpoint57p_post, checkpint57u_post, checkpoint58a_post, checkpoint58i_post, checkpoint57q_post, checkpoint58g_post, checkpoint58o_post, checkpoint57z_post, checkpoint58y_post, checkpoint58k_post, checkpoint58v_post, checkpoint58s_post, checkpoint58p_post, checkpoint57j_post, checkpoint58b_post, checkpoint57h_pre, checkpoint58m_post, checkpoint57l_post, checkpoint57h_post
Top level output routine for pkg/matrix called from
S/R DO_THE_MODEL_IO

1 C $Header: $
2 C $Name: $
3
4 #include "PACKAGES_CONFIG.h"
5 #include "CPP_OPTIONS.h"
6
7 CBOP
8 C !ROUTINE: MATRIX_OUTPUT
9
10 C !INTERFACE:
11 SUBROUTINE MATRIX_OUTPUT(
12 I myTime, myIter, myThid )
13
14 C !DESCRIPTION:
15 C This is the controlling routine for MATRIX output. It is
16 C called from DO_THE_MODEL_IO.
17
18 C !USES:
19 IMPLICIT NONE
20 #include "SIZE.h"
21 #include "EEPARAMS.h"
22 #include "PARAMS.h"
23 #include "PTRACERS_SIZE.h"
24 #include "PTRACERS.h"
25 #include "MATRIX.h"
26
27 C !INPUT PARAMETERS:
28 C myIter :: time-step number
29 C myTime :: model time
30 C myThid :: thread number
31 INTEGER myIter
32 INTEGER myThid
33 _RL myTime
34 CEOP
35
36 #ifdef ALLOW_MATRIX
37 C !LOCAL VARIABLES:
38
39 IF (myIter.NE.nIter0) THEN
40 C Write matrix to file
41 CALL MATRIX_WRITE_TENDENCY( myTime, myIter, myThid )
42 ELSEIF (myIter.EQ.nIter0) THEN
43 C Write grid info for pkg/matrix
44 CALL MATRIX_WRITE_GRID( myThid )
45 ENDIF
46
47 #endif /* ALLOW_MATRIX */
48
49 RETURN
50 END

  ViewVC Help
Powered by ViewVC 1.1.22