8#ifndef mx_astro_cahoyAlbedos_hpp
9#define mx_astro_cahoyAlbedos_hpp
12#include "../ioutils/readColumns.hpp"
23template <
typename _units>
27 typedef typename units::realT realT;
38 static const bool freq =
false;
44 static constexpr realT
fluxUnits =
static_cast<realT
>( 1 );
46 static constexpr const char *dataDirEnvVar =
"CAHOYALBEDO_DATADIR";
49 static std::string
fileName(
const paramsT ¶ms )
53 if( params.sep == 0.8 )
57 else if( params.sep == 2.0 )
61 else if( params.sep == 5.0 )
65 else if( params.sep == 10.0 )
71 mxError(
"cahoyAlbedos::fileName", MXE_INVALIDARG,
"invalid separation (params.sep)" );
76 fname += ioutils::convertToString<int>( params.metal );
77 fname +=
"x_albedos/00_Spectral_Albedos ";
80 snprintf( pstr, 9,
"%0.5f", params.phase );
91 std::vector<realT> &rawSpectrum,
92 const std::string &path,
93 const paramsT ¶ms )
119template <
typename _units>
122 typedef _units units;
123 typedef typename units::realT realT;
133 std::vector<realT> _sep;
134 std::vector<realT> _phase;
136 std::vector<realT> _lambda;
137 std::vector<std::vector<std::vector<realT>>> _ag;
141 std::vector<realT> &lambda
144 _sep = { 0.8, 2.0, 2.0, 5.0, 10.0 };
165 _ag.resize( _sep.size() );
166 for(
int i = 0; i < _ag.size(); ++i )
167 _ag[i].resize( _phase.size() );
171 for(
int i = 0; i < _sep.size(); ++i )
173 for(
int j = 0; j < _phase.size(); ++j )
178 mxError(
"cahoGrid::loadGrid", MXE_FILERERR,
"Error reading albedo spectrum." );
207 int i_l, i_u, j_l, j_u;
210 if( lambda.size() != this->_spectrum.size() )
213 "cahoyGrid::setSpectrum",
215 "wavelength grid (lambda) is not the same size as used for openGrid, or loadGrid not yet called." );
226 i_l = _sep.size() - 1;
227 while( _sep[i_l] > sep && i_l > 0 )
231 while( i_u < _sep.size() - 1 )
233 if( _sep[i_u] >= sep )
238 j_l = _phase.size() - 1;
241 if( _phase[j_l] <= phase )
247 while( j_u < _phase.size() - 1 )
249 if( _phase[j_u] >= phase )
254 realT x = sep - _sep[i_l];
258 realT y = ( phase - _phase[j_l] );
264 for(
int i = 0; i < this->
_spectrum.size(); ++i )
266 x0 = _ag[i_l][j_l][i];
267 x1 = _ag[i_u][j_l][i];
269 if( y != 0 && j_u != j_l )
271 x0 += ( _ag[i_l][j_u][i] - _ag[i_l][j_l][i] ) * y / ( _phase[j_u] - _phase[j_l] );
272 x1 += ( _ag[i_u][j_u][i] - _ag[i_u][j_l][i] ) * y / ( _phase[j_u] - _phase[j_l] );
274 if( x == 0 || i_u == i_l )
277 this->
_spectrum[i] = x0 + ( x1 - x0 ) * x / ( _sep[i_u] - _sep[i_l] );
int readColumns(const std::string &fname, arrTs &...arrays)
Read in columns from a text file.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
Class to manage an astronomical spectrum.
int setSpectrum(gridT &lambda)
Load the spectrum and interpolate it onto a wavelength scale.
int setParameters(const paramsT ¶ms)
Set the parameters of the spectrum, using the underlying spectrums parameter type.
Base spectrum class which provides manipulation and characterization functionality.
std::vector< realT > _spectrum
Contains the spectrum after it is set.
int loadGrid(int metal, std::vector< realT > &lambda)
Load the grid into memory for one of the metallicities and pre-interpolate onto the wavelength scale.
int setSpectrum(std::vector< realT > &lambda)
Get an interpolated spectrum at arbitrary non-grid point using bilinear interpolation.
int setParameters(const paramsT ¶ms)
Set the separatio and phase of the spectrum.
An albedo spectrum directly from the Cahoy et al (2010) grid.
static constexpr realT fluxUnits
Geometric albedos are dimensionless.
static int readSpectrum(std::vector< realT > &rawLambda, std::vector< realT > &rawSpectrum, const std::string &path, const paramsT ¶ms)
Read the spectrum from the file specified by path. Extra columns are discarded.
static std::string fileName(const paramsT ¶ms)
The file name is constructed from the paramerters sep, metal, and phase.
static constexpr realT wavelengthUnits
Convert from um to SI m.
A dummy class to allow mx::readColumns to skip a column(s) in a file without requiring memory allocat...
Unit specifications and conversions.