8#ifndef phoenixSpectrum_hpp
9#define phoenixSpectrum_hpp
11#include "../math/vectorUtils.hpp"
12#include "../ioutils/fileUtils.hpp"
22template <
typename _units>
26 typedef typename units::realT realT;
28 static const bool freq =
false;
35 static_cast<realT
>( 1e7 ) / (
static_cast<realT
>( 1e4 ) *
static_cast<realT
>( 1e10 ) );
37 static constexpr const char *dataDirEnvVar =
"PHOENIX_DATADIR";
41 static std::string fileName(
const std::string &name )
48 std::vector<realT> &rawSpectrum,
49 const std::string &path,
62 static void scaleSpectrum( std::vector<realT> &spectrum, realT radius, realT distance )
64 for(
int i = 0; i < spectrum.size(); ++i )
67 pow( radius / distance * ( constants::radJupiter<units>() / constants::parsec<units>() ), 2 );
95template <
typename floatT>
97 const std::string &filename,
106 float lambda, flambda;
110 fin.open( filename );
114 std::cerr <<
"Error opening file: " << filename <<
"\n";
118 std::vector<floatT> lambdas;
119 std::vector<floatT> flambdas;
125 fin.getline( line, lineSize );
128 if( sline.length() < 25 )
130 std::cerr <<
"Error reading file: " << filename <<
"\n";
133 lambda = ioutils::convertFromString<floatT>( sline.substr( 1, 12 ) );
137 if( sline[13] ==
'-' )
143 size_t dpos = sline.find(
'D', nst );
146 flambda = ioutils::convertFromString<floatT>( sline.substr( nst, 12 ) );
148 if( lambda >= lmin * 1e4 && lambda <= lmax * 1e4 )
150 lambdas.push_back( lambda );
151 flambdas.push_back( flambda );
154 fin.getline( line, lineSize );
159 if( sline.length() < 25 )
162 dpos = sline.find(
'D', nst );
165 lambda = ioutils::convertFromString<floatT>( sline.substr( 1, 12 ) );
166 flambda = ioutils::convertFromString<floatT>( sline.substr( nst, 12 ) );
168 if( lambda >= lmin * 1e4 && lambda <= lmax * 1e4 )
170 lambdas.push_back( lambda );
171 flambdas.push_back( flambda );
174 fin.getline( line, lineSize );
184 std::string fname = filename;
185 fout.open( filename );
186 fout.precision( 10 );
188 for(
int i = 0; i < lambdas.size(); ++i )
190 if( sepWavelength == 0 )
192 fout << lambdas[idx[i]] <<
" ";
194 fout << pow( 10, flambdas[idx[i]] + DF ) <<
"\n";
198 if( sepWavelength == 1 )
203 fout.precision( 10 );
204 for(
int i = 0; i < lambdas.size(); ++i )
206 fout << lambdas[idx[i]] <<
"\n";
216template <
typename floatT>
217void rewritePhoenixSpectrumBatch(
const std::string &dir, floatT lmin, floatT lmax, floatT DF = -8.0 )
221 int sepWavelength = 1;
222 for(
int i = 0; i < flist.size(); ++i )
int readColumns(const std::string &fname, arrTs &...arrays)
Read in columns from a text file.
void rewritePhoenixSpectrum(const std::string &filename, floatT lmin, floatT lmax, int sepWavelength=0, floatT DF=-8.0)
Read in, crop, scale, and re-write a Phoenix spectrum data file.
std::vector< std::string > getFileNames(const std::string &directory, const std::string &prefix, const std::string &substr, const std::string &extension)
Get a list of file names from the specified directory, specifying a prefix, a substring to match,...
std::string parentPath(const std::string &fname)
Get the parent path from a filename.
std::vector< size_t > vectorSortOrder(std::vector< memberT > const &values)
Return the indices of the vector in sorted order, without altering the vector itself.
A spectrum from the Phoenix model, for use with ioutils::astro::astroSpectrum.
static constexpr realT fluxUnits
Convert from erg s-1 cm-2 A-1 to SI W m-3.
static int readSpectrum(std::vector< realT > &rawLambda, std::vector< realT > &rawSpectrum, const std::string &path, const paramsT ¶ms)
static constexpr realT wavelengthUnits
Convert from A to SI m.
std::string paramsT
The parameter is a string name.