8#include "../math/gslInterpolator.hpp"
12#ifndef mx_astro_stars_hpp
13#define mx_astro_stars_hpp
15#include "../ioutils/stringUtils.hpp"
16#include "../ioutils/readColumns.hpp"
32template <
typename realT =
float>
78 if( spType.size() < 2 )
80 if( !isdigit( spType[1] ) )
84 while( i < spType.size() && ( isdigit( spType[i] ) || spType[i] ==
'.' ) )
87 std::string subType = spType.substr( 1, i - 1 );
89 num += ioutils::convertFromString<realT>( subType );
91 if( spType.size() == i )
93 if( spType[i] ==
'V' )
109template <
typename realT>
168 void findMinMax( std::vector<double> &seq,
double &min,
double &max, std::vector<double> &ref )
170 if( seq.size() != ref.size() )
172 std::cerr <<
"size mismatch\n";
179 for( n = 0; n < seq.size(); ++n )
185 if( n >= seq.size() - 1 )
194 for( ; n < seq.size() - 1; ++n )
196 if( seq[n + 1] == -99 )
202 for( ; n < seq.size(); ++n )
210#include "mamajek.inc"
249 if( numType < m_minT || numType >
m_maxT )
262 realT
Teff(
const std::string &spType )
274 if( numType < m_minRad || numType >
m_maxRad )
287 realT
radius(
const std::string &spType )
299 if( numType < m_minL || numType >
m_maxL )
312 realT
logL(
const std::string &spType )
322 realT
Mv( realT numType )
324 if( numType < m_minMv || numType >
m_maxMv )
337 realT
Mv(
const std::string &spType )
349 if( numType < m_minVRc || numType >
m_maxVRc )
362 realT
V_Rc(
const std::string &spType )
374 if( numType < m_minVIc || numType >
m_maxVIc )
387 realT
V_Ic(
const std::string &spType )
399 if( numType < m_minVKs || numType >
m_maxVKs )
412 realT
V_Ks(
const std::string &spType )
422 realT
J_H( realT numType )
424 if( numType < m_minJH || numType >
m_maxJH )
437 realT
J_H(
const std::string &spType )
449 if( numType < m_minHKs || numType >
m_maxHKs )
462 realT
H_Ks(
const std::string &spType )
471 realT spTFromTeff( realT
Teff )
491 std::vector<std::string> SpT;
492 std::vector<double> Teff;
493 std::vector<double> logT;
494 std::vector<double> logL;
495 std::vector<double> Mbol;
496 std::vector<double> BCv;
497 std::vector<double> Mv;
498 std::vector<double> B__V;
499 std::vector<double> Bt__Vt;
500 std::vector<double> G__V;
501 std::vector<double> Bp__Rp;
502 std::vector<double> G__Rp;
503 std::vector<double> M_G;
504 std::vector<double> b__y;
505 std::vector<double> U__B;
506 std::vector<double> V__Rc;
507 std::vector<double> V__Ic;
508 std::vector<double> V__Ks;
509 std::vector<double> J__H;
510 std::vector<double> H__Ks;
511 std::vector<double> Ks__W1;
512 std::vector<double> W1__W2;
513 std::vector<double> W1__W3;
514 std::vector<double> W1__W4;
515 std::vector<double> M_J;
516 std::vector<double> M_Ks;
517 std::vector<double> i__z;
518 std::vector<double> z__Y;
519 std::vector<double> R_Rsun;
520 std::vector<double> Msun;
554 std::cout <<
"//" << fn <<
"\n";
555 std::cout <<
" m_numTypes = {" <<
numSpType( SpT[0] );
556 for(
int n = 1; n < SpT.size(); ++n )
560 std::cout <<
" m_Teffs = {" << Teff[0];
561 for(
int n = 1; n < SpT.size(); ++n )
562 std::cout <<
',' << Teff[n];
565 std::cout <<
" m_logLs = {" << logL[0];
566 for(
int n = 1; n < SpT.size(); ++n )
567 std::cout <<
',' << logL[n];
570 std::cout <<
" m_rads = {" << R_Rsun[0];
571 for(
int n = 1; n < SpT.size(); ++n )
572 std::cout <<
',' << R_Rsun[n];
575 std::cout <<
" m_masses = {" << Msun[0];
576 for(
int n = 1; n < SpT.size(); ++n )
577 std::cout <<
',' << Msun[n];
580 std::cout <<
" m_Mvs = {" << Mv[0];
581 for(
int n = 1; n < SpT.size(); ++n )
582 std::cout <<
',' << Mv[n];
585 std::cout <<
" m_V_Rcs = {" << V__Rc[0];
586 for(
int n = 1; n < SpT.size(); ++n )
587 std::cout <<
',' << V__Rc[n];
590 std::cout <<
" m_V_Ics = {" << V__Ic[0];
591 for(
int n = 1; n < SpT.size(); ++n )
592 std::cout <<
',' << V__Ic[n];
595 std::cout <<
" m_V_Kss = {" << V__Ks[0];
596 for(
int n = 1; n < SpT.size(); ++n )
597 std::cout <<
',' << V__Ks[n];
600 std::cout <<
" m_J_Hs = {" << J__H[0];
601 for(
int n = 1; n < SpT.size(); ++n )
602 std::cout <<
',' << J__H[n];
605 std::cout <<
" m_H_Kss = {" << H__Ks[0];
606 for(
int n = 1; n < SpT.size(); ++n )
607 std::cout <<
',' << H__Ks[n];
Class to manage interpolation using the GSL interpolation library.
int readColumns(const std::string &fname, arrTs &...arrays)
Read in columns from a text file.
realT numSpType(std::string spType)
Parse a main sequence spectral type string into a numeric code.
void toUpper(std::string &outstr, const std::string &instr)
Convert a string to all upper case.
void removeWhiteSpace(std::string &outstr, const std::string &instr)
Remove all white space from a string.
void makeMSTable(const std::string &fn)
Read in the main sequence table of Mamajek, and construct the vectors for input into the mainSequence...
Provide various characteristics of main sequence stars according to their spectral type.
math::gslInterpolator< math::gsl_interp_linear< double > > interpVKs
The interpolator for V-Ks color.
std::vector< double > m_TeffsR
The effective temperatures from the sequence, reveresed order.
realT V_Ic(realT numType)
Get the interpolated absolute V-Ic color.
realT radius(const std::string &spType)
Get the interpolated radius.
double m_minSpTfmT
The minimum numeric spectral type for effective Temperature.
realT V_Rc(realT numType)
Get the interpolated absolute V-Rc color.
realT H_Ks(const std::string &spType)
Get the interpolated absolute H-Ks color.
double m_maxT
The maximum numeric spectral type for effective Temperature.
double m_minRad
The minimum numeric spectral type for effective Temperature.
double m_maxMv
The maximum numeric spectral type for absolute V magnitude.
realT J_H(const std::string &spType)
Get the interpolated absolute J-H color.
std::vector< double > m_V_Ics
The V-Ic colors from the sequence.
realT logL(realT numType)
Get the interpolated log of luminosity.
math::gslInterpolator< math::gsl_interp_linear< double > > interpVIc
The interpolator for V-Ic color.
double m_maxL
The maximum numeric spectral type for log luminosity.
double m_minL
The minimum numeric spectral type for log luminosity.
std::vector< double > m_J_Hs
The J-H colors from the sequence.
double m_minVKs
The minimum numeric spectral type for V-Ks color.
realT Teff(const std::string &spType)
Get the interpolated effective temperature.
std::vector< double > m_numTypes
The numeric spectral type codes from the sequence.
realT radius(realT numType)
Get the interpolated radius.
std::vector< double > m_numTypesR
The numeric spectral type codes from the sequence, in reversed order.
realT V_Ic(const std::string &spType)
Get the interpolated absolute V-Ic color.
double m_maxVIc
The maximum numeric spectral type for V-Ic color.
double m_minJH
The minimum numeric spectral type for J-H color.
realT V_Ks(const std::string &spType)
Get the interpolated absolute V-Ks color.
math::gslInterpolator< math::gsl_interp_linear< double > > interpSpTfmT
The interpolator for effective Temperature.
std::vector< double > m_Teffs
The effective temperatures from the sequence.
double m_maxJH
The maximum numeric spectral type for J-H color.
double m_minMv
The minimum numeric spectral type for absolute V magnitude.
std::vector< double > m_Mvs
The absolute V magnitudes from the sequence.
std::vector< double > m_V_Kss
The V-Ks colors from the sequence.
realT J_H(realT numType)
Get the interpolated absolute J-H color.
math::gslInterpolator< math::gsl_interp_linear< double > > interpRad
The interpolator for effective Temperature.
realT V_Rc(const std::string &spType)
Get the interpolated absolute V-Rc color.
double m_minHKs
The minimum numeric spectral type for H-Ks color.
std::vector< double > m_logLs
The log10 luminosities from the sequence.
math::gslInterpolator< math::gsl_interp_linear< double > > interpVRc
The interpolator for V-Rc color.
std::vector< double > m_V_Rcs
The V-Rc colors from the sequence.
realT Mv(realT numType)
Get the interpolated absolute V magnitude.
math::gslInterpolator< math::gsl_interp_linear< double > > interpHKs
The interpolator for H-Ks color.
math::gslInterpolator< math::gsl_interp_linear< double > > interpMv
The interpolator for absolute V magnitude.
realT logL(const std::string &spType)
Get the interpolated log of luminosity.
realT H_Ks(realT numType)
Get the interpolated absolute H-Ks color.
double m_maxRad
The maximum numeric spectral type for effective Temperature.
math::gslInterpolator< math::gsl_interp_linear< double > > interpL
The interpolator for log luminosity.
realT Mv(const std::string &spType)
Get the interpolated absolute V magnitude.
double m_maxVKs
The maximum numeric spectral type for V-Ks color.
math::gslInterpolator< math::gsl_interp_linear< double > > interpJH
The interpolator for J-H color.
double m_maxHKs
The maximum numeric spectral type for H-Ks color.
double m_minVRc
The minimum numeric spectral type for V-Rc color.
std::vector< double > m_H_Kss
The H-Ks colors from the sequence.
double m_maxSpTfmT
The maximum numeric spectral type for effective Temperature.
double m_minT
The minimum numeric spectral type for effective Temperature.
math::gslInterpolator< math::gsl_interp_linear< double > > interpT
The interpolator for effective Temperature.
realT V_Ks(realT numType)
Get the interpolated absolute V-Ks color.
double m_maxVRc
The maximum numeric spectral type for V-Rc color.
realT Teff(realT numType)
Get the interpolated effective temperature.
std::vector< double > m_rads
The radii from the sequence.
std::vector< double > m_masses
The masses from the sequence.
double m_minVIc
The minimum numeric spectral type for V-Ic color.
Unit specifications and conversions.