function [t,xn,xs,en,es,scale]=cfc11atmhist05; % CFC11ATMHIST05 Atmospheric history for CFC11 % % [T,XN,XS,EN,ES,SCALE]=CFC11ATMHIST05 Returns columnn vectors of: % T = Time (mid year) % XN = Mixing ratio in N. hemisphere [ppt] % XS = Mixing ratio in S. hemisphere [ppt] % EN = Uncertainty in N. hemisphere mixing ratio [ppt] % ES = Uncertainty in S. hemisphere mixing ratio [ppt] % SCALE = Ascii name of calibration scale % % All concentrations are on the SIO-2005 calibration scale % % Atmospheric lifetime assumed to be 45.0 years % % This file obtained from: % % http://gaslab.ucsd.edu/pub/cfchist/ % http://bluemoon.ucsd.edu/pub/cfchist/ % Created: 07-May-2009 09:29:22 % % Stephen J. Walker % Scripps Institution of Oceanography % Northern Southern % Year Value Error Value Error % [ppt] [ppt] [ppt] [ppt] % (1) (2) (3) (4) (5) % data=[ 1931.5 0.0 0.0 0.0 0.0 1932.5 0.0 0.0 0.0 0.0 1933.5 0.0 0.0 0.0 0.0 1934.5 0.0 0.0 0.0 0.0 1935.5 0.0 0.0 0.0 0.0 1936.5 0.0 0.0 0.0 0.0 1937.5 0.0 0.0 0.0 0.0 1938.5 0.0 0.0 0.0 0.0 1939.5 0.0 0.0 0.0 0.0 1940.5 0.0 0.0 0.0 0.0 1941.5 0.0 0.0 0.0 0.0 1942.5 0.0 0.0 0.0 0.0 1943.5 0.0 0.0 0.0 0.0 1944.5 0.0 0.0 0.0 0.0 1945.5 0.1 0.0 0.0 0.0 1946.5 0.1 0.0 0.1 0.0 1947.5 0.1 0.0 0.1 0.0 1948.5 0.2 0.0 0.1 0.0 1949.5 0.4 0.0 0.2 0.0 1950.5 0.7 0.0 0.4 0.0 1951.5 1.0 0.0 0.7 0.0 1952.5 1.5 0.1 1.0 0.0 1953.5 2.2 0.1 1.5 0.1 1954.5 3.0 0.1 2.2 0.1 1955.5 4.1 0.2 3.0 0.1 1956.5 5.3 0.2 4.0 0.1 1957.5 6.8 0.2 5.2 0.2 1958.5 8.1 0.3 6.5 0.2 1959.5 9.4 0.3 7.8 0.3 1960.5 11.0 0.4 9.1 0.3 1961.5 13.2 0.4 10.8 0.3 1962.5 16.1 0.5 13.0 0.4 1963.5 19.5 0.6 15.7 0.5 1964.5 23.6 0.7 19.1 0.5 1965.5 28.3 0.8 23.0 0.6 1966.5 33.5 0.9 27.5 0.7 1967.5 39.2 1.0 32.5 0.8 1968.5 45.8 1.1 38.1 0.9 1969.5 53.5 1.3 44.6 1.1 1970.5 62.1 1.4 52.0 1.2 1971.5 71.7 1.6 60.4 1.3 1972.5 82.3 1.7 69.6 1.5 1973.5 94.4 1.9 80.0 1.6 1974.5 107.8 2.1 91.7 1.8 1975.5 120.8 2.2 104.2 2.0 1976.5 133.3 2.3 116.5 2.2 1977.5 145.2 2.4 128.7 2.4 1978.5 155.8 2.4 140.1 2.5 1979.5 167.5 1.1 148.0 0.9 1980.5 175.8 1.9 158.5 1.1 1981.5 183.4 2.4 167.0 1.0 1982.5 190.5 2.0 175.2 0.8 1983.5 198.3 1.8 183.6 0.9 1984.5 207.0 1.8 191.5 0.9 1985.5 216.9 2.0 201.0 0.9 1986.5 228.2 1.9 210.3 1.1 1987.5 240.4 2.4 221.1 1.4 1988.5 251.6 1.5 232.1 0.8 1989.5 258.0 1.6 240.9 0.8 1990.5 264.5 1.5 249.8 0.9 1991.5 266.9 1.2 255.4 0.9 1992.5 266.8 1.1 259.5 0.9 1993.5 268.2 0.7 261.2 0.5 1994.5 268.3 1.0 262.4 0.3 1995.5 267.0 0.3 261.9 0.3 1996.5 265.6 0.4 261.6 0.4 1997.5 264.4 0.3 260.7 0.1 1998.5 263.2 0.4 259.7 0.2 1999.5 261.8 0.4 258.6 0.2 2000.5 260.4 0.4 257.0 0.1 2001.5 258.7 0.3 255.7 0.3 2002.5 256.9 0.3 253.8 0.3 2003.5 254.9 0.4 252.0 0.5 2004.5 252.7 0.2 250.1 0.3 2005.5 250.7 0.5 247.9 0.2 2006.5 248.3 0.5 246.1 0.4 2007.5 246.3 0.3 243.8 0.3 2008.5 244.4 0.4 241.9 0.3 ]; t =data(:,1); xn=data(:,2); en=data(:,3); xs=data(:,4); es=data(:,5); scale='SIO-2005'; return