source: LMDZ6/trunk/tools/netcdf95/netcdf95.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: 783 bytes
Line 
1module netcdf95
2
3  ! Author: Lionel GUEZ
4
5  use nf95_abort_m
6  use nf95_close_m
7  use nf95_constants
8  use nf95_copy_att_m
9  use nf95_create_m
10  use nf95_create_single_m
11  use nf95_def_dim_m
12  use nf95_def_var_m
13  use nf95_enddef_m
14  use nf95_find_coord_m
15  use nf95_get_att_m
16  use nf95_get_missing_m
17  use nf95_get_var_m
18  use nf95_gw_var_m
19  use nf95_inq_dimid_m
20  use nf95_inq_file_ncid_m
21  use nf95_inq_grp_full_ncid_m
22  use nf95_inq_grpname_m
23  use nf95_inq_grpname_full_m
24  use nf95_inq_grp_parent_m
25  use nf95_inq_grps_m
26  use nf95_inq_varid_m
27  use nf95_inquire_attribute_m
28  use nf95_inquire_dimension_m
29  use nf95_inquire_m
30  use nf95_inquire_variable_m
31  use nf95_open_m
32  use nf95_put_att_m
33  use nf95_put_var_m
34  use nf95_redef_m
35  use nf95_sync_m
36
37end module netcdf95
Note: See TracBrowser for help on using the repository browser.