/[MITgcm]/MITgcm/pkg/mdsio/mdsio_write_rl_vec.F
ViewVC logotype

Annotation of /MITgcm/pkg/mdsio/mdsio_write_rl_vec.F

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


Revision 1.1 - (hide annotations) (download)
Tue Mar 6 15:28:54 2001 UTC (23 years, 2 months ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint40pre3, checkpoint40pre2, checkpoint40pre1, checkpoint40pre7, checkpoint40pre6, checkpoint40pre9, checkpoint40pre8, checkpoint38, checkpoint40pre4, pre38tag1, c37_adj, pre38-close, checkpoint39, checkpoint37, checkpoint40pre5
Branch point for: pre38
Packaged mdsio.

Note: using a "feature" of genmake to keep original mdsio.F and mdsio_gl.F
in place during testing of mdsio package. To use original code simply
use genmake -disable=mdsio.
                                             Enjoy.

1 adcroft 1.1 C $Header: $
2     C $Name: $
3    
4     #include "MDSIO_OPTIONS.h"
5    
6     subroutine MDS_WRITE_RL_VEC( dUnit, irec, narr, arr, mythid )
7     C IN:
8     C dunit integer - 'Opened' I/O channel
9     C irec integer - record number to write
10     C narr integer - dimension off array "arr"
11     C arr _RL - model tiled vector
12     C mythid integer - thread id
13     C
14     C Created: 03/29/99 eckert@mit.edu + adcroft@mit.edu
15    
16     implicit none
17    
18     #include "EEPARAMS.h"
19    
20     C Arguments
21     integer dUnit
22     integer irec
23     integer narr
24     integer mythid
25     _RL arr(narr)
26     C Local
27     character*(max_len_mbuf) msgbuf
28     C ------------------------------------------------------------------
29     write(msgbuf,'(a,i9.8,2x,i9.8)')
30     & ' MDS_WRITE_RL_VEC: irec = ',irec,narr
31     call print_message( msgbuf, standardmessageunit,
32     & SQUEEZE_RIGHT , mythid)
33     write(dUnit,rec=irec) arr
34     C ------------------------------------------------------------------
35     return
36     end

  ViewVC Help
Powered by ViewVC 1.1.22