/[MITgcm]/MITgcm/pkg/mnc/mnc_init.F
ViewVC logotype

Contents of /MITgcm/pkg/mnc/mnc_init.F

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


Revision 1.2 - (show annotations) (download)
Tue Jan 6 23:19:27 2004 UTC (20 years, 4 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint52e_post
Changes since 1.1: +8 -2 lines
 o some initial functionality

1 C $Header: /u/u3/gcmpack/MITgcm/pkg/mnc/mnc_init.F,v 1.1 2004/01/05 06:20:08 edhill Exp $
2 C $Name: $
3
4 #include "MNC_OPTIONS.h"
5
6 C==================================================================
7
8 SUBROUTINE MNC_INIT()
9
10 #include "mnc_common.h"
11
12 C Arguments
13
14 C Local Variables
15 integer i
16 character blank*(MNC_MAX_CHAR)
17
18 C Write blanks or zeros to all the name and ID tables
19 DO i = 1,mnc_max_char
20 blank(i:i) = ' ';
21 ENDDO
22 mnc_blank_name(1:MNC_MAX_CHAR) = blank(1:MNC_MAX_CHAR)
23 DO i = 1,mnc_max_id
24 mnc_f_names(i)(1:MNC_MAX_CHAR) = blank(1:MNC_MAX_CHAR)
25 mnc_g_names(i)(1:MNC_MAX_CHAR) = blank(1:MNC_MAX_CHAR)
26 mnc_v_names(i)(1:MNC_MAX_CHAR) = blank(1:MNC_MAX_CHAR)
27 mnc_d_names(i)(1:MNC_MAX_CHAR) = blank(1:MNC_MAX_CHAR)
28 mnc_f_info(i,1) = 0
29 mnc_f_info(i,2) = 0
30 mnc_f_info(i,3) = 0
31 mnc_fv_ids(i,1) = 0
32 ENDDO
33
34 RETURN
35 END
36

  ViewVC Help
Powered by ViewVC 1.1.22