source: LMDZ6/trunk/tools/netcdf95/nf95_constants.f90 @ 4918

Last change on this file since 4918 was 4918, checked in by Laurent Fairhead, 4 weeks ago

Reintegrated NetCDF95 in LMDZ so that it is compiled and made available by the makelmdz_fcm script.
The makelmdz_fcm creates the libnetcdf95 library and copies it in the tools/netcdf/lib directory, copying
the mod files in the tools/netcdf/include library.

File size: 580 bytes
Line 
1module nf95_constants
2
3  use nc_constants, only: NC_NOERR, NC_ENOGRP
4
5  implicit none
6
7  Integer, Parameter:: Nf95_NOERR = NC_NOERR
8  Integer, Parameter:: Nf95_ENOGRP = NC_ENOGRP
9  integer, parameter:: nf95_nowrite = 0, nf95_clobber = 0, nf95_global = 0
10  integer, parameter:: nf95_write = 1
11  integer, parameter:: nf95_unlimited = 0
12  real, parameter:: nf95_fill_real = 9.9692099683868690e+36
13  integer, parameter:: nf95_max_name = 256, nf95_float = 5, nf95_double = 6
14  integer, parameter:: nf95_fill_int = - 2147483647
15
16  private NC_NOERR, NC_ENOGRP
17
18end module nf95_constants
Note: See TracBrowser for help on using the repository browser.