mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
61 lines
1.8 KiB
Plaintext
61 lines
1.8 KiB
Plaintext
netcdf NCAR_Abiotic_equil {
|
|
dimensions:
|
|
time = 12 ;
|
|
depth = 25 ;
|
|
y = 115 ;
|
|
x = 100 ;
|
|
variables:
|
|
float time(time) ;
|
|
time:long_name = "seasonal phase" ;
|
|
time:units = "calendar_month as %m.%f" ;
|
|
time:modulo = 12.f ;
|
|
time:topology = "circular" ;
|
|
time:nb_seconds_per_year = 31536000 ;
|
|
time:nb_timesteps_per_year = 8760 ;
|
|
float DIC(time, depth, y, x) ;
|
|
DIC:long_name = "Concentration of DIC" ;
|
|
DIC:units = "mol/m^3" ;
|
|
DIC:missing_value = -1.e+34f ;
|
|
float DIC14(time, depth, y, x) ;
|
|
DIC14:long_name = "Concentration of DIC14" ;
|
|
DIC14:units = "mol/m^3" ;
|
|
DIC14:missing_value = -1.e+34f ;
|
|
float Alk(time, depth, y, x) ;
|
|
Alk:long_name = "Concentration of Total Alkalinity" ;
|
|
Alk:units = "eq/m^3" ;
|
|
Alk:missing_value = -1.e+34f ;
|
|
float pCO2surf(time, y, x) ;
|
|
pCO2surf:long_name = "Surface ocean pCO2" ;
|
|
pCO2surf:units = "uatm" ;
|
|
pCO2surf:missing_value = -1.e+34f ;
|
|
float dpCO2(time, y, x) ;
|
|
dpCO2:long_name = "Delta pCO2" ;
|
|
dpCO2:units = "uatm" ;
|
|
dpCO2:missing_value = -1.e+34f ;
|
|
float F(time, y, x) ;
|
|
F:long_name = "Mean Gas Flux of DIC" ;
|
|
F:units = "mol/(m^2*s)" ;
|
|
F:missing_value = -1.e+34f ;
|
|
float F14(time, y, x) ;
|
|
F14:long_name = "Mean Gas Flux of DIC14" ;
|
|
F14:units = "mol/(m^2*s)" ;
|
|
F14:missing_value = -1.e+34f ;
|
|
float Fv(time, y, x) ;
|
|
Fv:long_name = "Mean Virtual Gas Flux of DIC" ;
|
|
Fv:units = "mol/(m^2*s)" ;
|
|
Fv:missing_value = -1.e+34f ;
|
|
float Fv14(time, y, x) ;
|
|
Fv14:long_name = "Mean Virtual Gas Flux of DIC14" ;
|
|
Fv14:units = "mol/(m^2*s)" ;
|
|
Fv14:missing_value = -1.e+34f ;
|
|
|
|
// global attributes:
|
|
:output_routine = "$RCSfile: NCAR_Abiotic_equil.nc.hdr,v $$Revision: 1.1 $" ;
|
|
:Conventions = "GDT 1.2" ;
|
|
:file_name = "NCAR_Abiotic_equil.nc" ;
|
|
:associate_file = "NCAR_grid.nc" ;
|
|
:project = "OCMIP" ;
|
|
:institution = "NCAR" ;
|
|
:production = "NCOM" ;
|
|
}
|