ContentsIndexReferenceHome
PreviousUpNext
GADSAtmos
MATLAB
out = GADSAtmos(h,model,lambda,site, ...
                   [BLalt],[season],[TOD],[percentile])
Description

Generates absorption and scattering coefficients as well as temperature and pressure using the Global Aerosol Data Set (GADS) and LEEDR/ExPERT meteorological data. It will generate the proper structure for use in LEEDRAtmos based on the provided inputs.

Parameters
Parameters 
Description 
h [vector] 
Altitude AGL (m). 
model [string/cell] 
'A' for absorption, 'S' for scattering, 'E' for total extinction, 'T' for temperature, 'P' for pressure, 'R' for Relative humidity, 'D' for dewpoint, 'AA' for aerosol absorption, 'AS' for aerosol scattering, 'MA' for molecular absorption, and 'MS' for molecular scattering. Can be a cell array of models in which case the output can be a single matrix with the appropriate data or each model can be output into separate variables, see the examples below. If passed in as [], output will be a structure with all model data. 
lambda [string] 
Identifier for desired laser wavelength. 1 - '355', 0.355 microns, 2 - '380', 0.380 microns, 3 - '400', 0.400 microns, 4 - '532', 0.532 microns, 5 - '525', 0.525 microns, 6 - '550', 0.550 microns, 7 - '620', 0.620 microns, 8 - '650', 0.650 microns, 9 - '670', 0.670 microns, 10 - '680', 0.680 microns, 11 - '690', 0.690 microns, 12 - '1000', 1.000 microns, 13 - '1030', 1.030 microns, 14 - '1045', 1.045 microns, 15 - '1047', 1.047 microns, 16 - '1054', 1.054 microns, 17 - '1064', 1.0642 microns, 18 - '1315', 1.31525 microns, 19 - '1586', 1.586 microns, 20 - '1625', 1.625 microns, 21 - '2141', 2.141 microns, 22 - '3800', 3.800 microns, 23 - '4636', 4.636 microns, 24 - '9300', 9.300 microns, 25 - '10600', 10.600 microns 
site [scalar] 
Site identifier. There are more than 500 sites in the database. Type LEEDRSites for a listing. 
BLalt [scalar] 
(Optional) Altitude of the boundary layer, defaults to 1524 for daily avg or season/time dependent values (m) 
season [scalar] 
(Optional) Index to season: 1 - summer (default), 2 - winter 
TOD [scalar] 
(Optional) Index to time of day: 1 - 00:00 to 03:00, 2 - 03:00 to 06:00, 3 - 06:00 to 09:00, 4 - 09:00 to 12:00, 5 - 12:00 to 15:00, 6 - 15:00 to 18:00, 7 - 18:00 to 21:00, 8 - 21:00 to 00:00, 9 - Daily average (default) 
percentile [scalar] 
(Optional) Index to atmosphere percentile: 1 - 1 %, 2 - 5 %, 3 - 10 %, 4 - 20 %, 5 - 50 % (default), 6 - 80 %, 7 - 90 %, 8 - 95 %, 9 - 99 % 
Return Values
Return Values 
Description 
out [vector] 
Absorption or scattering coefficient (1/m), temperature (K), pressure (Pa), rel humidity (%), or dewpoint (K) 
Examples

>> h = linspace(10,1000,10)'; 

>> Abs = GADSAtmos(h,'A','1315',1,1524,1,9,5) 

  • Compute absorption for the specified inputs - must have p-code or m-code version of LEEDR on the path
>> [Abs Temp] = GADSAtmos(h,{'A' 'T'},'1315',1,1524,1,9,5) 

  • Compute absorption and temperature for the specified inputs
>> [MAbs MScat] = GADSAtmos(h,{'MA' 'MS'},'1315',1,1524,1,9,5) 

  • Return molecular absorption and scattering from the computed LEEDR profile
>> data = GADSAtmos(h,{'A' 'T'},'1315',1,1524,1,9,5) 

  • Returns a nx2 matrix with absorption in column 1 and temperature in column 2
>> data = GADSAtmos(h,[],'1315',1,1524,1,9,5) 

  • Returns a structure with all of the models (including a breakout of aerosol and molecular absorption and scattering)
>> Atm = AtmStruct(GeomStruct,100,'Abs','GADSAtmos','A','1315',1) 

  • Atm structure using the ExPERT data
 

See Also
Group
Made with Doc-O-Matic.
Copyright (c) 2009. All rights reserved.
What do you think about this topic? Send feedback!