My Project
ice_fileunits.f90
Go to the documentation of this file.
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 !/===========================================================================/
13 ! CVS VERSION INFORMATION
14 ! $Id$
15 ! $Name$
16 ! $Revision$
17 !/===========================================================================/
18 
19 !=======================================================================
20 !BOP
21 !
22 ! !MODULE: ice_fileunits
23 !
24 ! !DESCRIPTION:
25 !
26 ! Defines unit numbers for files opened for reading or writing
27 !
28 ! !REVISION HISTORY:
29 !
30 ! author: Elizabeth C. Hunke
31 ! Fluid Dynamics Group, Los Alamos National Laboratory
32 !
33 ! !INTERFACE:
34 !
36 !
37 ! !USES:
38  use ice_kinds_mod
39  USE control, only: nu_diag => ipt
40 !
41 !EOP
42 !=======================================================================
43 
44  implicit none
45  save
46 
47  ! DAVID Changed to used the same log output file as the fvcom
48  ! main code!
49 
50  integer (kind=int_kind), parameter :: &
51  nu_grid = 81 &! grid file
52  , nu_kmt = 82 &! land mask file
53  , nu_nml = 83 &! namelist input file
54 ! , nu_diag = 6 &! diagnostics output file
55  , nu_forcing = 84 &! forcing data file
56  , nu_dump = 85 &! dump file for restarting
57  , nu_restart = 85 &! restart input file
58  , nu_rst_pointer = 86 ! pointer to latest restart file
59 
60 !=======================================================================
61 
62  end module ice_fileunits
63 
64 !=======================================================================
integer(kind=int_kind), parameter nu_forcing
integer(kind=int_kind), parameter nu_kmt
integer(kind=int_kind), parameter nu_nml
integer(kind=int_kind), parameter nu_dump
integer(kind=int_kind), parameter nu_grid
integer(kind=int_kind), parameter nu_rst_pointer
integer(kind=int_kind), parameter nu_restart
integer ipt
Definition: mod_main.f90:922