├── .gitattributes ├── .gitignore ├── CLIMA ├── CONVEC │ ├── convec.f │ ├── readme.txt │ ├── relhum.f │ ├── satco2.f │ └── satrat.f ├── COUPLE │ ├── input_interp.f │ ├── output_photo.f │ ├── readme.txt │ ├── translatem.f │ ├── translatem_INPUT.f │ └── translatem_good.f ├── DATA │ ├── BIG_DATAFILE.DAT │ ├── C2H6_Jacob.dat │ ├── CO2_tables.pdat │ ├── FinalCIAcoeffs2.dat │ ├── GJ581.txt │ ├── H2CIA_TABLE.pdat │ ├── H2N2CIA_TABLE.pdat │ ├── H2O_tables.pdat │ ├── IR_BPS.dat │ ├── M5V.pdat │ ├── NEWHITRAN_ir_55_H2O.dat │ ├── O2O2CIA_TABLE.pdat │ ├── P_T │ ├── Ramses_HITEMP_solar_38_H2O.dat │ ├── Ramses_HITRAN_ir_55_CO2.dat │ ├── Ramses_HITRAN_solar_38_CO2.dat │ ├── SOLAR_BPS.dat │ ├── STELLAR_SPECTRA.pdat │ ├── STELLAR_SPECTRABTSettl.pdat │ ├── STELLAR_SPECTRA_new.csv │ ├── STELLAR_SPECTRA_new.pdat │ ├── STELLAR_SPECTRA_update.pdat │ ├── STELLAR_SPECTRAold.pdat │ ├── Wolf_HITRAN2016_ir_55_CO2.dat │ ├── Wolf_HITRAN2016_ir_55_H2O.dat │ ├── Wolf_HITRAN2016_solar_38_CO2.dat │ ├── Wolf_HITRAN2016_solar_38_H2O.dat │ ├── ch4_kcoeffs.out │ ├── fluxesKGF_surf.pdat │ ├── ir_expsums.pdat │ ├── irtotal.DAT │ ├── irtotalfract.DAT │ ├── irtotalfract1.DAT │ ├── irtotalfract2.DAT │ ├── irtotalfract3.DAT │ ├── irtotalfract4.DAT │ ├── irtotalfract_gk.DAT │ ├── irtotalfract_kh.DAT │ ├── irtotalfract_kmt.DAT │ ├── muscles_stars.dat │ ├── nearIR_expsums.pdat │ ├── read38O2.f90 │ ├── readk.f90 │ ├── readme.txt │ ├── solar_data_38.pdat │ ├── soltotal.DAT │ ├── soltotalfract.DAT │ ├── soltotalfract1.DAT │ ├── soltotalfract2.DAT │ ├── soltotalfract3.DAT │ ├── soltotalfract4.DAT │ ├── soltotalfract_gk.DAT │ ├── soltotalfract_kh.DAT │ ├── soltotalfract_kmt.DAT │ └── stellar_spectra.f90 ├── INCLUDE │ └── header.inc ├── IO │ ├── README │ ├── TEMPLATES │ │ ├── Archean+haze │ │ │ ├── coupling_params.out │ │ │ ├── fromClima2Photo.dat │ │ │ ├── fromPhoto2Clima.dat │ │ │ ├── hcaer.climaout.out │ │ │ ├── hcaer.photoout.out │ │ │ ├── input_clima.dat │ │ │ ├── mixing_ratios.dat │ │ │ └── time_frak_photo.out │ │ ├── ArcheanSORG+haze │ │ │ ├── coupling_params.out │ │ │ ├── fromClima2Photo.dat │ │ │ ├── fromPhoto2Clima.dat │ │ │ ├── hcaer.climaout.out │ │ │ ├── hcaer.photoout.out │ │ │ ├── input_clima.dat │ │ │ ├── mixing_ratios.dat │ │ │ └── time_frak_photo.out │ │ ├── ModernEarthComplex │ │ │ ├── coupling_params.out │ │ │ ├── coupling_params_works.out │ │ │ ├── fromClima2Photo.dat │ │ │ ├── fromPhoto2Clima.dat │ │ │ ├── hcaer.climaout.out │ │ │ ├── hcaer.photoout.out │ │ │ ├── input_clima.dat │ │ │ └── mixing_ratios.dat │ │ └── ModernEarthSimple │ │ │ ├── coupling_params.out │ │ │ ├── coupling_params_works.out │ │ │ ├── fromClima2Photo.dat │ │ │ ├── fromPhoto2Clima.dat │ │ │ ├── hcaer.climaout.out │ │ │ ├── hcaer.photoout.out │ │ │ ├── input_clima.dat │ │ │ └── mixing_ratios.dat │ ├── hcaer.out │ ├── hcaer_nohaze.out │ ├── mixing_ratios.dat │ └── weight_factors.txt ├── OBJECT_CLIMA │ └── placeholder ├── OBJECT_RRTM │ └── placeholder ├── PLUME │ ├── complume │ ├── comsatplume │ ├── plume.f │ ├── resetr.f │ ├── scopy.f │ ├── stabco.f │ ├── vinterp.f │ └── zero.f ├── PRTCL │ ├── aerabsdata.f │ ├── gridaer.f │ ├── interpar1.f │ └── readme.txt ├── RADTRANS │ ├── delta2str.f │ ├── delta2strir.f │ ├── delta2strirmike.f │ ├── gascon.f │ ├── gascon_Gray.f │ ├── gasconold.f │ ├── gaussian integration with source function │ │ ├── ir.f │ │ └── sourceir.f │ ├── ir.f │ ├── ir_Gray.f │ ├── ir_ethane.f │ ├── ir_no_CH4.f │ ├── irm.f │ ├── irme.f │ ├── irstuff │ │ └── ir_newCIA.f │ ├── planck.f │ ├── rayley.f │ ├── readme.txt │ ├── solar.f │ ├── solar_no_CH4.f │ ├── solar_with_CH4.f │ ├── solarm.f │ ├── solarmox.f │ ├── solarox.f │ ├── tridag.f │ └── tridag.f90 ├── RRTM │ ├── cldprop.f │ ├── extra.f │ ├── k_g.f │ ├── k_gB01.f │ ├── k_gB02.f │ ├── k_gB03.f │ ├── k_gB04.f │ ├── k_gB05.f │ ├── k_gB06.f │ ├── k_gB07.f │ ├── k_gB08.f │ ├── k_gB09.f │ ├── k_gB10.f │ ├── k_gB11.f │ ├── k_gB12.f │ ├── k_gB13.f │ ├── k_gB14.f │ ├── k_gB15.f │ ├── k_gB16.f │ ├── readme.txt │ ├── rrtatm.f │ ├── rrtm.f │ ├── rtr.f │ ├── rtrcld.f │ ├── rtrcldmr.f │ ├── rtreg.f │ ├── rtregcld.f │ ├── rtregcldmr.f │ ├── s.util_cray.f │ ├── setcoef.f │ ├── taumol.f │ ├── util_cray.f │ ├── util_linux_pgi.f │ ├── util_osx.f │ └── util_sun.f ├── SETUP │ ├── choose_star.f │ ├── grid.f │ ├── grid_Gray.f │ ├── grid_compare.f │ ├── interco2cia2.f │ ├── interp.f │ ├── interpco2cia.f │ ├── interph2h2cia.f │ ├── interph2n2cia.f │ ├── interpir.f │ ├── interpo2cia.f │ ├── interpozone.f │ ├── interpsolar.f │ ├── irexpsums.f │ ├── irexpsumsold.f │ ├── ozone.f │ ├── pickstar.f │ ├── profile.f │ ├── readBTSettl_NEW.m │ ├── readme.txt │ ├── readsol.f │ └── stellar_spectraNEW.f90 ├── STAR_Mass_Teff_logG │ ├── HZ_periods.f90 │ ├── IHZ_Moist.f90 │ ├── IHZ_Seff_fit.f90 │ ├── IHZ_recentVenus.f90 │ ├── IHZ_runaway.f90 │ ├── OHZ_CO2condense.f90 │ ├── OHZ_EarlyMars.f90 │ ├── OHZ_MaxGr.f90 │ ├── SelsisHabzone.f90 │ ├── a.out │ ├── baraffe.txt │ ├── curvefit_ihz │ ├── dartmouth.txt │ ├── files │ │ ├── Habflux.m │ │ ├── Selsis.f90 │ │ ├── analytical_HZ_distance.f90 │ │ ├── analytical_HZ_flux.f90 │ │ ├── chz.f90 │ │ ├── gnuplot_Nader │ │ ├── sun │ │ └── tidal_lock.f90 │ ├── gnuplot_HZ │ ├── gnuplot_baraffe_dartmouth │ ├── gnuplot_compareSelsis │ ├── observed.m │ ├── oldfiles │ │ ├── OHZ_Seff_fit.f90 │ │ ├── fit_seff_teff_2AU.f90 │ │ ├── fit_seff_teff_ihz.f90 │ │ ├── fit_seff_teff_ihz_update.f90 │ │ ├── fit_seff_teff_mars.f90 │ │ ├── fit_seff_teff_ohz.f90 │ │ ├── fit_seff_teff_runaway.f90 │ │ ├── fit_seff_teff_runaway_update.f90 │ │ ├── fit_seff_teff_venus.f90 │ │ └── fit_seff_teff_venus_update.f90 │ ├── ps_files │ │ ├── Shawn_plot.ps │ │ ├── curvefit_ihz.pdf │ │ └── curvefit_ihz.ps │ ├── radial_vel │ ├── radial_vel.f90 │ ├── read_baraffe.f90 │ ├── read_dartmouth.f90 │ ├── recentvenusearlymars.f90 │ ├── star_lum_highmass.f90 │ ├── star_lum_lowmass.f90 │ ├── star_mass_highmass.f90 │ ├── star_mass_lowmass.f90 │ ├── t1 │ ├── t2 │ └── thing1 ├── STEAM │ └── steam.f └── copy.py ├── COUPLE └── .gitignore ├── ClimaMain.f ├── ClimaMake ├── DOCUMENTS ├── README_GitBranchManagement ├── add.species └── todo.txt ├── INCLUDE ├── comCLIM.inc ├── comDIAG.inc ├── comFLUXPHOTO.inc ├── comFLXLOW.inc ├── comH2BALANCE.inc ├── comPHOT.inc └── comSTR.inc ├── IO ├── PLANET.dat ├── clima_allout.tab ├── mixing_ratios.dat ├── output_couple.dat ├── parameters.inc └── photchem_allout.dat ├── OBJECT_COUPLE └── placeholder ├── PHOTOCHEM ├── DATA │ ├── FLUX │ │ ├── F2V_units.txt │ │ ├── GJ876_atlas_units_grid.dat │ │ ├── HD40307_K2.5V_units.txt │ │ ├── HD85512_K6V_units.txt │ │ ├── HD97658_K1V_units.txt │ │ ├── K2V_units_fixed.txt │ │ ├── M0V.txt │ │ ├── M5V_units.txt │ │ ├── M8_active_photogrid.txt │ │ ├── Proxima_units_rev1.txt │ │ ├── T3200_units.txt │ │ ├── TRAPPIST-1.txt │ │ ├── adleo_20_units_fixed.txt │ │ ├── adleo_dat_units_fixed.txt │ │ ├── composite.atl1_1 │ │ ├── dMV.flx │ │ ├── gj876_77_units.txt │ │ ├── gj876_78_units.txt │ │ ├── gl581_scaled_revised.txt │ │ ├── kuruczflux.dat │ │ ├── m3300phoenix_76800nl.txt │ │ ├── muscles_gj1214.txt │ │ ├── muscles_gj176.txt │ │ ├── muscles_gj436.txt │ │ ├── muscles_gj551.txt │ │ ├── muscles_gj581.txt │ │ ├── muscles_gj667c.txt │ │ ├── muscles_gj832.txt │ │ ├── muscles_gj876.txt │ │ ├── muscles_hd40307.txt │ │ ├── muscles_hd85512.txt │ │ ├── muscles_hd97658.txt │ │ ├── muscles_v-eps-eri.txt │ │ ├── old_caution │ │ │ ├── ADLeo.dat │ │ │ ├── F2V.dat │ │ │ ├── GJ876_atlas_units.dat │ │ │ ├── K2V.dat │ │ │ ├── K2V_units.txt │ │ │ ├── K2Vnew.dat │ │ │ ├── M5V_units2.txt │ │ │ ├── T3200.dat │ │ │ ├── adleo_20_units.txt │ │ │ ├── adleo_dat.txt │ │ │ ├── adleo_dat_units.txt │ │ │ └── readme.txt │ │ ├── placeholder_units.txt │ │ ├── totalwasp12_G0V_forAtmos.dat │ │ └── zahnle.flx │ ├── GRIDS │ │ ├── 0.5A.grid │ │ ├── alinc.grid │ │ ├── claire.grid │ │ ├── isaksen.grid │ │ ├── kockarts.grid │ │ ├── makegrid.pro │ │ ├── zahnle.grid │ │ └── zahnle2.grid │ ├── INCLUDE │ │ ├── ABLOK.inc │ │ ├── AERBLK.inc │ │ ├── BBLOK.inc │ │ ├── CBLOK.inc │ │ ├── DBLOK.inc │ │ ├── EBLOK.inc │ │ ├── FBLOK.inc │ │ ├── GBLOK.inc │ │ ├── JBLOK.inc │ │ ├── LTBLOK.inc │ │ ├── MBLOK.inc │ │ ├── MFBLOK.inc │ │ ├── NBLOK.inc │ │ ├── PBLOK.inc │ │ ├── PHOTABLOK.inc │ │ ├── QBLOK.inc │ │ ├── RBLOK.inc │ │ ├── RRATS.inc │ │ ├── SATBLK.inc │ │ ├── SBLOK.inc │ │ ├── SULBLK.inc │ │ ├── WBLOK.inc │ │ ├── ZBLOK.inc │ │ ├── comPRESS1.inc │ │ └── parNZ.inc │ ├── MIE │ │ ├── f │ │ │ ├── fractopts0.001um.txt │ │ │ ├── fractopts0.002um.txt │ │ │ ├── fractopts0.003um.txt │ │ │ ├── fractopts0.004um.txt │ │ │ ├── fractopts0.005um.txt │ │ │ ├── fractopts0.006um.txt │ │ │ ├── fractopts0.007um.txt │ │ │ ├── fractopts0.008um.txt │ │ │ ├── fractopts0.009um.txt │ │ │ ├── fractopts0.010um.txt │ │ │ ├── fractopts0.030um.txt │ │ │ ├── fractopts0.050um.txt │ │ │ ├── fractopts0.070um.txt │ │ │ ├── fractopts0.100um.txt │ │ │ ├── fractopts0.130um.txt │ │ │ ├── fractopts0.150um.txt │ │ │ ├── fractopts0.170um.txt │ │ │ ├── fractopts0.200um.txt │ │ │ ├── fractopts0.230um.txt │ │ │ ├── fractopts0.250um.txt │ │ │ ├── fractopts0.270um.txt │ │ │ ├── fractopts0.300um.txt │ │ │ ├── fractopts0.330um.txt │ │ │ ├── fractopts0.350um.txt │ │ │ ├── fractopts0.370um.txt │ │ │ ├── fractopts0.400um.txt │ │ │ ├── fractopts0.430um.txt │ │ │ ├── fractopts0.450um.txt │ │ │ ├── fractopts0.470um.txt │ │ │ ├── fractopts0.500um.txt │ │ │ ├── fractopts0.530um.txt │ │ │ ├── fractopts0.550um.txt │ │ │ ├── fractopts0.570um.txt │ │ │ ├── fractopts0.600um.txt │ │ │ ├── fractopts0.630um.txt │ │ │ ├── fractopts0.650um.txt │ │ │ ├── fractopts0.670um.txt │ │ │ ├── fractopts0.700um.txt │ │ │ ├── fractopts0.730um.txt │ │ │ ├── fractopts0.750um.txt │ │ │ ├── fractopts0.770um.txt │ │ │ ├── fractopts0.800um.txt │ │ │ ├── fractopts0.830um.txt │ │ │ ├── fractopts0.850um.txt │ │ │ ├── fractopts0.870um.txt │ │ │ ├── fractopts0.900um.txt │ │ │ ├── fractopts0.930um.txt │ │ │ ├── fractopts0.950um.txt │ │ │ ├── fractopts0.970um.txt │ │ │ ├── fractopts1.000um.txt │ │ │ └── fractopts2.000um.txt │ │ ├── f0 │ │ │ ├── fractopts0.001um.txt │ │ │ ├── fractopts0.002um.txt │ │ │ ├── fractopts0.003um.txt │ │ │ ├── fractopts0.004um.txt │ │ │ ├── fractopts0.005um.txt │ │ │ ├── fractopts0.006um.txt │ │ │ ├── fractopts0.007um.txt │ │ │ ├── fractopts0.008um.txt │ │ │ ├── fractopts0.009um.txt │ │ │ ├── fractopts0.010um.txt │ │ │ ├── fractopts0.030um.txt │ │ │ ├── fractopts0.050um.txt │ │ │ ├── fractopts0.070um.txt │ │ │ ├── fractopts0.100um.txt │ │ │ ├── fractopts0.130um.txt │ │ │ ├── fractopts0.150um.txt │ │ │ ├── fractopts0.170um.txt │ │ │ ├── fractopts0.200um.txt │ │ │ ├── fractopts0.230um.txt │ │ │ ├── fractopts0.250um.txt │ │ │ ├── fractopts0.270um.txt │ │ │ ├── fractopts0.300um.txt │ │ │ ├── fractopts0.330um.txt │ │ │ ├── fractopts0.350um.txt │ │ │ ├── fractopts0.370um.txt │ │ │ ├── fractopts0.400um.txt │ │ │ ├── fractopts0.430um.txt │ │ │ ├── fractopts0.450um.txt │ │ │ ├── fractopts0.470um.txt │ │ │ ├── fractopts0.500um.txt │ │ │ ├── fractopts0.530um.txt │ │ │ ├── fractopts0.550um.txt │ │ │ ├── fractopts0.570um.txt │ │ │ ├── fractopts0.600um.txt │ │ │ ├── fractopts0.630um.txt │ │ │ ├── fractopts0.650um.txt │ │ │ ├── fractopts0.670um.txt │ │ │ ├── fractopts0.700um.txt │ │ │ ├── fractopts0.730um.txt │ │ │ ├── fractopts0.750um.txt │ │ │ ├── fractopts0.770um.txt │ │ │ ├── fractopts0.800um.txt │ │ │ ├── fractopts0.830um.txt │ │ │ ├── fractopts0.850um.txt │ │ │ ├── fractopts0.870um.txt │ │ │ ├── fractopts0.900um.txt │ │ │ ├── fractopts0.930um.txt │ │ │ ├── fractopts0.950um.txt │ │ │ ├── fractopts0.970um.txt │ │ │ ├── fractopts1.000um.txt │ │ │ └── fractopts2.000um.txt │ │ ├── f1 │ │ │ ├── fractopts0.001um.txt │ │ │ ├── fractopts0.002um.txt │ │ │ ├── fractopts0.003um.txt │ │ │ ├── fractopts0.004um.txt │ │ │ ├── fractopts0.005um.txt │ │ │ ├── fractopts0.006um.txt │ │ │ ├── fractopts0.007um.txt │ │ │ ├── fractopts0.008um.txt │ │ │ ├── fractopts0.009um.txt │ │ │ ├── fractopts0.010um.txt │ │ │ ├── fractopts0.030um.txt │ │ │ ├── fractopts0.050um.txt │ │ │ ├── fractopts0.070um.txt │ │ │ ├── fractopts0.100um.txt │ │ │ ├── fractopts0.130um.txt │ │ │ ├── fractopts0.150um.txt │ │ │ ├── fractopts0.170um.txt │ │ │ ├── fractopts0.200um.txt │ │ │ ├── fractopts0.230um.txt │ │ │ ├── fractopts0.250um.txt │ │ │ ├── fractopts0.270um.txt │ │ │ ├── fractopts0.300um.txt │ │ │ ├── fractopts0.330um.txt │ │ │ ├── fractopts0.350um.txt │ │ │ ├── fractopts0.370um.txt │ │ │ ├── fractopts0.400um.txt │ │ │ ├── fractopts0.430um.txt │ │ │ ├── fractopts0.450um.txt │ │ │ ├── fractopts0.470um.txt │ │ │ ├── fractopts0.500um.txt │ │ │ ├── fractopts0.530um.txt │ │ │ ├── fractopts0.550um.txt │ │ │ ├── fractopts0.570um.txt │ │ │ ├── fractopts0.600um.txt │ │ │ ├── fractopts0.630um.txt │ │ │ ├── fractopts0.650um.txt │ │ │ ├── fractopts0.670um.txt │ │ │ ├── fractopts0.700um.txt │ │ │ ├── fractopts0.730um.txt │ │ │ ├── fractopts0.750um.txt │ │ │ ├── fractopts0.770um.txt │ │ │ ├── fractopts0.800um.txt │ │ │ ├── fractopts0.830um.txt │ │ │ ├── fractopts0.850um.txt │ │ │ ├── fractopts0.870um.txt │ │ │ ├── fractopts0.900um.txt │ │ │ ├── fractopts0.930um.txt │ │ │ ├── fractopts0.950um.txt │ │ │ ├── fractopts0.970um.txt │ │ │ ├── fractopts1.000um.txt │ │ │ └── fractopts2.000um.txt │ │ ├── f2 │ │ │ ├── fractopts0.001um.txt │ │ │ ├── fractopts0.002um.txt │ │ │ ├── fractopts0.003um.txt │ │ │ ├── fractopts0.004um.txt │ │ │ ├── fractopts0.005um.txt │ │ │ ├── fractopts0.006um.txt │ │ │ ├── fractopts0.007um.txt │ │ │ ├── fractopts0.008um.txt │ │ │ ├── fractopts0.009um.txt │ │ │ ├── fractopts0.010um.txt │ │ │ ├── fractopts0.030um.txt │ │ │ ├── fractopts0.050um.txt │ │ │ ├── fractopts0.070um.txt │ │ │ ├── fractopts0.100um.txt │ │ │ ├── fractopts0.130um.txt │ │ │ ├── fractopts0.150um.txt │ │ │ ├── fractopts0.170um.txt │ │ │ ├── fractopts0.200um.txt │ │ │ ├── fractopts0.230um.txt │ │ │ ├── fractopts0.250um.txt │ │ │ ├── fractopts0.270um.txt │ │ │ ├── fractopts0.300um.txt │ │ │ ├── fractopts0.330um.txt │ │ │ ├── fractopts0.350um.txt │ │ │ ├── fractopts0.370um.txt │ │ │ ├── fractopts0.400um.txt │ │ │ ├── fractopts0.430um.txt │ │ │ ├── fractopts0.450um.txt │ │ │ ├── fractopts0.470um.txt │ │ │ ├── fractopts0.500um.txt │ │ │ ├── fractopts0.530um.txt │ │ │ ├── fractopts0.550um.txt │ │ │ ├── fractopts0.570um.txt │ │ │ ├── fractopts0.600um.txt │ │ │ ├── fractopts0.630um.txt │ │ │ ├── fractopts0.650um.txt │ │ │ ├── fractopts0.670um.txt │ │ │ ├── fractopts0.700um.txt │ │ │ ├── fractopts0.730um.txt │ │ │ ├── fractopts0.750um.txt │ │ │ ├── fractopts0.770um.txt │ │ │ ├── fractopts0.800um.txt │ │ │ ├── fractopts0.830um.txt │ │ │ ├── fractopts0.850um.txt │ │ │ ├── fractopts0.870um.txt │ │ │ ├── fractopts0.900um.txt │ │ │ ├── fractopts0.930um.txt │ │ │ ├── fractopts0.950um.txt │ │ │ ├── fractopts0.970um.txt │ │ │ ├── fractopts1.000um.txt │ │ │ └── fractopts2.000um.txt │ │ ├── f3 │ │ │ ├── fractopts0.001um.txt │ │ │ ├── fractopts0.002um.txt │ │ │ ├── fractopts0.003um.txt │ │ │ ├── fractopts0.004um.txt │ │ │ ├── fractopts0.005um.txt │ │ │ ├── fractopts0.006um.txt │ │ │ ├── fractopts0.007um.txt │ │ │ ├── fractopts0.008um.txt │ │ │ ├── fractopts0.009um.txt │ │ │ ├── fractopts0.010um.txt │ │ │ ├── fractopts0.030um.txt │ │ │ ├── fractopts0.050um.txt │ │ │ ├── fractopts0.070um.txt │ │ │ ├── fractopts0.100um.txt │ │ │ ├── fractopts0.130um.txt │ │ │ ├── fractopts0.150um.txt │ │ │ ├── fractopts0.170um.txt │ │ │ ├── fractopts0.200um.txt │ │ │ ├── fractopts0.230um.txt │ │ │ ├── fractopts0.250um.txt │ │ │ ├── fractopts0.270um.txt │ │ │ ├── fractopts0.300um.txt │ │ │ ├── fractopts0.330um.txt │ │ │ ├── fractopts0.350um.txt │ │ │ ├── fractopts0.370um.txt │ │ │ ├── fractopts0.400um.txt │ │ │ ├── fractopts0.430um.txt │ │ │ ├── fractopts0.450um.txt │ │ │ ├── fractopts0.470um.txt │ │ │ ├── fractopts0.500um.txt │ │ │ ├── fractopts0.530um.txt │ │ │ ├── fractopts0.550um.txt │ │ │ ├── fractopts0.570um.txt │ │ │ ├── fractopts0.600um.txt │ │ │ ├── fractopts0.630um.txt │ │ │ ├── fractopts0.650um.txt │ │ │ ├── fractopts0.670um.txt │ │ │ ├── fractopts0.700um.txt │ │ │ ├── fractopts0.730um.txt │ │ │ ├── fractopts0.750um.txt │ │ │ ├── fractopts0.770um.txt │ │ │ ├── fractopts0.800um.txt │ │ │ ├── fractopts0.830um.txt │ │ │ ├── fractopts0.850um.txt │ │ │ ├── fractopts0.870um.txt │ │ │ ├── fractopts0.900um.txt │ │ │ ├── fractopts0.930um.txt │ │ │ ├── fractopts0.950um.txt │ │ │ ├── fractopts0.970um.txt │ │ │ ├── fractopts1.000um.txt │ │ │ └── fractopts2.000um.txt │ │ ├── f4 │ │ │ ├── fractopts0.001um.txt │ │ │ ├── fractopts0.002um.txt │ │ │ ├── fractopts0.003um.txt │ │ │ ├── fractopts0.004um.txt │ │ │ ├── fractopts0.005um.txt │ │ │ ├── fractopts0.006um.txt │ │ │ ├── fractopts0.007um.txt │ │ │ ├── fractopts0.008um.txt │ │ │ ├── fractopts0.009um.txt │ │ │ ├── fractopts0.010um.txt │ │ │ ├── fractopts0.030um.txt │ │ │ ├── fractopts0.050um.txt │ │ │ ├── fractopts0.070um.txt │ │ │ ├── fractopts0.100um.txt │ │ │ ├── fractopts0.130um.txt │ │ │ ├── fractopts0.150um.txt │ │ │ ├── fractopts0.170um.txt │ │ │ ├── fractopts0.200um.txt │ │ │ ├── fractopts0.230um.txt │ │ │ ├── fractopts0.250um.txt │ │ │ ├── fractopts0.270um.txt │ │ │ ├── fractopts0.300um.txt │ │ │ ├── fractopts0.330um.txt │ │ │ ├── fractopts0.350um.txt │ │ │ ├── fractopts0.370um.txt │ │ │ ├── fractopts0.400um.txt │ │ │ ├── fractopts0.430um.txt │ │ │ ├── fractopts0.450um.txt │ │ │ ├── fractopts0.470um.txt │ │ │ ├── fractopts0.500um.txt │ │ │ ├── fractopts0.530um.txt │ │ │ ├── fractopts0.550um.txt │ │ │ ├── fractopts0.570um.txt │ │ │ ├── fractopts0.600um.txt │ │ │ ├── fractopts0.630um.txt │ │ │ ├── fractopts0.650um.txt │ │ │ ├── fractopts0.670um.txt │ │ │ ├── fractopts0.700um.txt │ │ │ ├── fractopts0.730um.txt │ │ │ ├── fractopts0.750um.txt │ │ │ ├── fractopts0.770um.txt │ │ │ ├── fractopts0.800um.txt │ │ │ ├── fractopts0.830um.txt │ │ │ ├── fractopts0.850um.txt │ │ │ ├── fractopts0.870um.txt │ │ │ ├── fractopts0.900um.txt │ │ │ ├── fractopts0.930um.txt │ │ │ ├── fractopts0.950um.txt │ │ │ ├── fractopts0.970um.txt │ │ │ ├── fractopts1.000um.txt │ │ │ └── fractopts2.000um.txt │ │ ├── f5 │ │ │ ├── fractopts0.001um.txt │ │ │ ├── fractopts0.002um.txt │ │ │ ├── fractopts0.003um.txt │ │ │ ├── fractopts0.004um.txt │ │ │ ├── fractopts0.005um.txt │ │ │ ├── fractopts0.006um.txt │ │ │ ├── fractopts0.007um.txt │ │ │ ├── fractopts0.008um.txt │ │ │ ├── fractopts0.009um.txt │ │ │ ├── fractopts0.010um.txt │ │ │ ├── fractopts0.030um.txt │ │ │ ├── fractopts0.050um.txt │ │ │ ├── fractopts0.070um.txt │ │ │ ├── fractopts0.100um.txt │ │ │ ├── fractopts0.130um.txt │ │ │ ├── fractopts0.150um.txt │ │ │ ├── fractopts0.170um.txt │ │ │ ├── fractopts0.200um.txt │ │ │ ├── fractopts0.230um.txt │ │ │ ├── fractopts0.250um.txt │ │ │ ├── fractopts0.270um.txt │ │ │ ├── fractopts0.300um.txt │ │ │ ├── fractopts0.330um.txt │ │ │ ├── fractopts0.350um.txt │ │ │ ├── fractopts0.370um.txt │ │ │ ├── fractopts0.400um.txt │ │ │ ├── fractopts0.430um.txt │ │ │ ├── fractopts0.450um.txt │ │ │ ├── fractopts0.470um.txt │ │ │ ├── fractopts0.500um.txt │ │ │ ├── fractopts0.530um.txt │ │ │ ├── fractopts0.550um.txt │ │ │ ├── fractopts0.570um.txt │ │ │ ├── fractopts0.600um.txt │ │ │ ├── fractopts0.630um.txt │ │ │ ├── fractopts0.650um.txt │ │ │ ├── fractopts0.670um.txt │ │ │ ├── fractopts0.700um.txt │ │ │ ├── fractopts0.730um.txt │ │ │ ├── fractopts0.750um.txt │ │ │ ├── fractopts0.770um.txt │ │ │ ├── fractopts0.800um.txt │ │ │ ├── fractopts0.830um.txt │ │ │ ├── fractopts0.850um.txt │ │ │ ├── fractopts0.870um.txt │ │ │ ├── fractopts0.900um.txt │ │ │ ├── fractopts0.930um.txt │ │ │ ├── fractopts0.950um.txt │ │ │ ├── fractopts0.970um.txt │ │ │ ├── fractopts1.000um.txt │ │ │ └── fractopts2.000um.txt │ │ ├── f6 │ │ │ ├── fractopts0.001um.txt │ │ │ ├── fractopts0.002um.txt │ │ │ ├── fractopts0.003um.txt │ │ │ ├── fractopts0.004um.txt │ │ │ ├── fractopts0.005um.txt │ │ │ ├── fractopts0.006um.txt │ │ │ ├── fractopts0.007um.txt │ │ │ ├── fractopts0.008um.txt │ │ │ ├── fractopts0.009um.txt │ │ │ ├── fractopts0.010um.txt │ │ │ ├── fractopts0.030um.txt │ │ │ ├── fractopts0.050um.txt │ │ │ ├── fractopts0.070um.txt │ │ │ ├── fractopts0.100um.txt │ │ │ ├── fractopts0.130um.txt │ │ │ ├── fractopts0.150um.txt │ │ │ ├── fractopts0.170um.txt │ │ │ ├── fractopts0.200um.txt │ │ │ ├── fractopts0.230um.txt │ │ │ ├── fractopts0.250um.txt │ │ │ ├── fractopts0.270um.txt │ │ │ ├── fractopts0.300um.txt │ │ │ ├── fractopts0.330um.txt │ │ │ ├── fractopts0.350um.txt │ │ │ ├── fractopts0.370um.txt │ │ │ ├── fractopts0.400um.txt │ │ │ ├── fractopts0.430um.txt │ │ │ ├── fractopts0.450um.txt │ │ │ ├── fractopts0.470um.txt │ │ │ ├── fractopts0.500um.txt │ │ │ ├── fractopts0.530um.txt │ │ │ ├── fractopts0.550um.txt │ │ │ ├── fractopts0.570um.txt │ │ │ ├── fractopts0.600um.txt │ │ │ ├── fractopts0.630um.txt │ │ │ ├── fractopts0.650um.txt │ │ │ ├── fractopts0.670um.txt │ │ │ ├── fractopts0.700um.txt │ │ │ ├── fractopts0.730um.txt │ │ │ ├── fractopts0.750um.txt │ │ │ ├── fractopts0.770um.txt │ │ │ ├── fractopts0.800um.txt │ │ │ ├── fractopts0.830um.txt │ │ │ ├── fractopts0.850um.txt │ │ │ ├── fractopts0.870um.txt │ │ │ ├── fractopts0.900um.txt │ │ │ ├── fractopts0.930um.txt │ │ │ ├── fractopts0.950um.txt │ │ │ ├── fractopts0.970um.txt │ │ │ ├── fractopts1.000um.txt │ │ │ └── fractopts2.000um.txt │ │ ├── f7 │ │ │ ├── fractopts0.001um.txt │ │ │ ├── fractopts0.002um.txt │ │ │ ├── fractopts0.003um.txt │ │ │ ├── fractopts0.004um.txt │ │ │ ├── fractopts0.005um.txt │ │ │ ├── fractopts0.006um.txt │ │ │ ├── fractopts0.007um.txt │ │ │ ├── fractopts0.008um.txt │ │ │ ├── fractopts0.009um.txt │ │ │ ├── fractopts0.010um.txt │ │ │ ├── fractopts0.030um.txt │ │ │ ├── fractopts0.050um.txt │ │ │ ├── fractopts0.070um.txt │ │ │ ├── fractopts0.100um.txt │ │ │ ├── fractopts0.130um.txt │ │ │ ├── fractopts0.150um.txt │ │ │ ├── fractopts0.170um.txt │ │ │ ├── fractopts0.200um.txt │ │ │ ├── fractopts0.230um.txt │ │ │ ├── fractopts0.250um.txt │ │ │ ├── fractopts0.270um.txt │ │ │ ├── fractopts0.300um.txt │ │ │ ├── fractopts0.330um.txt │ │ │ ├── fractopts0.350um.txt │ │ │ ├── fractopts0.370um.txt │ │ │ ├── fractopts0.400um.txt │ │ │ ├── fractopts0.430um.txt │ │ │ ├── fractopts0.450um.txt │ │ │ ├── fractopts0.470um.txt │ │ │ ├── fractopts0.500um.txt │ │ │ ├── fractopts0.530um.txt │ │ │ ├── fractopts0.550um.txt │ │ │ ├── fractopts0.570um.txt │ │ │ ├── fractopts0.600um.txt │ │ │ ├── fractopts0.630um.txt │ │ │ ├── fractopts0.650um.txt │ │ │ ├── fractopts0.670um.txt │ │ │ ├── fractopts0.700um.txt │ │ │ ├── fractopts0.730um.txt │ │ │ ├── fractopts0.750um.txt │ │ │ ├── fractopts0.770um.txt │ │ │ ├── fractopts0.800um.txt │ │ │ ├── fractopts0.830um.txt │ │ │ ├── fractopts0.850um.txt │ │ │ ├── fractopts0.870um.txt │ │ │ ├── fractopts0.900um.txt │ │ │ ├── fractopts0.930um.txt │ │ │ ├── fractopts0.950um.txt │ │ │ ├── fractopts0.970um.txt │ │ │ ├── fractopts1.000um.txt │ │ │ └── fractopts2.000um.txt │ │ ├── fitmythol0001.DAT │ │ ├── fitmythol0002.DAT │ │ ├── fitmythol0003.DAT │ │ ├── fitmythol0004.DAT │ │ ├── fitmythol0005.DAT │ │ ├── fitmythol0006.DAT │ │ ├── fitmythol0007.DAT │ │ ├── fitmythol0008.DAT │ │ ├── fitmythol0009.DAT │ │ ├── fitmythol001.DAT │ │ ├── fitmythol003.DAT │ │ ├── fitmythol005.DAT │ │ ├── fitmythol007.DAT │ │ ├── fitmythol01.DAT │ │ ├── fitmythol013.DAT │ │ ├── fitmythol015.DAT │ │ ├── fitmythol017.DAT │ │ ├── fitmythol02.DAT │ │ ├── fitmythol023.DAT │ │ ├── fitmythol025.DAT │ │ ├── fitmythol027.DAT │ │ ├── fitmythol03.DAT │ │ ├── fitmythol033.DAT │ │ ├── fitmythol035.DAT │ │ ├── fitmythol037.DAT │ │ ├── fitmythol04.DAT │ │ ├── fitmythol043.DAT │ │ ├── fitmythol045.DAT │ │ ├── fitmythol047.DAT │ │ ├── fitmythol05.DAT │ │ ├── fitmythol053.DAT │ │ ├── fitmythol055.DAT │ │ ├── fitmythol057.DAT │ │ ├── fitmythol06.DAT │ │ ├── fitmythol063.DAT │ │ ├── fitmythol065.DAT │ │ ├── fitmythol067.DAT │ │ ├── fitmythol07.DAT │ │ ├── fitmythol073.DAT │ │ ├── fitmythol075.DAT │ │ ├── fitmythol077.DAT │ │ ├── fitmythol08.DAT │ │ ├── fitmythol083.DAT │ │ ├── fitmythol085.DAT │ │ ├── fitmythol087.DAT │ │ ├── fitmythol09.DAT │ │ ├── fitmythol093.DAT │ │ ├── fitmythol095.DAT │ │ ├── fitmythol097.DAT │ │ ├── fitmythol1.DAT │ │ ├── fitmythol2.DAT │ │ ├── h2so4_mono_0.01um.mie │ │ ├── h2so4_mono_0.02um.mie │ │ ├── h2so4_mono_0.03um.mie │ │ ├── h2so4_mono_0.04um.mie │ │ ├── h2so4_mono_0.05um.mie │ │ ├── h2so4_mono_0.06um.mie │ │ ├── h2so4_mono_0.07um.mie │ │ ├── h2so4_mono_0.08um.mie │ │ ├── h2so4_mono_0.09um.mie │ │ ├── h2so4_mono_0.10um.mie │ │ ├── h2so4_mono_0.20um.mie │ │ ├── h2so4_mono_0.30um.mie │ │ ├── h2so4_mono_0.40um.mie │ │ ├── h2so4_mono_0.50um.mie │ │ ├── h2so4_mono_0.60um.mie │ │ ├── h2so4_mono_0.70um.mie │ │ ├── h2so4_mono_0.80um.mie │ │ ├── h2so4_mono_0.90um.mie │ │ ├── h2so4_mono_1.00um.mie │ │ ├── plotmie.pro │ │ ├── plotmie2.pro │ │ └── readmie.pro │ ├── XSECTIONS │ │ ├── C2H2 │ │ │ ├── C2H2.XS.dat │ │ │ ├── C2H2.XS.dat.kida │ │ │ ├── C2H2.XS.dat.old │ │ │ ├── C2H2_HV_C2H_H.QY.dat │ │ │ ├── C2H2_HV_C2H_H.QY.dat.kida │ │ │ ├── C2H2_HV_C2H_H.QY.dat.old │ │ │ ├── C2H2_HV_C2_H2.QY.dat │ │ │ ├── C2H2_mpi.abs │ │ │ └── read.me │ │ ├── C2H3 │ │ │ ├── C2H3.XS.dat │ │ │ └── C2H3_HV_C2H2_H.QY.dat │ │ ├── C2H3CN │ │ │ ├── C2H3CN.XS.dat │ │ │ ├── C2H3CN_HV_C2H2_HCN.QY.dat │ │ │ ├── C2H3CN_HV_C2H3_CN.QY.dat │ │ │ └── C2H3CN_HV_HCAER3_H2.QY.dat │ │ ├── C2H4 │ │ │ ├── C2H4.XS.dat │ │ │ ├── C2H4_HV_C2H2_H2.QY.dat │ │ │ ├── C2H4_HV_C2H2_H_H.QY.dat │ │ │ ├── C2H4_kasting.abs │ │ │ └── read.me │ │ ├── C2H5CHO │ │ │ ├── C2H5CHO.XS.dat │ │ │ ├── C2H5CHO_HV_C2H5_HCO.QY.dat │ │ │ ├── C2H5CHO_mpi.abs │ │ │ └── read.me │ │ ├── C2H6 │ │ │ ├── C2H6.XS.dat │ │ │ ├── C2H6.XS.dat.kida │ │ │ ├── C2H6.XS.dat.old │ │ │ ├── C2H6_HV_C2H2_H2_H2.QY.dat │ │ │ ├── C2H6_HV_C2H2_H2_H2.QY.dat.kida │ │ │ ├── C2H6_HV_C2H2_H2_H2.QY.dat.old │ │ │ ├── C2H6_HV_C2H4_H2.QY.dat │ │ │ ├── C2H6_HV_C2H4_H2.QY.dat.kida │ │ │ ├── C2H6_HV_C2H4_H2.QY.dat.old │ │ │ ├── C2H6_HV_C2H4_H_H.QY.dat │ │ │ ├── C2H6_HV_C2H4_H_H.QY.dat.kida │ │ │ ├── C2H6_HV_C2H4_H_H.QY.dat.old │ │ │ ├── C2H6_HV_CH23_CH23_H2.QY.dat │ │ │ ├── C2H6_HV_CH3_CH3.QY.dat │ │ │ ├── C2H6_HV_CH3_CH3.QY.dat.kida │ │ │ ├── C2H6_HV_CH3_CH3.QY.dat.old │ │ │ ├── C2H6_HV_CH4_CH21.QY.dat │ │ │ ├── C2H6_HV_CH4_CH21.QY.dat.kida │ │ │ ├── C2H6_HV_CH4_CH21.QY.dat.old │ │ │ └── C2H6_zahnle.abs │ │ ├── C2H6S │ │ │ ├── C2H6S.XS.dat │ │ │ ├── C2H6S_HV_CH3S_CH3.QY.dat │ │ │ ├── C2H6S_mpi.abs │ │ │ ├── C2H6S_mpi.absORIG │ │ │ └── read.me │ │ ├── C2H6S2 │ │ │ ├── C2H6S2.XS.dat │ │ │ ├── C2H6S2_HV_CH3S_CH3S.QY.dat │ │ │ ├── C2H6S2_mpi.abs │ │ │ └── read.me │ │ ├── C2H6SX │ │ │ ├── C2H6SX.XS.dat │ │ │ ├── C2H6SX_HV_CH3SX_CH3.QY.dat │ │ │ ├── C2H6SX_mpi.abs │ │ │ └── read.me │ │ ├── C2H6SXS │ │ │ ├── C2H6SXS.XS.dat │ │ │ ├── C2H6SXS_HV_CH3SX_CH3S.QY.dat │ │ │ ├── C2H6SXS_mpi.abs │ │ │ └── read.me │ │ ├── C2N2 │ │ │ ├── C2N2.XS.dat │ │ │ └── C2N2_HV_CN_CN.QY.dat │ │ ├── C3H3 │ │ │ ├── C3H3.XS.dat │ │ │ ├── C3H3_HV_C3H2_H.QY.dat │ │ │ ├── C3H3_mpi.abs │ │ │ └── read.me │ │ ├── C3H6 │ │ │ ├── C3H6.XS.dat │ │ │ ├── C3H6.XS.dat.kida │ │ │ ├── C3H6.XS.dat.old │ │ │ ├── C3H6_HV_C2H2_CH3_H.QY.dat │ │ │ ├── C3H6_HV_C2H2_CH3_H.QY.dat.kida │ │ │ ├── C3H6_HV_C2H2_CH4.QY.dat │ │ │ ├── C3H6_HV_C2H3_CH3.QY.dat │ │ │ ├── C3H6_HV_C2H4_CH21.QY.dat │ │ │ ├── C3H6_HV_C2H4_CH21.QY.dat.kida │ │ │ ├── C3H6_HV_C2H4_CH21.QY.dat.old │ │ │ ├── C3H6_HV_C2H4_CH23.QY.dat │ │ │ ├── C3H6_HV_C2H_CH4_H.QY.dat │ │ │ ├── C3H6_HV_C3H5_H.QY.dat │ │ │ ├── C3H6_HV_CH2CCH2_H2.QY.dat │ │ │ ├── C3H6_HV_CH2CCH2_H2.QY.dat.kida │ │ │ ├── C3H6_HV_CH2CCH2_H2.QY.dat.old │ │ │ ├── C3H6_HV_CH3C2H_H2.QY.dat │ │ │ ├── C3H6_mpi.abs │ │ │ └── read.me │ │ ├── C3H8 │ │ │ ├── C3H8.XS.dat │ │ │ ├── C3H8.XS.dat.kida │ │ │ ├── C3H8.XS.dat.old │ │ │ ├── C3H8_HV_C2H4_CH4.QY.dat │ │ │ ├── C3H8_HV_C2H4_CH4.QY.dat.kida │ │ │ ├── C3H8_HV_C2H4_CH4.QY.dat.old │ │ │ ├── C3H8_HV_C2H5_CH3.QY.dat │ │ │ ├── C3H8_HV_C2H5_CH3.QY.dat.kida │ │ │ ├── C3H8_HV_C2H5_CH3.QY.dat.old │ │ │ ├── C3H8_HV_C2H6_CH21.QY.dat │ │ │ ├── C3H8_HV_C2H6_CH21.QY.dat.kida │ │ │ ├── C3H8_HV_C2H6_CH21.QY.dat.kida.old │ │ │ ├── C3H8_HV_C3H6_H2.QY.dat │ │ │ ├── C3H8_HV_C3H6_H2.QY.dat.kida │ │ │ ├── C3H8_HV_C3H6_H2.QY.dat.old │ │ │ ├── C3H8_mpi.abs │ │ │ └── read.me │ │ ├── C4H2 │ │ │ ├── C4H2.XS.dat │ │ │ ├── C4H2_HV_C2H2_C2.QY.dat │ │ │ ├── C4H2_HV_C2H_C2H.QY.dat │ │ │ ├── C4H2_HV_C4H2X.QY.dat │ │ │ └── C4H2_HV_C4H_H.QY.dat │ │ ├── C4H4 │ │ │ ├── C4H4.XS.dat │ │ │ ├── C4H4_HV_C2H2_C2H2.QY.dat │ │ │ └── C4H4_HV_HCAER_H2.QY.dat │ │ ├── C4H6 │ │ │ ├── C4H6.XS.dat │ │ │ ├── C4H6_HV_C2H3_C2H3.QY.dat │ │ │ ├── C4H6_HV_C2H4_C2H2.QY.dat │ │ │ ├── C4H6_HV_C3H3_CH3.QY.dat │ │ │ ├── C4H6_HV_C4H4_H2.QY.dat │ │ │ └── C4H6_HV_C4H5_H.QY.dat │ │ ├── C4N2 │ │ │ ├── C4N2.XS.dat │ │ │ └── C4N2_HV_C3N_CN.QY.dat │ │ ├── C6H2 │ │ │ ├── C6H2.XS.dat │ │ │ ├── C6H2_HV_C4H_C2H.QY.dat │ │ │ └── C6H2_HV_C6H_H.QY.dat │ │ ├── C6H6 │ │ │ ├── C6H6.XS.dat │ │ │ ├── C6H6_HV_C6H4_H2.QY.dat │ │ │ ├── C6H6_HV_C6H5_H.QY.dat │ │ │ └── C6H6_HV_SOOT_CH3.QY.dat │ │ ├── C8H2 │ │ │ ├── C8H2.XS.dat │ │ │ ├── C8H2_HV_C4H_C4H.QY.dat │ │ │ └── C8H2_HV_C6H_C2H.QY.dat │ │ ├── CCL4 │ │ │ ├── CCL4.XS.dat │ │ │ ├── CCL4_HV_CCL3_CL.QY.dat │ │ │ └── CCL4_JPL06.abs │ │ ├── CH │ │ │ ├── CH.XS.dat │ │ │ └── CH_HV_C_H.QY.dat │ │ ├── CH2CCH2 │ │ │ ├── CH2CCH2.XS.dat │ │ │ ├── CH2CCH2.XS.dat.KIDA │ │ │ ├── CH2CCH2.XS.dat.old │ │ │ ├── CH2CCH2_HV_C2H2_CH23.QY.dat │ │ │ ├── CH2CCH2_HV_C2H2_CH23.QY.dat.kida │ │ │ ├── CH2CCH2_HV_C2H2_CH23.QY.dat.old │ │ │ ├── CH2CCH2_HV_C2H_CH3.QY.dat │ │ │ ├── CH2CCH2_HV_C3H2_H2.QY.dat │ │ │ ├── CH2CCH2_HV_C3H3_H.QY.dat │ │ │ ├── CH2CCH2_HV_C3H3_H.QY.dat.kida │ │ │ ├── CH2CCH2_HV_C3H3_H.QY.dat.old │ │ │ ├── CH2CCH2_kasting.abs │ │ │ └── read.me │ │ ├── CH2CO │ │ │ ├── CH2CO.XS.dat │ │ │ ├── CH2CO_HV_CH23_CO.QY.dat │ │ │ ├── CH2CO_mpi.abs │ │ │ └── read.me │ │ ├── CH2NH │ │ │ ├── CH2NH.XS.dat │ │ │ ├── CH2NH_HV_H2CN_H.QY.dat │ │ │ ├── CH2NH_HV_HCN_H2.QY.dat │ │ │ ├── CH2NH_HV_HCN_H_H.QY.dat │ │ │ └── CH2NH_HV_HNC_H2.QY.dat │ │ ├── CH3 │ │ │ ├── CH3.XS.dat │ │ │ ├── CH3_HV_CH21_H.QY.dat │ │ │ └── CH3withHerzberg.XS.dat │ │ ├── CH3C2H │ │ │ ├── CH3C2H.XS.dat │ │ │ ├── CH3C2H_HV_C2H2_CH23.QY.dat │ │ │ ├── CH3C2H_HV_C2H_CH3.QY.dat │ │ │ ├── CH3C2H_HV_C3H2_H2.QY.dat │ │ │ ├── CH3C2H_HV_C3H3_H.QY.dat │ │ │ ├── CH3C2H_HV_CH3_C2H.QY.dat │ │ │ ├── CH3C2H_HV_CH3_C2H.QY.dat.kida │ │ │ ├── CH3C2H_HV_CH3_C2H.QY.dat.old │ │ │ ├── CH3C2H_mpi.abs │ │ │ └── read.me │ │ ├── CH3CHO │ │ │ ├── CH2CHO_mpi.abs │ │ │ ├── CH3CHO.XS.dat │ │ │ ├── CH3CHO_HV_CH3_HCO.QY.dat │ │ │ ├── CH3CHO_HV_CH4_CO.QY.dat │ │ │ ├── CH3CHO_mpi.abs │ │ │ └── read.me │ │ ├── CH3CL │ │ │ ├── CH3CL.XS.dat │ │ │ ├── CH3CL_HV_CL_CH3.QY.dat │ │ │ └── CH3CL_JPL06.abs │ │ ├── CH3CN │ │ │ ├── CH3CN.XS.dat │ │ │ └── CH3CN_HV_CN_CH3.QY.dat │ │ ├── CH3NH2 │ │ │ ├── CH3NH2.XS.dat │ │ │ ├── CH3NH2_HV_CH2NH_H_H.QY.dat │ │ │ ├── CH3NH2_HV_CN_H2_H2_H.QY.dat │ │ │ ├── CH3NH2_HV_HCN_H2_H2.QY.dat │ │ │ └── CH3NH2_HV_HCN_H2_H_H.QY.dat │ │ ├── CH3O2NO2 │ │ │ ├── CH3O2NO2.XS.dat │ │ │ ├── CH3O2NO2_HV_CH3O2_NO2.QY.dat │ │ │ └── CH3O2NO2_IUPAC2006.abs │ │ ├── CH3OCL │ │ │ ├── CH3OCL.XS.dat │ │ │ ├── CH3OCL_HV_CH3O_CL.QY.dat │ │ │ └── CH3OCL_IUPAC2008.abs │ │ ├── CH3OOH │ │ │ ├── CH3OOH.XS.dat │ │ │ ├── CH3OOH_HV_CH3O_OH.QY.dat │ │ │ ├── CH3OOH_JPL06.abs │ │ │ └── CH3OOH_alinc.dat │ │ ├── CH3SH │ │ │ ├── CH3SH.XS.dat │ │ │ ├── CH3SH_HV_HS_CH3.QY.dat │ │ │ ├── CH3SH_HV_H_CH3S.QY.dat │ │ │ ├── CH3SH_mpi.abs │ │ │ └── read.me │ │ ├── CH4 │ │ │ ├── CH4.XS.dat │ │ │ ├── CH4.XS.dat.kida │ │ │ ├── CH4_HV_CH21_H2.QY.dat │ │ │ ├── CH4_HV_CH21_H2.QY.dat.kida │ │ │ ├── CH4_HV_CH21_H2.QY.dat.old │ │ │ ├── CH4_HV_CH21_H_H.QY.dat │ │ │ ├── CH4_HV_CH23_H_H.QY.dat │ │ │ ├── CH4_HV_CH23_H_H.QY.dat.kida │ │ │ ├── CH4_HV_CH3_H.QY.dat │ │ │ ├── CH4_HV_CH3_H.QY.dat.kida │ │ │ ├── CH4_HV_CH3_H.QY.dat.old │ │ │ ├── CH4_HV_CH_H2_H.QY.dat │ │ │ └── CH4_zahnle.abs │ │ ├── CHCLO │ │ │ ├── CHCLO.XS.dat │ │ │ ├── CHCLO_HV_HCO_CL.QY.dat │ │ │ └── CHCLO_JPL06.abs │ │ ├── CL2O │ │ │ ├── CL2O.XS.dat │ │ │ ├── CL2O_HV_CL_CLO.QY.dat │ │ │ └── CL2O_JPL06.abs │ │ ├── CL2O2 │ │ │ ├── CL2O2.XS.dat │ │ │ ├── CL2O2_HV_CLO_CLO.QY.dat │ │ │ ├── CL2O2_HV_CL_CLOO.QY.dat │ │ │ └── CL2O2_JPL06.abs │ │ ├── CL2O3 │ │ │ ├── CL2O3.XS.dat │ │ │ ├── CL2O3_HV_CLO_CLOO.QY.dat │ │ │ └── CL2O3_JPL06.abs │ │ ├── CL2O4 │ │ │ ├── CL2O4.XS.dat │ │ │ ├── CL2O4_HV_CLOO_OCLO.QY.dat │ │ │ └── CL2O4_JPL06.abs │ │ ├── CLNO │ │ │ ├── CLNO.XS.dat │ │ │ ├── CLNO_HV_CL_NO.QY.dat │ │ │ ├── CLNO_JPL06.abs │ │ │ └── CLNO_Roehl_294K.abs │ │ ├── CLNO2 │ │ │ ├── CLNO2.XS.dat │ │ │ ├── CLNO2_HV_CL_NO2.QY.dat │ │ │ └── CLNO2_JPL06.abs │ │ ├── CLO │ │ │ ├── CLO.XS.dat │ │ │ ├── CLO_HV_CL_O.QY.dat │ │ │ ├── CLO_HV_CL_O1D.QY.dat │ │ │ └── CLO_JPL06.abs │ │ ├── CLO3 │ │ │ ├── CLO3.XS.dat │ │ │ ├── CLO3_HV_CLO_O2.QY.dat │ │ │ └── CLO3_Kopitzky_MC.abs │ │ ├── CLONO │ │ │ ├── CLONO.XS.dat │ │ │ ├── CLONO_HV_CL_NO2.QY.dat │ │ │ └── CLONO_JPL06.abs │ │ ├── CLONO2 │ │ │ └── CLONO2_JPL06.abs │ │ ├── CLOO │ │ │ ├── CLOO.XS.dat │ │ │ ├── CLOO_HV_O_CLO.QY.dat │ │ │ └── CLOO_JPL06.abs │ │ ├── CO │ │ │ ├── CO.XS.dat │ │ │ └── CO_HV_C_O3P.QY.dat │ │ ├── CO2 │ │ │ ├── CO2.XS.dat │ │ │ ├── CO2D_zahnle.abs │ │ │ ├── CO2_HV_CO_O.QY.dat │ │ │ ├── CO2_HV_CO_O1D.QY.dat │ │ │ ├── CO2_HV_CO_O3P.QY.dat │ │ │ ├── CO2_alinc.dat │ │ │ ├── CO2_alinc_withoutextrapolation.dat │ │ │ ├── CO2_claire1.abs │ │ │ ├── CO2_zahnle.abs │ │ │ └── README │ │ ├── COCL2 │ │ │ ├── COCL2.XS.dat │ │ │ ├── COCL2_HV_CL_CL_CO.QY.dat │ │ │ └── COCL2_JPL06.abs │ │ ├── CS2 │ │ │ ├── CS2.XS.dat │ │ │ ├── CS2X_mpi.abs │ │ │ ├── CS2_HV_CS2X.QY.dat │ │ │ ├── CS2_HV_CS_S.QY.dat │ │ │ ├── CS2_mpi.abs │ │ │ └── read.me │ │ ├── H2 │ │ │ ├── H2.XS.dat │ │ │ └── H2_HV_H_H.QY.dat │ │ ├── H2CN │ │ │ ├── H2CN.XS.dat │ │ │ └── H2CN_HV_HCN_H.QY.dat │ │ ├── H2CO │ │ │ ├── H2CO.XS.dat │ │ │ ├── H2CO_HV_H2_CO.QY.dat │ │ │ ├── H2CO_HV_HCO_H.QY.dat │ │ │ ├── H2CO_alinc.dat │ │ │ └── H2CO_zahnle.abs │ │ ├── H2O │ │ │ ├── H2O.XS.dat │ │ │ ├── H2O.XS.dat.kida │ │ │ ├── H2O_HV_H2_O1D.QY.dat │ │ │ ├── H2O_HV_H_H_O.QY.dat │ │ │ ├── H2O_HV_H_H_O3P.QY.dat │ │ │ ├── H2O_HV_H_OH.QY.dat │ │ │ ├── H2O_zahnle.abs │ │ │ └── H2O_zahnle_old.abs │ │ ├── H2O2 │ │ │ ├── H2O2.XS.dat │ │ │ ├── H2O2_HV_2_OH.QY.dat │ │ │ ├── H2O2_HV_OH_OH.QY.dat │ │ │ ├── H2O2_alinc.dat │ │ │ ├── H2O2_jpl94.abs │ │ │ └── H2O2_zahnle.abs │ │ ├── H2S │ │ │ ├── H2S.XS.dat │ │ │ ├── H2S_HV_HS_H.QY.dat │ │ │ ├── H2S_alinc.dat │ │ │ ├── H2S_mpi.abs │ │ │ ├── H2S_mpi.abs.readme │ │ │ ├── H2S_zahnle.abs │ │ │ └── Wu1998_295K.abs.webarchive │ │ ├── H2SO4 │ │ │ ├── H2SO4.XS.dat │ │ │ ├── H2SO4_HV_SO3_H2O.QY.dat │ │ │ └── H2SO4_alinc.dat │ │ ├── HC3N │ │ │ ├── HC3N.XS.dat │ │ │ ├── HC3N_HV_C3N_H.QY.dat │ │ │ └── HC3N_HV_CN_C2H.QY.dat │ │ ├── HCHO │ │ │ ├── HCHO.XS.dat │ │ │ ├── HCHO_HV_H2_CO.QY.dat │ │ │ └── HCHO_HV_H_HCO.QY.dat │ │ ├── HCL │ │ │ ├── HCL.XS.dat │ │ │ ├── HCL_HV_H_CL.QY.dat │ │ │ ├── HCL_JPL06.abs │ │ │ └── HCL_zahnle.abs │ │ ├── HCN │ │ │ ├── HCN.XS.dat │ │ │ └── HCN_HV_CN_H.QY.dat │ │ ├── HNC │ │ │ ├── HNC.XS.dat │ │ │ └── HNC_HV_CN_H.QY.dat │ │ ├── HNO2 │ │ │ ├── HNO2.XS.dat │ │ │ ├── HNO2_HV_NO_OH.QY.dat │ │ │ └── HNO2_alinc.dat │ │ ├── HNO3 │ │ │ ├── HNO3.XS.dat │ │ │ ├── HNO3_HV_NO2_OH.QY.dat │ │ │ ├── HNO3_HV_OH_NO2.QY.dat │ │ │ ├── HNO3_alinc.dat │ │ │ ├── HNO3_burk.abs │ │ │ ├── HNO3_zahnle.abs │ │ │ ├── HNO3_zahnle_centered.abs │ │ │ ├── HNO3_zahnle_left.abs │ │ │ └── hno3x.pro │ │ ├── HO2 │ │ │ ├── HO2.XS.dat │ │ │ ├── HO2_HV_OH_O.QY.dat │ │ │ ├── HO2_HV_OH_O1D.QY.dat │ │ │ ├── HO2_jpl94.abs │ │ │ ├── HO2_zahnle.abs │ │ │ ├── HO2_zahnle_center.abs │ │ │ └── HO2_zahnle_left.abs │ │ ├── HO2NO2 │ │ │ ├── HO2NO2.XS.dat │ │ │ ├── HO2NO2_HV_HO2_NO2.QY.dat │ │ │ ├── HO2NO2_HV_OH_NO3.QY.dat │ │ │ └── HO2NO2_JPL06.abs │ │ ├── HOCL │ │ │ ├── HOCL.XS.dat │ │ │ ├── HOCL_HV_OH_CL.QY.dat │ │ │ └── HOCL_JPL06.abs │ │ ├── N2 │ │ │ ├── N2.XS.dat │ │ │ └── N2_HV_N2D_N4S.QY.dat │ │ ├── N2H4 │ │ │ ├── N2H4.XS.dat │ │ │ └── N2H4_HV_N2H3_H.QY.dat │ │ ├── N2O │ │ │ ├── N2O.QY.dat │ │ │ ├── N2O.XS.dat │ │ │ ├── N2O_JPL06.abs │ │ │ ├── N2O_alinc.dat │ │ │ └── N2O_zahnle.abs │ │ ├── N2O5 │ │ │ ├── N2O5.XS.dat │ │ │ ├── N2O5_HV_NO3_NO2.QY.dat │ │ │ ├── N2O5_HV_NO3_NO_O.QY.dat │ │ │ ├── N2O5_JPL06_298.abs │ │ │ ├── N2O5_alinc.dat │ │ │ ├── N2O5td.abs │ │ │ └── N2O5thoughts.txt │ │ ├── NH3 │ │ │ ├── NH3.XS.dat │ │ │ └── NH3_HV_NH2_H.QY.dat │ │ ├── NO │ │ │ ├── NO_HV_N4S_O3P.QY.dat │ │ │ ├── NO_alinc.dat │ │ │ └── README │ │ ├── NO2 │ │ │ ├── NO2.QY.dat │ │ │ ├── NO2.XS.dat │ │ │ ├── NO2_Har.abs │ │ │ ├── NO2_alinc.dat │ │ │ ├── NO2_calvert.yld │ │ │ ├── NO2_jpl94.abs │ │ │ ├── NO2_ncar_00.abs │ │ │ ├── NO2_zahnle.abs │ │ │ └── NO2qy_zahnle.yld │ │ ├── NO3 │ │ │ ├── NO3.XS.dat │ │ │ ├── NO3.abs │ │ │ ├── NO3QY.dat │ │ │ ├── NO3_HV_NO2_O.QY.dat │ │ │ ├── NO3_HV_NO_O2.QY.dat │ │ │ └── README │ │ ├── O2 │ │ │ ├── AllenFrederick1982.XS.dat │ │ │ ├── AllenFrederick1982.coeff │ │ │ ├── ArchIO20 │ │ │ ├── ArchIO22NG │ │ │ ├── ArchIO22NGConv │ │ │ ├── ArchIO22NGConv_2 │ │ │ ├── ArchIO22NG_2 │ │ │ ├── ArchIO22OG │ │ │ ├── ArchIO22OG_2 │ │ │ ├── ArcheanIO21 │ │ │ ├── O2.XS.dat │ │ │ ├── O2D.XS.dat │ │ │ ├── O2D_zahnle.abs │ │ │ ├── O2XStopofmodernATMOld │ │ │ ├── O2_alinc.dat │ │ │ ├── O2_zahnle.abs │ │ │ ├── O2plot.pro │ │ │ ├── O2rates.pro │ │ │ ├── README │ │ │ ├── Yosh2NewGrid │ │ │ ├── Yosh2_0.1Agrid │ │ │ ├── Yoshino2oldGrid │ │ │ ├── Yoshino92.XS.dat │ │ │ ├── Yoshino92.abs │ │ │ ├── Yoshino92a │ │ │ ├── Yoshino92b │ │ │ ├── Yoshino92c │ │ │ ├── Yoshino92d │ │ │ ├── Yoshino92e │ │ │ ├── Yoshino92f │ │ │ ├── Yoshino92g │ │ │ ├── Yoshino92h │ │ │ ├── Yoshino92i │ │ │ ├── Yoshino92j │ │ │ ├── Yoshino92k │ │ │ ├── Yoshino92l │ │ │ ├── modIO20 │ │ │ ├── modIO21 │ │ │ ├── modIO22 │ │ │ ├── modIO22newConv │ │ │ ├── modIO22newgrid │ │ │ ├── newArchIO21 │ │ │ ├── newArchIO22_0.05 │ │ │ ├── newArchIO22_0.1 │ │ │ ├── newArchIO22_0.5 │ │ │ ├── newArchIO22_oldgrid │ │ │ ├── newLArchIO21 │ │ │ ├── newLArchIO21_TFLUX │ │ │ ├── newLArchIO21_highFLUX │ │ │ ├── newLArchIO21_highFLUXorig │ │ │ ├── newLArchIO22_0.02_TFLUX │ │ │ ├── newLArchIO22_0.02_highFLUX │ │ │ ├── newLArchIO22_0.02_highFLUXorig │ │ │ ├── newLArchIO22_0.05 │ │ │ ├── newLArchIO22_0.05_TFLUX │ │ │ ├── newLArchIO22_0.05_highFLUX │ │ │ ├── newLArchIO22_0.05_highFLUXorig │ │ │ ├── newLArchIO22_0.1 │ │ │ ├── newLArchIO22_0.1_TFLUX │ │ │ ├── newLArchIO22_0.1_highFLUX │ │ │ ├── newLArchIO22_0.1_highFLUXorig │ │ │ ├── newLArchIO22_0.5 │ │ │ ├── newLArchIO22_0.5_TFLUX │ │ │ ├── newLArchIO22_0.5_highFLUX │ │ │ ├── newLArchIO22_0.5_highFLUXorig │ │ │ ├── newLArchIO22_oldgrid │ │ │ ├── newLArchIO22_oldgrid_TFLUX │ │ │ ├── newLArchIO22_oldgrid_highFLUX │ │ │ ├── newLArchIO22_oldgrid_highFLUXorig │ │ │ ├── newgrid.pro │ │ │ ├── o2.eps │ │ │ ├── o2prates.eps │ │ │ ├── o2prates.jpg │ │ │ ├── o2pratesCompAncient.eps │ │ │ ├── o2pratesCompModern.eps │ │ │ ├── o2xs.jpg │ │ │ ├── pratesExpSum │ │ │ ├── pratesNEWoldGrid │ │ │ └── yosh.sav │ │ ├── O3 │ │ │ ├── O3.XS.dat │ │ │ ├── O3_alinc.dat │ │ │ ├── O3_zahnle.abs │ │ │ └── README │ │ ├── OCLO │ │ │ ├── OCLO.XS.dat │ │ │ ├── OCLO_HV_O_CLO.QY.dat │ │ │ └── OCLO_JPL06.abs │ │ ├── OCS │ │ │ ├── OCS.QY.dat │ │ │ ├── OCS.XS.dat │ │ │ ├── OCS_alinc.dat │ │ │ └── OCS_zahnle.abs │ │ ├── OH │ │ │ ├── OH.XS.dat │ │ │ └── OH_HV_O1D_H.QY.dat │ │ ├── README │ │ ├── S2 │ │ │ ├── S2.XS.dat │ │ │ ├── S2_HV_S_S.QY.dat │ │ │ ├── S2_S2_SX.QY.dat │ │ │ ├── S2_SXS_S.QY.dat │ │ │ └── S2_zahnle.abs │ │ ├── S3 │ │ │ └── S3_alinc.dat │ │ ├── S4 │ │ │ └── S4_alinc.dat │ │ ├── S8 │ │ │ ├── S8L.XS.dat │ │ │ ├── S8L_zahnle.abs │ │ │ ├── S8R.XS.dat │ │ │ ├── S8R_zahnle.abs │ │ │ └── S8_HV_S4_S4.QY.dat │ │ ├── SO │ │ │ ├── SO.XS.dat │ │ │ ├── SO_HV_S_O.QY.dat │ │ │ └── SO_zahnle.abs │ │ ├── SO2 │ │ │ ├── 2007jd009695-ds01.txt │ │ │ ├── 2007jd009695-ds01.txtFromSI │ │ │ ├── 2007jd009695-readme.txt │ │ │ ├── FracFactorsDanielache.ps │ │ │ ├── FracFactorsShiftedSO2 │ │ │ ├── HRnew32 │ │ │ ├── HRnew33 │ │ │ ├── HRnew34 │ │ │ ├── SO2.XS.dat │ │ │ ├── SO2.XS.dat.kida │ │ │ ├── SO2.XS.dat.old │ │ │ ├── SO2_HR2oldGrid │ │ │ ├── SO2_HRnewGrid │ │ │ ├── SO2_HRnewgrid33 │ │ │ ├── SO2_HRnewgrid34 │ │ │ ├── SO2_HV_SO21.QY.dat │ │ │ ├── SO2_HV_SO23.QY.dat │ │ │ ├── SO2_HV_SO_O.QY.dat │ │ │ ├── SO2_alinc.dat │ │ │ ├── SO2_zahnle.abs │ │ │ ├── data-non-systematic-errors-corrections.txt │ │ │ ├── so2.jpg │ │ │ ├── so2FracFac.eps │ │ │ ├── so2FracFacD33.eps │ │ │ ├── so2FracFacD33.jpg │ │ │ ├── so2FracFacLong.eps │ │ │ ├── so2FracFacShort.eps │ │ │ ├── so2FracFacShort.jpg │ │ │ ├── so2XScomp.eps │ │ │ ├── so2XScomp.jpg │ │ │ ├── so2gridComp.eps │ │ │ ├── so2gridComp.jpg │ │ │ ├── so2highresdata.eps │ │ │ ├── so2on0.5Agrid.eps │ │ │ ├── so2on0.5Agrid.jpg │ │ │ ├── so2on1Agrid.eps │ │ │ ├── so2plot.pro │ │ │ └── test.ps │ │ ├── SO3 │ │ │ ├── SO3.XS.dat │ │ │ ├── SO3_HV_SO2_O.QY.dat │ │ │ ├── SO3_alinc.dat │ │ │ └── SO3_zahnle.abs │ │ ├── XS_HNO3.f │ │ └── wl_left_template.abs │ ├── aerosol.table │ └── photo.dat ├── INPUTFILES │ ├── BROKEN_TEMPLATES │ │ ├── Mars │ │ │ ├── PLANET.dat │ │ │ ├── PLANET.mars │ │ │ ├── in.dist │ │ │ ├── input_photchem.dat │ │ │ ├── parameters.inc │ │ │ ├── reactions.rx │ │ │ └── species.dat │ │ ├── ModernEarth+Cl │ │ │ ├── PLANET.dat │ │ │ ├── in.dist │ │ │ ├── input_photchem.dat │ │ │ ├── parameters.inc │ │ │ ├── reactions.rx │ │ │ └── species.dat │ │ ├── Titan │ │ │ └── reactions.rx │ │ ├── modernEarthS+CL │ │ │ ├── PLANET.dat │ │ │ ├── in.dist │ │ │ ├── input_photchem.dat │ │ │ ├── new │ │ │ │ ├── PLANET.dat │ │ │ │ ├── in.dist │ │ │ │ ├── input_photchem.dat │ │ │ │ ├── old │ │ │ │ │ ├── PLANET.dat │ │ │ │ │ ├── in.dist │ │ │ │ │ ├── input_photchem.dat │ │ │ │ │ ├── parameters.inc │ │ │ │ │ ├── reactions.rx │ │ │ │ │ └── species.dat │ │ │ │ ├── parameters.inc │ │ │ │ ├── reactions.rx │ │ │ │ └── species.dat │ │ │ ├── parameters.inc │ │ │ ├── reactions.rx │ │ │ └── species.dat │ │ └── modernEarthS │ │ │ ├── PLANET.EARTH │ │ │ ├── broken │ │ │ ├── PLANET.EARTH │ │ │ ├── in.dist │ │ │ ├── parameters.inc │ │ │ ├── reactions.rx │ │ │ └── species.dat │ │ │ ├── in.dist │ │ │ ├── input_photchem.dat │ │ │ ├── parameters.inc │ │ │ ├── planet.dat │ │ │ ├── reactions.rx │ │ │ └── species.dat │ ├── README.TXT │ ├── TEMPLATES │ │ ├── Archean+haze │ │ │ ├── PLANET.dat │ │ │ ├── in.dist │ │ │ ├── input_photchem.dat │ │ │ ├── old │ │ │ │ ├── ISOparameters copy.inc │ │ │ │ ├── ISOparameters.inc │ │ │ │ ├── ISOreactions copy.rx │ │ │ │ ├── ISOreactions.rx │ │ │ │ ├── in.dist │ │ │ │ ├── input_photchem.dat.kida │ │ │ │ ├── kidaformat_withzerosulfur_reactions.rx │ │ │ │ ├── parameters.inc │ │ │ │ ├── parametersREGULAR copy.inc │ │ │ │ ├── parametersREGULAR.inc │ │ │ │ ├── reactions.rx │ │ │ │ ├── reactions.rx.kida │ │ │ │ ├── reactions_donedit.rx │ │ │ │ ├── rxns.out │ │ │ │ └── species_for_sorg.dat │ │ │ ├── parameters.inc │ │ │ ├── reactions.rx │ │ │ └── species.dat │ │ ├── ArcheanSORG+haze │ │ │ ├── OLD_FILES │ │ │ │ ├── ISOparameters.inc │ │ │ │ ├── ISOreactions.rx │ │ │ │ ├── old │ │ │ │ │ ├── parameters.inc │ │ │ │ │ └── reactions.rx │ │ │ │ ├── old2 │ │ │ │ │ ├── parameters.inc │ │ │ │ │ └── reactions.rx │ │ │ │ ├── parameters.inc │ │ │ │ ├── parametersREGULAR.inc │ │ │ │ └── reactions.rx │ │ │ ├── PLANET.dat │ │ │ ├── in.dist │ │ │ ├── input_photchem.dat │ │ │ ├── parameters.inc │ │ │ ├── reactions.rx │ │ │ └── species.dat │ │ ├── Mars │ │ │ ├── PLANET.dat │ │ │ ├── in.dist │ │ │ ├── input_photchem.dat │ │ │ ├── parameters.inc │ │ │ ├── reactions.rx │ │ │ ├── reactions_kida_needswork.rx │ │ │ └── species.dat │ │ ├── ModernEarthComplex │ │ │ ├── PLANET.dat │ │ │ ├── in.dist │ │ │ ├── input_photchem.dat │ │ │ ├── parameters.inc │ │ │ ├── reactions.rx │ │ │ └── species.dat │ │ ├── ModernEarthSimple │ │ │ ├── PLANET.dat │ │ │ ├── in.dist │ │ │ ├── input_photchem.dat │ │ │ ├── old │ │ │ │ ├── PLANET.dat │ │ │ │ ├── in.dist │ │ │ │ ├── in_oldtemperatureprofile.dist │ │ │ │ ├── input_photchem.dat │ │ │ │ ├── parameters.inc │ │ │ │ ├── reactions.rx │ │ │ │ ├── reactions_newkidaflippedbeta.rx │ │ │ │ ├── species.dat │ │ │ │ └── species_backup.dat │ │ │ ├── parameters.inc │ │ │ ├── reactions.rx │ │ │ └── species.dat │ │ └── README.txt │ └── params.dat ├── LINPACK │ ├── dasum.f │ ├── daxpy.f │ ├── ddot.f │ ├── dgbco.f │ ├── dgbfa.f │ ├── dgbsl.f │ ├── dscal.f │ ├── idamax.f │ ├── isamax.f │ ├── sasum.f │ ├── saxpy.f │ ├── sdot.f │ ├── sgbco.f │ ├── sgbfa.f │ ├── sgbsl.f │ ├── sgefa.f │ ├── sgesl.f │ ├── sgtsl.f │ └── sscal.f ├── OBJECTFILES │ └── placeholder ├── OUTPUT │ └── readme.txt ├── QUADPACK │ ├── d1mach.f │ ├── dqk15.f │ └── intlib.f90 ├── SUBROUTINES │ ├── Aercon.f │ ├── Aertab.f │ ├── Aqueous.f │ ├── Chempl.f │ ├── Densty.f │ ├── Difco.f │ ├── Dochem.f │ ├── Initmie.f │ ├── Initmiefrac.f │ ├── Initphoto.f │ ├── Lnum.f │ ├── Ltning.f │ ├── Output.f │ ├── PhotSatrat.f │ ├── Photgrid.f │ ├── Photo.f │ ├── Rainout.f │ ├── Rates.f │ ├── RatesHJs.f │ ├── Rateswasp12b.f │ ├── Rayleigh.f │ ├── Sedmnt.f │ ├── Spline.f │ ├── Twostr.f │ ├── Xsections.f │ ├── Youngsun.f │ ├── inter2.f │ ├── inter3.f │ ├── ireset.f │ ├── newXS.f │ └── new_Initmie.f ├── TODOlist └── convdist.f ├── PhotoMain.f ├── PhotoMake ├── README.md ├── RunModel.txt ├── RunModels.sh ├── TestModels.sh ├── couple.f └── to_do.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/.gitignore -------------------------------------------------------------------------------- /CLIMA/CONVEC/convec.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/CONVEC/convec.f -------------------------------------------------------------------------------- /CLIMA/CONVEC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/CONVEC/readme.txt -------------------------------------------------------------------------------- /CLIMA/CONVEC/relhum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/CONVEC/relhum.f -------------------------------------------------------------------------------- /CLIMA/CONVEC/satco2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/CONVEC/satco2.f -------------------------------------------------------------------------------- /CLIMA/CONVEC/satrat.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/CONVEC/satrat.f -------------------------------------------------------------------------------- /CLIMA/COUPLE/input_interp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/COUPLE/input_interp.f -------------------------------------------------------------------------------- /CLIMA/COUPLE/output_photo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/COUPLE/output_photo.f -------------------------------------------------------------------------------- /CLIMA/COUPLE/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/COUPLE/readme.txt -------------------------------------------------------------------------------- /CLIMA/COUPLE/translatem.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/COUPLE/translatem.f -------------------------------------------------------------------------------- /CLIMA/COUPLE/translatem_INPUT.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/COUPLE/translatem_INPUT.f -------------------------------------------------------------------------------- /CLIMA/COUPLE/translatem_good.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/COUPLE/translatem_good.f -------------------------------------------------------------------------------- /CLIMA/DATA/BIG_DATAFILE.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/BIG_DATAFILE.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/C2H6_Jacob.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/C2H6_Jacob.dat -------------------------------------------------------------------------------- /CLIMA/DATA/CO2_tables.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/CO2_tables.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/FinalCIAcoeffs2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/FinalCIAcoeffs2.dat -------------------------------------------------------------------------------- /CLIMA/DATA/GJ581.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/GJ581.txt -------------------------------------------------------------------------------- /CLIMA/DATA/H2CIA_TABLE.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/H2CIA_TABLE.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/H2N2CIA_TABLE.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/H2N2CIA_TABLE.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/H2O_tables.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/H2O_tables.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/IR_BPS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/IR_BPS.dat -------------------------------------------------------------------------------- /CLIMA/DATA/M5V.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/M5V.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/NEWHITRAN_ir_55_H2O.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/NEWHITRAN_ir_55_H2O.dat -------------------------------------------------------------------------------- /CLIMA/DATA/O2O2CIA_TABLE.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/O2O2CIA_TABLE.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/P_T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/P_T -------------------------------------------------------------------------------- /CLIMA/DATA/Ramses_HITEMP_solar_38_H2O.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/Ramses_HITEMP_solar_38_H2O.dat -------------------------------------------------------------------------------- /CLIMA/DATA/Ramses_HITRAN_ir_55_CO2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/Ramses_HITRAN_ir_55_CO2.dat -------------------------------------------------------------------------------- /CLIMA/DATA/Ramses_HITRAN_solar_38_CO2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/Ramses_HITRAN_solar_38_CO2.dat -------------------------------------------------------------------------------- /CLIMA/DATA/SOLAR_BPS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/SOLAR_BPS.dat -------------------------------------------------------------------------------- /CLIMA/DATA/STELLAR_SPECTRA.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/STELLAR_SPECTRA.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/STELLAR_SPECTRABTSettl.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/STELLAR_SPECTRABTSettl.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/STELLAR_SPECTRA_new.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/STELLAR_SPECTRA_new.csv -------------------------------------------------------------------------------- /CLIMA/DATA/STELLAR_SPECTRA_new.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/STELLAR_SPECTRA_new.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/STELLAR_SPECTRA_update.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/STELLAR_SPECTRA_update.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/STELLAR_SPECTRAold.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/STELLAR_SPECTRAold.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/Wolf_HITRAN2016_ir_55_CO2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/Wolf_HITRAN2016_ir_55_CO2.dat -------------------------------------------------------------------------------- /CLIMA/DATA/Wolf_HITRAN2016_ir_55_H2O.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/Wolf_HITRAN2016_ir_55_H2O.dat -------------------------------------------------------------------------------- /CLIMA/DATA/ch4_kcoeffs.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/ch4_kcoeffs.out -------------------------------------------------------------------------------- /CLIMA/DATA/fluxesKGF_surf.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/fluxesKGF_surf.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/ir_expsums.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/ir_expsums.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/irtotal.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/irtotal.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/irtotalfract.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/irtotalfract.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/irtotalfract1.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/irtotalfract1.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/irtotalfract2.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/irtotalfract2.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/irtotalfract3.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/irtotalfract3.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/irtotalfract4.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/irtotalfract4.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/irtotalfract_gk.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/irtotalfract_gk.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/irtotalfract_kh.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/irtotalfract_kh.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/irtotalfract_kmt.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/irtotalfract_kmt.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/muscles_stars.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/muscles_stars.dat -------------------------------------------------------------------------------- /CLIMA/DATA/nearIR_expsums.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/nearIR_expsums.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/read38O2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/read38O2.f90 -------------------------------------------------------------------------------- /CLIMA/DATA/readk.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/readk.f90 -------------------------------------------------------------------------------- /CLIMA/DATA/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/readme.txt -------------------------------------------------------------------------------- /CLIMA/DATA/solar_data_38.pdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/solar_data_38.pdat -------------------------------------------------------------------------------- /CLIMA/DATA/soltotal.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/soltotal.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/soltotalfract.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/soltotalfract.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/soltotalfract1.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/soltotalfract1.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/soltotalfract2.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/soltotalfract2.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/soltotalfract3.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/soltotalfract3.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/soltotalfract4.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/soltotalfract4.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/soltotalfract_gk.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/soltotalfract_gk.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/soltotalfract_kh.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/soltotalfract_kh.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/soltotalfract_kmt.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/soltotalfract_kmt.DAT -------------------------------------------------------------------------------- /CLIMA/DATA/stellar_spectra.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/DATA/stellar_spectra.f90 -------------------------------------------------------------------------------- /CLIMA/INCLUDE/header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/INCLUDE/header.inc -------------------------------------------------------------------------------- /CLIMA/IO/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/IO/README -------------------------------------------------------------------------------- /CLIMA/IO/hcaer.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/IO/hcaer.out -------------------------------------------------------------------------------- /CLIMA/IO/hcaer_nohaze.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/IO/hcaer_nohaze.out -------------------------------------------------------------------------------- /CLIMA/IO/mixing_ratios.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/IO/mixing_ratios.dat -------------------------------------------------------------------------------- /CLIMA/IO/weight_factors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/IO/weight_factors.txt -------------------------------------------------------------------------------- /CLIMA/OBJECT_CLIMA/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CLIMA/OBJECT_RRTM/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CLIMA/PLUME/complume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PLUME/complume -------------------------------------------------------------------------------- /CLIMA/PLUME/comsatplume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PLUME/comsatplume -------------------------------------------------------------------------------- /CLIMA/PLUME/plume.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PLUME/plume.f -------------------------------------------------------------------------------- /CLIMA/PLUME/resetr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PLUME/resetr.f -------------------------------------------------------------------------------- /CLIMA/PLUME/scopy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PLUME/scopy.f -------------------------------------------------------------------------------- /CLIMA/PLUME/stabco.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PLUME/stabco.f -------------------------------------------------------------------------------- /CLIMA/PLUME/vinterp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PLUME/vinterp.f -------------------------------------------------------------------------------- /CLIMA/PLUME/zero.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PLUME/zero.f -------------------------------------------------------------------------------- /CLIMA/PRTCL/aerabsdata.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PRTCL/aerabsdata.f -------------------------------------------------------------------------------- /CLIMA/PRTCL/gridaer.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PRTCL/gridaer.f -------------------------------------------------------------------------------- /CLIMA/PRTCL/interpar1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PRTCL/interpar1.f -------------------------------------------------------------------------------- /CLIMA/PRTCL/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/PRTCL/readme.txt -------------------------------------------------------------------------------- /CLIMA/RADTRANS/delta2str.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/delta2str.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/delta2strir.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/delta2strir.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/delta2strirmike.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/delta2strirmike.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/gascon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/gascon.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/gascon_Gray.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/gascon_Gray.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/gasconold.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/gasconold.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/ir.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/ir.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/ir_Gray.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/ir_Gray.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/ir_ethane.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/ir_ethane.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/ir_no_CH4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/ir_no_CH4.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/irm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/irm.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/irme.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/irme.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/irstuff/ir_newCIA.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/irstuff/ir_newCIA.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/planck.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/planck.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/rayley.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/rayley.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/readme.txt -------------------------------------------------------------------------------- /CLIMA/RADTRANS/solar.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/solar.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/solar_no_CH4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/solar_no_CH4.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/solar_with_CH4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/solar_with_CH4.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/solarm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/solarm.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/solarmox.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/solarmox.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/solarox.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/solarox.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/tridag.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/tridag.f -------------------------------------------------------------------------------- /CLIMA/RADTRANS/tridag.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RADTRANS/tridag.f90 -------------------------------------------------------------------------------- /CLIMA/RRTM/cldprop.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/cldprop.f -------------------------------------------------------------------------------- /CLIMA/RRTM/extra.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/extra.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_g.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_g.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB01.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB02.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB03.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB04.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB04.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB05.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB06.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB07.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB07.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB08.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB08.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB09.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB09.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB10.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB10.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB11.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB11.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB12.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB12.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB13.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB13.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB14.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB14.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB15.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB15.f -------------------------------------------------------------------------------- /CLIMA/RRTM/k_gB16.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/k_gB16.f -------------------------------------------------------------------------------- /CLIMA/RRTM/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/readme.txt -------------------------------------------------------------------------------- /CLIMA/RRTM/rrtatm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/rrtatm.f -------------------------------------------------------------------------------- /CLIMA/RRTM/rrtm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/rrtm.f -------------------------------------------------------------------------------- /CLIMA/RRTM/rtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/rtr.f -------------------------------------------------------------------------------- /CLIMA/RRTM/rtrcld.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/rtrcld.f -------------------------------------------------------------------------------- /CLIMA/RRTM/rtrcldmr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/rtrcldmr.f -------------------------------------------------------------------------------- /CLIMA/RRTM/rtreg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/rtreg.f -------------------------------------------------------------------------------- /CLIMA/RRTM/rtregcld.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/rtregcld.f -------------------------------------------------------------------------------- /CLIMA/RRTM/rtregcldmr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/rtregcldmr.f -------------------------------------------------------------------------------- /CLIMA/RRTM/s.util_cray.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/s.util_cray.f -------------------------------------------------------------------------------- /CLIMA/RRTM/setcoef.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/setcoef.f -------------------------------------------------------------------------------- /CLIMA/RRTM/taumol.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/taumol.f -------------------------------------------------------------------------------- /CLIMA/RRTM/util_cray.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/util_cray.f -------------------------------------------------------------------------------- /CLIMA/RRTM/util_linux_pgi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/util_linux_pgi.f -------------------------------------------------------------------------------- /CLIMA/RRTM/util_osx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/util_osx.f -------------------------------------------------------------------------------- /CLIMA/RRTM/util_sun.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/RRTM/util_sun.f -------------------------------------------------------------------------------- /CLIMA/SETUP/choose_star.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/choose_star.f -------------------------------------------------------------------------------- /CLIMA/SETUP/grid.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/grid.f -------------------------------------------------------------------------------- /CLIMA/SETUP/grid_Gray.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/grid_Gray.f -------------------------------------------------------------------------------- /CLIMA/SETUP/grid_compare.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/grid_compare.f -------------------------------------------------------------------------------- /CLIMA/SETUP/interco2cia2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/interco2cia2.f -------------------------------------------------------------------------------- /CLIMA/SETUP/interp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/interp.f -------------------------------------------------------------------------------- /CLIMA/SETUP/interpco2cia.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/interpco2cia.f -------------------------------------------------------------------------------- /CLIMA/SETUP/interph2h2cia.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/interph2h2cia.f -------------------------------------------------------------------------------- /CLIMA/SETUP/interph2n2cia.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/interph2n2cia.f -------------------------------------------------------------------------------- /CLIMA/SETUP/interpir.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/interpir.f -------------------------------------------------------------------------------- /CLIMA/SETUP/interpo2cia.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/interpo2cia.f -------------------------------------------------------------------------------- /CLIMA/SETUP/interpozone.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/interpozone.f -------------------------------------------------------------------------------- /CLIMA/SETUP/interpsolar.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/interpsolar.f -------------------------------------------------------------------------------- /CLIMA/SETUP/irexpsums.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/irexpsums.f -------------------------------------------------------------------------------- /CLIMA/SETUP/irexpsumsold.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/irexpsumsold.f -------------------------------------------------------------------------------- /CLIMA/SETUP/ozone.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/ozone.f -------------------------------------------------------------------------------- /CLIMA/SETUP/pickstar.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/pickstar.f -------------------------------------------------------------------------------- /CLIMA/SETUP/profile.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/profile.f -------------------------------------------------------------------------------- /CLIMA/SETUP/readBTSettl_NEW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/readBTSettl_NEW.m -------------------------------------------------------------------------------- /CLIMA/SETUP/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/readme.txt -------------------------------------------------------------------------------- /CLIMA/SETUP/readsol.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/readsol.f -------------------------------------------------------------------------------- /CLIMA/SETUP/stellar_spectraNEW.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/SETUP/stellar_spectraNEW.f90 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/HZ_periods.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/HZ_periods.f90 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/IHZ_Moist.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/IHZ_Moist.f90 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/IHZ_Seff_fit.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/IHZ_Seff_fit.f90 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/IHZ_runaway.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/IHZ_runaway.f90 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/OHZ_MaxGr.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/OHZ_MaxGr.f90 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/a.out -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/baraffe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/baraffe.txt -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/curvefit_ihz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/curvefit_ihz -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/dartmouth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/dartmouth.txt -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/files/Habflux.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/files/Habflux.m -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/files/Selsis.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/files/Selsis.f90 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/files/chz.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/files/chz.f90 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/files/sun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/files/sun -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/gnuplot_HZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/gnuplot_HZ -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/observed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/observed.m -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/radial_vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/radial_vel -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/radial_vel.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/radial_vel.f90 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/read_baraffe.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/read_baraffe.f90 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/t1 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/t2 -------------------------------------------------------------------------------- /CLIMA/STAR_Mass_Teff_logG/thing1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STAR_Mass_Teff_logG/thing1 -------------------------------------------------------------------------------- /CLIMA/STEAM/steam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/STEAM/steam.f -------------------------------------------------------------------------------- /CLIMA/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/CLIMA/copy.py -------------------------------------------------------------------------------- /COUPLE/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/COUPLE/.gitignore -------------------------------------------------------------------------------- /ClimaMain.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/ClimaMain.f -------------------------------------------------------------------------------- /ClimaMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/ClimaMake -------------------------------------------------------------------------------- /DOCUMENTS/README_GitBranchManagement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/DOCUMENTS/README_GitBranchManagement -------------------------------------------------------------------------------- /DOCUMENTS/add.species: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/DOCUMENTS/add.species -------------------------------------------------------------------------------- /DOCUMENTS/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/DOCUMENTS/todo.txt -------------------------------------------------------------------------------- /INCLUDE/comCLIM.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/INCLUDE/comCLIM.inc -------------------------------------------------------------------------------- /INCLUDE/comDIAG.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/INCLUDE/comDIAG.inc -------------------------------------------------------------------------------- /INCLUDE/comFLUXPHOTO.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/INCLUDE/comFLUXPHOTO.inc -------------------------------------------------------------------------------- /INCLUDE/comFLXLOW.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/INCLUDE/comFLXLOW.inc -------------------------------------------------------------------------------- /INCLUDE/comH2BALANCE.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/INCLUDE/comH2BALANCE.inc -------------------------------------------------------------------------------- /INCLUDE/comPHOT.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/INCLUDE/comPHOT.inc -------------------------------------------------------------------------------- /INCLUDE/comSTR.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/INCLUDE/comSTR.inc -------------------------------------------------------------------------------- /IO/PLANET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/IO/PLANET.dat -------------------------------------------------------------------------------- /IO/clima_allout.tab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IO/mixing_ratios.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/IO/mixing_ratios.dat -------------------------------------------------------------------------------- /IO/output_couple.dat: -------------------------------------------------------------------------------- 1 | PARAMETERS FOR THE PLANET AROUND Sun 2 | 3 | -------------------------------------------------------------------------------- /IO/parameters.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/IO/parameters.inc -------------------------------------------------------------------------------- /IO/photchem_allout.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OBJECT_COUPLE/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/F2V_units.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/F2V_units.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/HD85512_K6V_units.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/HD85512_K6V_units.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/HD97658_K1V_units.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/HD97658_K1V_units.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/K2V_units_fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/K2V_units_fixed.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/M0V.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/M0V.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/M5V_units.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/M5V_units.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/Proxima_units_rev1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/Proxima_units_rev1.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/T3200_units.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/T3200_units.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/TRAPPIST-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/TRAPPIST-1.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/composite.atl1_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/composite.atl1_1 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/dMV.flx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/dMV.flx -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/gj876_77_units.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/gj876_77_units.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/gj876_78_units.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/gj876_78_units.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/kuruczflux.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/kuruczflux.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_gj1214.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_gj1214.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_gj176.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_gj176.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_gj436.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_gj436.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_gj551.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_gj551.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_gj581.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_gj581.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_gj667c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_gj667c.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_gj832.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_gj832.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_gj876.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_gj876.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_hd40307.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_hd40307.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_hd85512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_hd85512.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_hd97658.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_hd97658.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/muscles_v-eps-eri.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/muscles_v-eps-eri.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/old_caution/ADLeo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/old_caution/ADLeo.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/old_caution/F2V.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/old_caution/F2V.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/old_caution/K2V.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/old_caution/K2V.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/old_caution/K2Vnew.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/old_caution/K2Vnew.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/old_caution/T3200.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/old_caution/T3200.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/old_caution/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/old_caution/readme.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/placeholder_units.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/placeholder_units.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/FLUX/zahnle.flx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/FLUX/zahnle.flx -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/GRIDS/0.5A.grid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/GRIDS/0.5A.grid -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/GRIDS/alinc.grid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/GRIDS/alinc.grid -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/GRIDS/claire.grid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/GRIDS/claire.grid -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/GRIDS/isaksen.grid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/GRIDS/isaksen.grid -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/GRIDS/kockarts.grid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/GRIDS/kockarts.grid -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/GRIDS/makegrid.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/GRIDS/makegrid.pro -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/GRIDS/zahnle.grid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/GRIDS/zahnle.grid -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/GRIDS/zahnle2.grid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/GRIDS/zahnle2.grid -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/ABLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/ABLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/AERBLK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/AERBLK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/BBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/BBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/CBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/CBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/DBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/DBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/EBLOK.inc: -------------------------------------------------------------------------------- 1 | SPg__?}W'o}GO 3M'O Mg -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/FBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/FBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/GBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/GBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/JBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/JBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/LTBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/LTBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/MBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/MBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/MFBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/MFBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/NBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/NBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/PBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/PBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/PHOTABLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/PHOTABLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/QBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/QBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/RBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/RBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/RRATS.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/RRATS.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/SATBLK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/SATBLK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/SBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/SBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/SULBLK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/SULBLK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/WBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/WBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/ZBLOK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/ZBLOK.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/comPRESS1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/comPRESS1.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/INCLUDE/parNZ.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/INCLUDE/parNZ.inc -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.001um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.001um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.002um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.002um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.003um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.003um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.004um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.004um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.005um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.005um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.006um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.006um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.007um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.007um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.008um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.008um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.009um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.009um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.010um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.010um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.030um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.030um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.050um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.050um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.070um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.070um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.100um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.100um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.130um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.130um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.150um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.150um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.170um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.170um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.200um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.200um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.230um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.230um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.250um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.250um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.270um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.270um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.300um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.300um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.330um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.330um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.350um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.350um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.370um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.370um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.400um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.400um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.430um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.430um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.450um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.450um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.470um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.470um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.500um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.500um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.530um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.530um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.550um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.550um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.570um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.570um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.600um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.600um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.630um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.630um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.650um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.650um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.670um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.670um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.700um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.700um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.730um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.730um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.750um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.750um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.770um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.770um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.800um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.800um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.830um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.830um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.850um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.850um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.870um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.870um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.900um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.900um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.930um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.930um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.950um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.950um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts0.970um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts0.970um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts1.000um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts1.000um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f/fractopts2.000um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f/fractopts2.000um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.001um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.001um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.002um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.002um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.003um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.003um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.004um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.004um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.005um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.005um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.006um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.006um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.007um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.007um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.008um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.008um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.009um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.009um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.010um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.010um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.030um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.030um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.050um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.050um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.070um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.070um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.100um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.100um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.130um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.130um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.150um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.150um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.170um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.170um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.200um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.200um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.230um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.230um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.250um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.250um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.270um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.270um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.300um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.300um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.330um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.330um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.350um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.350um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.370um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.370um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.400um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.400um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.430um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.430um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.450um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.450um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.470um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.470um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.500um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.500um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.530um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.530um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.550um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.550um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.570um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.570um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.600um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.600um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.630um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.630um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.650um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.650um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.670um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.670um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.700um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.700um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.730um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.730um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.750um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.750um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.770um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.770um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.800um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.800um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.830um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.830um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.850um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.850um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.870um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.870um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.900um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.900um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.930um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.930um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.950um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.950um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts0.970um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts0.970um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts1.000um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts1.000um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f0/fractopts2.000um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f0/fractopts2.000um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.001um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.001um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.002um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.002um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.003um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.003um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.004um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.004um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.005um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.005um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.006um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.006um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.007um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.007um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.008um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.008um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.009um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.009um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.010um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.010um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.030um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.030um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.050um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.050um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.070um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.070um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.100um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.100um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.130um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.130um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.150um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.150um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.170um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.170um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.200um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.200um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.230um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.230um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.250um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.250um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.270um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.270um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.300um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.300um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.330um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.330um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.350um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.350um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.370um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.370um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.400um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.400um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.430um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.430um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.450um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.450um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.470um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.470um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.500um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.500um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.530um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.530um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.550um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.550um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.570um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.570um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.600um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.600um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.630um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.630um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.650um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.650um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.670um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.670um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.700um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.700um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.730um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.730um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.750um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.750um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.770um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.770um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.800um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.800um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.830um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.830um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.850um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.850um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.870um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.870um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.900um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.900um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.930um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.930um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.950um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.950um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts0.970um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts0.970um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts1.000um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts1.000um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f1/fractopts2.000um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f1/fractopts2.000um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.001um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.001um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.002um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.002um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.003um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.003um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.004um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.004um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.005um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.005um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.006um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.006um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.007um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.007um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.008um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.008um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.009um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.009um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.010um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.010um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.030um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.030um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.050um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.050um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.070um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.070um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.100um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.100um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.130um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.130um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.150um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.150um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.170um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.170um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.200um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.200um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.230um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.230um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.250um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.250um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.270um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.270um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.300um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.300um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.330um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.330um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.350um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.350um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.370um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.370um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.400um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.400um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.430um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.430um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.450um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.450um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.470um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.470um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.500um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.500um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.530um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.530um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.550um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.550um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.570um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.570um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.600um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.600um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.630um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.630um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.650um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.650um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.670um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.670um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.700um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.700um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.730um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.730um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.750um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.750um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.770um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.770um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.800um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.800um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.830um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.830um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.850um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.850um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.870um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.870um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.900um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.900um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.930um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.930um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.950um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.950um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts0.970um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts0.970um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts1.000um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts1.000um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f2/fractopts2.000um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f2/fractopts2.000um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.001um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.001um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.002um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.002um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.003um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.003um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.004um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.004um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.005um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.005um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.006um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.006um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.007um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.007um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.008um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.008um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.009um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.009um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.010um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.010um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.030um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.030um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.050um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.050um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.070um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.070um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.100um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.100um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.130um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.130um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.150um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.150um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.170um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.170um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.200um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.200um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.230um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.230um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.250um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.250um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.270um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.270um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.300um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.300um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.330um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.330um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.350um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.350um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.370um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.370um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.400um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.400um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.430um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.430um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.450um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.450um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.470um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.470um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.500um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.500um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.530um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.530um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.550um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.550um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.570um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.570um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.600um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.600um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.630um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.630um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.650um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.650um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.670um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.670um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.700um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.700um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.730um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.730um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.750um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.750um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.770um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.770um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.800um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.800um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.830um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.830um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.850um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.850um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.870um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.870um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.900um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.900um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.930um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.930um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.950um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.950um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts0.970um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts0.970um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts1.000um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts1.000um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f3/fractopts2.000um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f3/fractopts2.000um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.001um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.001um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.002um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.002um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.003um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.003um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.004um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.004um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.005um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.005um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.006um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.006um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.007um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.007um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.008um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.008um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.009um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.009um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.010um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.010um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.030um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.030um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.050um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.050um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.070um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.070um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.100um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.100um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.130um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.130um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.150um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.150um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.170um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.170um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.200um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.200um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.230um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.230um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.250um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.250um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.270um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.270um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.300um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.300um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.330um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.330um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.350um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.350um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/f4/fractopts0.370um.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/f4/fractopts0.370um.txt -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol0001.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol0001.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol0002.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol0002.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol0003.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol0003.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol0004.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol0004.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol0005.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol0005.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol0006.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol0006.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol0007.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol0007.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol0008.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol0008.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol0009.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol0009.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol001.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol001.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol003.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol003.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol005.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol005.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol007.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol007.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol01.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol01.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol013.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol013.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol015.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol015.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol017.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol017.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol02.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol02.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol023.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol023.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol025.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol025.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol027.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol027.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol03.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol03.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol033.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol033.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol035.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol035.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol037.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol037.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol04.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol04.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol043.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol043.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol045.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol045.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol047.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol047.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol05.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol05.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol053.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol053.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol055.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol055.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol057.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol057.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol06.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol06.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol063.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol063.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol065.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol065.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol067.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol067.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol07.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol07.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol073.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol073.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol075.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol075.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol077.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol077.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol08.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol08.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol083.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol083.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol085.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol085.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol087.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol087.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol09.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol09.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol093.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol093.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol095.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol095.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol097.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol097.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol1.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol1.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/fitmythol2.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/fitmythol2.DAT -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.01um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.01um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.02um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.02um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.03um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.03um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.04um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.04um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.05um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.05um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.06um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.06um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.07um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.07um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.08um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.08um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.09um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.09um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.10um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.10um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.20um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.20um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.30um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.30um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.40um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.40um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.50um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.50um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.60um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.60um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.70um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.70um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.80um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.80um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_0.90um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_0.90um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/h2so4_mono_1.00um.mie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/h2so4_mono_1.00um.mie -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/plotmie.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/plotmie.pro -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/plotmie2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/plotmie2.pro -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/MIE/readmie.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/MIE/readmie.pro -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/C2H2/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/C2H2/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/C2H4/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/C2H4/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/C2H5CHO/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/C2H5CHO/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/C2H6S/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/C2H6S/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/C2H6S2/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/C2H6S2/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/C2H6SX/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/C2H6SX/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/C2H6SXS/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/C2H6SXS/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/C3H3/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/C3H3/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/C3H6/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/C3H6/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/C3H8/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/C3H8/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CH/CH.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CH/CH.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CH2CCH2/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CH2CCH2/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CH2CO/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CH2CO/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CH3/CH3.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CH3/CH3.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CH3C2H/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CH3C2H/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CH3CHO/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CH3CHO/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CH3SH/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CH3SH/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CH4/CH4.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CH4/CH4.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CLO/CLO.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CLO/CLO.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CO/CO.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CO/CO.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CO2/CO2.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CO2/CO2.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CO2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CO2/README -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CS2/CS2.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CS2/CS2.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CS2/CS2_mpi.abs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CS2/CS2_mpi.abs -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/CS2/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/CS2/read.me -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/H2/H2.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/H2/H2.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/H2O/H2O.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/H2O/H2O.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/H2S/H2S.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/H2S/H2S.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/H2S/H2S_mpi.abs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/H2S/H2S_mpi.abs -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/HCL/HCL.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/HCL/HCL.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/HCN/HCN.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/HCN/HCN.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/HNC/HNC.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/HNC/HNC.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/HNO3/hno3x.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/HNO3/hno3x.pro -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/HO2/HO2.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/HO2/HO2.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/N2/N2.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/N2/N2.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/N2O/N2O.QY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/N2O/N2O.QY.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/N2O/N2O.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/N2O/N2O.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/N2O5/N2O5td.abs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/N2O5/N2O5td.abs -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/NH3/NH3.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/NH3/NH3.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/NO/NO_alinc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/NO/NO_alinc.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/NO/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/NO/README -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/NO2/NO2.QY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/NO2/NO2.QY.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/NO2/NO2.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/NO2/NO2.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/NO2/NO2_Har.abs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/NO2/NO2_Har.abs -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/NO3/NO3.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/NO3/NO3.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/NO3/NO3.abs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/NO3/NO3.abs -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/NO3/NO3QY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/NO3/NO3QY.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/NO3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/NO3/README -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/ArchIO20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/ArchIO20 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/ArchIO22NG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/ArchIO22NG -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/ArchIO22NG_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/ArchIO22NG_2 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/ArchIO22OG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/ArchIO22OG -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/ArchIO22OG_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/ArchIO22OG_2 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/ArcheanIO21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/ArcheanIO21 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/O2.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/O2.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/O2D.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/O2D.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/O2_alinc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/O2_alinc.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/O2plot.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/O2plot.pro -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/O2rates.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/O2rates.pro -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/README -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yosh2NewGrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yosh2NewGrid -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92a -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92b -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92c -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92d -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92e -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92f -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92g -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92h -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92i -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92j -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92k -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/Yoshino92l -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/modIO20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/modIO20 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/modIO21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/modIO21 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/modIO22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/modIO22 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/newArchIO21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/newArchIO21 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/newLArchIO21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/newLArchIO21 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/newgrid.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/newgrid.pro -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/o2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/o2.eps -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/o2prates.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/o2prates.eps -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/o2prates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/o2prates.jpg -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/o2xs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/o2xs.jpg -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/pratesExpSum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/pratesExpSum -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O2/yosh.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O2/yosh.sav -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O3/O3.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O3/O3.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O3/O3_alinc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O3/O3_alinc.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/O3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/O3/README -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/OCS/OCS.QY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/OCS/OCS.QY.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/OCS/OCS.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/OCS/OCS.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/OH/OH.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/OH/OH.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/README -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/S2/S2.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/S2/S2.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/S3/S3_alinc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/S3/S3_alinc.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/S4/S4_alinc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/S4/S4_alinc.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/S8/S8L.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/S8/S8L.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/S8/S8R.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/S8/S8R.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/SO/SO.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/SO/SO.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/SO2/HRnew32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/SO2/HRnew32 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/SO2/HRnew33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/SO2/HRnew33 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/SO2/HRnew34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/SO2/HRnew34 -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/SO2/SO2.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/SO2/SO2.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/SO2/so2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/SO2/so2.jpg -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/SO2/so2plot.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/SO2/so2plot.pro -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/SO2/test.ps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/SO3/SO3.XS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/SO3/SO3.XS.dat -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/XSECTIONS/XS_HNO3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/XSECTIONS/XS_HNO3.f -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/aerosol.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/aerosol.table -------------------------------------------------------------------------------- /PHOTOCHEM/DATA/photo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/DATA/photo.dat -------------------------------------------------------------------------------- /PHOTOCHEM/INPUTFILES/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/INPUTFILES/README.TXT -------------------------------------------------------------------------------- /PHOTOCHEM/INPUTFILES/params.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/INPUTFILES/params.dat -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/dasum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/dasum.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/daxpy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/daxpy.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/ddot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/ddot.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/dgbco.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/dgbco.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/dgbfa.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/dgbfa.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/dgbsl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/dgbsl.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/dscal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/dscal.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/idamax.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/idamax.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/isamax.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/isamax.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/sasum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/sasum.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/saxpy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/saxpy.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/sdot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/sdot.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/sgbco.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/sgbco.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/sgbfa.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/sgbfa.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/sgbsl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/sgbsl.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/sgefa.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/sgefa.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/sgesl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/sgesl.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/sgtsl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/sgtsl.f -------------------------------------------------------------------------------- /PHOTOCHEM/LINPACK/sscal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/LINPACK/sscal.f -------------------------------------------------------------------------------- /PHOTOCHEM/OBJECTFILES/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PHOTOCHEM/OUTPUT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/OUTPUT/readme.txt -------------------------------------------------------------------------------- /PHOTOCHEM/QUADPACK/d1mach.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/QUADPACK/d1mach.f -------------------------------------------------------------------------------- /PHOTOCHEM/QUADPACK/dqk15.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/QUADPACK/dqk15.f -------------------------------------------------------------------------------- /PHOTOCHEM/QUADPACK/intlib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/QUADPACK/intlib.f90 -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Aercon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Aercon.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Aertab.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Aertab.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Aqueous.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Aqueous.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Chempl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Chempl.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Densty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Densty.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Difco.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Difco.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Dochem.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Dochem.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Initmie.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Initmie.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Initmiefrac.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Initmiefrac.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Initphoto.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Initphoto.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Lnum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Lnum.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Ltning.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Ltning.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Output.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Output.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/PhotSatrat.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/PhotSatrat.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Photgrid.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Photgrid.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Photo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Photo.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Rainout.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Rainout.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Rates.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Rates.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/RatesHJs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/RatesHJs.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Rateswasp12b.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Rateswasp12b.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Rayleigh.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Rayleigh.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Sedmnt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Sedmnt.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Spline.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Spline.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Twostr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Twostr.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Xsections.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Xsections.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/Youngsun.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/Youngsun.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/inter2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/inter2.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/inter3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/inter3.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/ireset.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/ireset.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/newXS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/newXS.f -------------------------------------------------------------------------------- /PHOTOCHEM/SUBROUTINES/new_Initmie.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/SUBROUTINES/new_Initmie.f -------------------------------------------------------------------------------- /PHOTOCHEM/TODOlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/TODOlist -------------------------------------------------------------------------------- /PHOTOCHEM/convdist.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PHOTOCHEM/convdist.f -------------------------------------------------------------------------------- /PhotoMain.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PhotoMain.f -------------------------------------------------------------------------------- /PhotoMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/PhotoMake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/README.md -------------------------------------------------------------------------------- /RunModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/RunModel.txt -------------------------------------------------------------------------------- /RunModels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/RunModels.sh -------------------------------------------------------------------------------- /TestModels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/TestModels.sh -------------------------------------------------------------------------------- /couple.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/couple.f -------------------------------------------------------------------------------- /to_do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualPlanetaryLaboratory/atmos/HEAD/to_do.md --------------------------------------------------------------------------------