source: codes/icosagcm/branches/SATURN_DYNAMICO/LMDZ.COMMON/libf/phystd/def_var.F90 @ 224

Last change on this file since 224 was 222, checked in by ymipsl, 10 years ago

Creating temporary dynamico/lmdz/saturn branche

YM

File size: 2.1 KB
Line 
1subroutine def_var(nid,name,title,units,nbdim,dimids,nvarid,ierr)
2
3! This subroutine defines variable 'name' in a (pre-existing and opened)
4! NetCDF file (known from its NetCDF ID 'nid').
5! The number of dimensions 'nbdim' of the variable, as well as the IDs of
6! corresponding dimensions must be set (in array 'dimids').
7! Upon successfull definition of the variable, 'nvarid' contains the
8! NetCDF ID of the variable.
9! The variables' attributes 'title' (Note that 'long_name' would be more
10! appropriate) and 'units' are also set.
11
12implicit none
13
14#include "netcdf.inc"
15
16integer,intent(in) :: nid ! NetCDF file ID
17character(len=*),intent(in) :: name ! the variable's name
18character(len=*),intent(in) :: title ! 'title' attribute of variable
19character(len=*),intent(in) :: units ! 'units' attribute of variable
20integer,intent(in) :: nbdim ! number of dimensions of the variable
21integer,dimension(nbdim),intent(in) :: dimids ! NetCDF IDs of the dimensions
22                                              ! the variable is defined along
23integer,intent(out) :: nvarid ! NetCDF ID of the variable
24integer,intent(out) :: ierr ! returned NetCDF staus code
25
26! 1. Switch to NetCDF define mode
27ierr=NF_REDEF(nid)
28
29!print*,'in def_var.F90, dimids='
30!print*,dimids
31
32! 2. Define the variable
33#ifdef NC_DOUBLE
34ierr = NF_DEF_VAR (nid,adjustl(name),NF_DOUBLE,nbdim,dimids,nvarid)
35#else
36ierr = NF_DEF_VAR (nid,adjustl(name),NF_FLOAT,nbdim,dimids,nvarid)
37#endif
38if(ierr/=NF_NOERR) then
39   write(*,*) "def_var: Failed defining variable "//trim(name)
40   write(*,*) NF_STRERROR(ierr)
41   stop ""
42endif
43
44! 3. Write attributes
45ierr=NF_PUT_ATT_TEXT(nid,nvarid,"title",&
46                     len_trim(adjustl(title)),adjustl(title))
47if(ierr/=NF_NOERR) then
48   write(*,*) "def_var: Failed writing title attribute for "//trim(name)
49   write(*,*) NF_STRERROR(ierr)
50   stop ""
51endif
52
53ierr=NF_PUT_ATT_TEXT(nid,nvarid,"units",&
54                     len_trim(adjustl(units)),adjustl(units))
55if(ierr/=NF_NOERR) then
56   write(*,*) "def_var: Failed writing units attribute for "//trim(name)
57   write(*,*) NF_STRERROR(ierr)
58   stop ""
59endif
60
61! 4. Switch out of NetCDF define mode
62ierr = NF_ENDDEF(nid)
63
64end
Note: See TracBrowser for help on using the repository browser.