/[MITgcm]/MITgcm/pkg/ptracers/ptracers_mnc_init.F
ViewVC logotype

Contents of /MITgcm/pkg/ptracers/ptracers_mnc_init.F

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


Revision 1.4 - (show annotations) (download)
Sun Oct 10 06:08:49 2004 UTC (19 years, 8 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint58l_post, checkpoint57t_post, checkpoint57o_post, checkpoint58e_post, checkpoint57v_post, checkpoint58u_post, checkpoint58w_post, checkpoint57m_post, checkpoint57s_post, checkpoint57k_post, checkpoint57d_post, checkpoint57g_post, checkpoint57b_post, checkpoint57c_pre, checkpoint58r_post, checkpoint55j_post, checkpoint56b_post, checkpoint57i_post, checkpoint57y_post, checkpoint57e_post, checkpoint55h_post, checkpoint58n_post, checkpoint58x_post, checkpoint57g_pre, checkpoint58t_post, checkpoint58h_post, checkpoint56c_post, checkpoint57y_pre, checkpoint57f_pre, checkpoint57a_post, checkpoint58q_post, checkpoint55g_post, checkpoint58j_post, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint55f_post, checkpoint59c, checkpoint59b, checkpoint59i, checkpoint59h, checkpoint57r_post, checkpoint59, checkpoint58, checkpoint57a_pre, checkpoint55i_post, checkpoint57, checkpoint56, eckpoint57e_pre, checkpoint57h_done, checkpoint58f_post, checkpoint57x_post, checkpoint57n_post, checkpoint58d_post, checkpoint58c_post, checkpoint57w_post, checkpoint57p_post, checkpint57u_post, checkpoint57f_post, checkpoint58a_post, checkpoint58i_post, checkpoint57q_post, checkpoint58g_post, checkpoint58o_post, checkpoint57z_post, checkpoint57c_post, checkpoint58y_post, checkpoint58k_post, checkpoint58v_post, checkpoint58s_post, checkpoint58p_post, checkpoint57j_post, checkpoint58b_post, checkpoint57h_pre, checkpoint58m_post, checkpoint57l_post, checkpoint57h_post, checkpoint56a_post
Changes since 1.3: +1 -4 lines
 o move useMNC and related runtime switches to PARAMS.h

1 C $Header: /u/gcmpack/MITgcm/pkg/ptracers/ptracers_mnc_init.F,v 1.3 2004/09/23 03:28:42 edhill Exp $
2 C $Name: $
3
4 #include "PTRACERS_OPTIONS.h"
5
6 C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
7 CBOP
8 C !ROUTINE:
9
10 C !INTERFACE:
11 SUBROUTINE PTRACERS_MNC_INIT( myThid )
12
13 C !DESCRIPTION:
14 C Initialize PTRACERS parameters, read in data.ptracers
15
16 C !USES:
17 IMPLICIT NONE
18 #include "SIZE.h"
19 #include "EEPARAMS.h"
20 #include "PTRACERS_SIZE.h"
21 #include "PTRACERS.h"
22 #include "PARAMS.h"
23
24 C !INPUT PARAMETERS:
25 INTEGER myThid
26 CEOP
27
28 #ifdef ALLOW_PTRACERS
29 #ifdef ALLOW_MNC
30
31 C !LOCAL VARIABLES:
32 INTEGER ii, jj, ilnb
33 character*(80) name
34 character*(MAX_LEN_MBUF) msgbuf
35
36 C Functions
37 integer ILNBLNK
38
39 IF (useMNC) THEN
40 DO ii = 1,PTRACERS_numInUse
41
42 DO jj = 1,80
43 name(jj:jj) = ' '
44 ENDDO
45
46 C Create the tracer
47 ilnb = ILNBLNK(PTRACERS_names(ii))
48 IF (ilnb .LT. 1) THEN
49 write(msgbuf,'(2a,i3,2a)') 'PTRACERS_MNC_INIT ERROR: ',
50 & 'PTRACERS_names(',ii,') is blank--please name it in',
51 & ' ''data.ptracers'''
52 CALL print_error(msgbuf, mythid)
53 stop 'ABNORMAL END: S/R PTRACERS_MNC_INIT'
54 ENDIF
55 CALL MNC_CW_ADD_VNAME(
56 & PTRACERS_names(ii),'Cen_xy_Hn__C__t',4,5,myThid)
57 WRITE(name,'(a,a)') 'surf_',PTRACERS_names(ii)(1:ilnb)
58 CALL MNC_CW_ADD_VNAME(name,'Cen_xy_Hn__-__t',3,4,myThid)
59
60 C Add the long_name attribute if its defined
61 ilnb = ILNBLNK(PTRACERS_long_names(ii))
62 IF (ilnb .GT. 0) THEN
63 CALL MNC_CW_ADD_VATTR_TEXT(PTRACERS_names(ii),
64 & 'long_name',PTRACERS_long_names(ii),myThid)
65 ENDIF
66
67 C Add the units attribute if its defined
68 ilnb = ILNBLNK(PTRACERS_units(ii))
69 IF (ilnb .GT. 0) THEN
70 CALL MNC_CW_ADD_VATTR_TEXT(PTRACERS_names(ii),'units',
71 & PTRACERS_units(ii),myThid)
72 ENDIF
73
74 ENDDO
75
76 ENDIF
77 #endif /* ALLOW_MNC */
78 #endif /* ALLOW_PTRACERS */
79
80 RETURN
81 END
82

  ViewVC Help
Powered by ViewVC 1.1.22