Repository of grid results for the 2016 Quasar wind models
This page contains information of how to access spectrum output files for a grid of Quasar wind models run for the [Matthews et al. 2016](http://adsabs.harvard.edu/abs/2016MNRAS.458..293M) paper. The grids of output files can be downloaded by clicking the zip or tar.gz buttons to the left.
filenames are as follows (this is the fiducial model): run42_thmin70_rmin50_a0p5_rv1e19_f0p01.spec
where the variables are as defined in the paper, i.e.
Spectra are split into two grids, depending on clumping factor, and in folders
The output spectrum files follow the astropy conventions with the format
Freq. Lambda Created Emitted CenSrc Disk Wind HitSurf Scattered A20 4.002830e+14 7489.514 0.177 0.149 0.0217 0.127 0.00031 0.029 0 0.307
And thus can be read into a table with the commands
from astropy.io import ascii
data = ascii.read(filename)
You could then make an Flambda flux density plot with wavelength at 20 degrees by doing
import pylab as plt
plt.plot(data["Lambda"], data["A20"])
Any questions or comments, email me at james.matthews [at] physics.ox.ac.uk.