Deposition outputΒΆ

If required, the dry and wet depositions are written, cumulated every nsavedepos hours, in dep.nc. This file is in the following the format with NH, NZONAL, NMERID, NVERTI and NS given the relevant values, NDEPOS the total number of species to be deposited (counts two for a species that is both dry and wet deposited), NDEPDRY/WET the number of dry/wet deposited species:

dimensions:
	Time = UNLIMITED ; // (NH currently)
	DateStrLen = 19 ;
	SpStrLen = 20 ;
	Species = NDEPOS ;
	west_east = NZONAL ;
	south_north = NMERID ;
variables:
	float lon(south_north, west_east) ;
		lon:units = "degrees_east" ;
		lon:long_name = "Longitude" ;
	float lat(south_north, west_east) ;
		lat:units = "degrees_north" ;
		lat:long_name = "Latitude" ;
	char species(Species, SpStrLen) ;
	char Times(Time, DateStrLen) ;
	float S1_DRY(Time, south_north, west_east) ;
		S1_DRY:units = "molecules/cm2" ;
        float S2_DRY(Time, south_north, west_east) ;
		S2_DRY:units = "molecules/cm2" ;
        .
        .
        .
	double SNDEPDRY(Time, south_north, west_east) ;
		SNDEPDRY:units = "molecule/cm2" ;
	float S1_WET(Time, south_north, west_east) ;
		S1_WET:units = "molecules/cm2" ;
        float S2_WET(Time, south_north, west_east) ;
		S2_WET:units = "molecules/cm2" ;
        .
        .
        .
	double SNDEPWET(Time, south_north, west_east) ;
		SNDEPWET:units = "molecule/cm2" ;