Input files for konrad aerosol module
收藏资源简介:
# Input files for konrad aerosol module The 1D RCE model konrad is available at<br> https://github.com/atmtools/konrad/ These are alternative input files with<br> aerosol radiative properties. They were created and processed by<br> Clarissa Kroll, post-processed by Moritz<br> Günther. There is always one file for each month.<br> Extinction in the shortwave (ext_sw),<br> extinction in the longwave (ext_lw),<br> shortwave assymetry factor (g_sw) and<br> shortwave single scattering albedo (omega_sw)<br> must each be specified to konrad, e.g. ```python<br> import konrad<br> aerosol = konrad.aerosol.VolcanoAerosol(<br> ...,<br> file_ext_lw="CMIP6/CMIP6_ext_lw_1991-9.nc",<br> file_ext_sw="CMIP6/CMIP6_ext_sw_1991-9.nc",<br> file_g_sw="CMIP6/CMIP6_g_sw_1991-9.nc",<br> file_omega_sw="CMIP6/CMIP6_omega_sw_1991-9.nc",<br> ...,<br> )<br> ``` ## CMIP6<br> - based on an updated version of the Pinatubo aerosol data set (PADS)<br> Stenchikov et al., 1998, DOI:10.1029/98JD00693<br> Driscoll et al., 2012, DOI: 10.1029/2012JD017607<br> Schmidt et al., 2013, DOI: 10.1002/jame.20014<br> - area-averaged over 23 N to 23 S ## EVA<br> - created using the Easy Volcanic Aerosol idealized forcing generator<br> (Toohey et al. 2016, GMD, DOI:10.5194/gmd-9-4049-2016<br> - inputs to EVA were:<br> - eruption mass (in TgS) specified in file name<br> - eruption latitude: 0 degrees<br> - eruption date: June 1991<br> - area-averaged over 23 N to 23 S



