mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
stars.hpp
Go to the documentation of this file.
1/** \file stars.hpp
2 * \author Jared R. Males (jaredmales@gmail.com)
3 * \brief Various utilities related to stars.
4 * \ingroup astrofiles
5 *
6 */
7
8#include "../math/gslInterpolator.hpp"
9
10#include "units.hpp"
11
12#ifndef mx_astro_stars_hpp
13#define mx_astro_stars_hpp
14
15#include "../ioutils/stringUtils.hpp"
16#include "../ioutils/readColumns.hpp"
17
18namespace mx
19{
20namespace astro
21{
22
23/// Parse a main sequence spectral type string into a numeric code.
24/** Expects standard spectral type strings such as "O5V" or "F2.5" or "G8.5V".
25 * The numeric code starts at 0 for "O0V", 10 for "A0V", through 90 for "Y0". The subtypes are added to this value. For
26 * instance, "G8.5V" becomes 48.5.
27 *
28 * Only works for main sequence types. Any other spectral type, such as MK class I-IV, will return -1.
29 *
30 * \ingroup stars
31 */
32template <typename realT = float>
33realT numSpType( std::string spType /**< [in] The spectral type string to parse.*/ )
34{
35
36 spType = ioutils::removeWhiteSpace( spType );
37
38 spType = ioutils::toUpper( spType );
39
40 realT num = 0;
41
42 switch( spType[0] )
43 {
44 case 'O':
45 num = 0;
46 break;
47 case 'B':
48 num = 10;
49 break;
50 case 'A':
51 num = 20;
52 break;
53 case 'F':
54 num = 30;
55 break;
56 case 'G':
57 num = 40;
58 break;
59 case 'K':
60 num = 50;
61 break;
62 case 'M':
63 num = 60;
64 break;
65 case 'L':
66 num = 70;
67 break;
68 case 'T':
69 num = 80;
70 break;
71 case 'Y':
72 num = 90;
73 break;
74 default:
75 return -1000;
76 }
77
78 if( spType.size() < 2 )
79 return -1000;
80 if( !isdigit( spType[1] ) )
81 return -1000;
82
83 int i = 1;
84 while( i < spType.size() && ( isdigit( spType[i] ) || spType[i] == '.' ) )
85 ++i;
86
87 std::string subType = spType.substr( 1, i - 1 );
88
89 num += ioutils::convertFromString<realT>( subType );
90
91 if( spType.size() == i )
92 return num;
93 if( spType[i] == 'V' )
94 return num;
95
96 return -1 * num;
97}
98
99/// Provide various characteristics of main sequence stars according to their spectral type.
100/** Interpolates on "A Modern Mean Dwarf Stellar Color and Effective Temperature Sequence"
101 * by Eric Mamajek, available at http://www.pas.rochester.edu/~emamajek/EEM_dwarf_UBVIJHK_colors_Teff.txt.
102 *
103 * Loads values of the sequence at construction (hard coded), and then provides interpolation in between the points.
104 *
105 * Version of the sequence used: 2017.03.14
106 *
107 * \ingroup stars
108 */
109template <typename realT>
111{
112 std::vector<double> m_numTypes; ///< The numeric spectral type codes from the sequence
113 std::vector<double> m_numTypesR; ///< The numeric spectral type codes from the sequence, in reversed order.
114
115 std::vector<double> m_Teffs; ///< The effective temperatures from the sequence
116 std::vector<double> m_TeffsR; ///< The effective temperatures from the sequence, reveresed order.
117
118 std::vector<double> m_logLs; ///< The log10 luminosities from the sequence
119 std::vector<double> m_rads; ///< The radii from the sequence
120 std::vector<double> m_masses; ///< The masses from the sequence
121 std::vector<double> m_Mvs; ///< The absolute V magnitudes from the sequence
122 std::vector<double> m_V_Rcs; ///< The V-Rc colors from the sequence
123 std::vector<double> m_V_Ics; ///< The V-Ic colors from the sequence
124 std::vector<double> m_V_Kss; ///< The V-Ks colors from the sequence
125 std::vector<double> m_J_Hs; ///< The J-H colors from the sequence
126 std::vector<double> m_H_Kss; ///< The H-Ks colors from the sequence
127
128 math::gslInterpolator<math::gsl_interp_linear<double>> interpT; ///< The interpolator for effective Temperature
129 double m_minT; ///< The minimum numeric spectral type for effective Temperature
130 double m_maxT; ///< The maximum numeric spectral type for effective Temperature
131
132 math::gslInterpolator<math::gsl_interp_linear<double>> interpRad; ///< The interpolator for effective Temperature
133 double m_minRad; ///< The minimum numeric spectral type for effective Temperature
134 double m_maxRad; ///< The maximum numeric spectral type for effective Temperature
135
136 math::gslInterpolator<math::gsl_interp_linear<double>> interpL; ///< The interpolator for log luminosity
137 double m_minL; ///< The minimum numeric spectral type for log luminosity
138 double m_maxL; ///< The maximum numeric spectral type for log luminosity
139
140 math::gslInterpolator<math::gsl_interp_linear<double>> interpMv; ///< The interpolator for absolute V magnitude
141 double m_minMv; ///< The minimum numeric spectral type for absolute V magnitude
142 double m_maxMv; ///< The maximum numeric spectral type for absolute V magnitude
143
145 double m_minVRc; ///< The minimum numeric spectral type for V-Rc color
146 double m_maxVRc; ///< The maximum numeric spectral type for V-Rc color
147
149 double m_minVIc; ///< The minimum numeric spectral type for V-Ic color
150 double m_maxVIc; ///< The maximum numeric spectral type for V-Ic color
151
153 double m_minVKs; ///< The minimum numeric spectral type for V-Ks color
154 double m_maxVKs; ///< The maximum numeric spectral type for V-Ks color
155
157 double m_minJH; ///< The minimum numeric spectral type for J-H color
158 double m_maxJH; ///< The maximum numeric spectral type for J-H color
159
161 double m_minHKs; ///< The minimum numeric spectral type for H-Ks color
162 double m_maxHKs; ///< The maximum numeric spectral type for H-Ks color
163
164 math::gslInterpolator<math::gsl_interp_linear<double>> interpSpTfmT; ///< The interpolator for effective Temperature
165 double m_minSpTfmT; ///< The minimum numeric spectral type for effective Temperature
166 double m_maxSpTfmT; ///< The maximum numeric spectral type for effective Temperature
167
168 void findMinMax( std::vector<double> &seq, double &min, double &max, std::vector<double> &ref )
169 {
170 if( seq.size() != ref.size() )
171 {
172 std::cerr << "size mismatch\n";
173 min = 0;
174 max = 0;
175 }
176
177 min = ref[0];
178 size_t n;
179 for( n = 0; n < seq.size(); ++n )
180 {
181 if( seq[n] != -99 )
182 break;
183 }
184
185 if( n >= seq.size() - 1 )
186 {
187 min = 0;
188 max = 0;
189 return;
190 }
191
192 min = ref[n];
193
194 for( ; n < seq.size() - 1; ++n )
195 {
196 if( seq[n + 1] == -99 )
197 break;
198 }
199
200 max = ref[n];
201 ++n;
202 for( ; n < seq.size(); ++n )
203 {
204 seq[n] = -99;
205 }
206 }
207
209 {
210#include "mamajek.inc"
211
212 m_numTypesR.assign( m_numTypes.rbegin(), m_numTypes.rend() );
213
214 findMinMax( m_Teffs, m_minT, m_maxT, m_numTypes );
215 m_TeffsR.assign( m_Teffs.rbegin(), m_Teffs.rend() ); // get reversed vector after normalizing -99s.
216
217 findMinMax( m_rads, m_minRad, m_maxRad, m_numTypes );
218
219 findMinMax( m_logLs, m_minL, m_maxL, m_numTypes );
220 findMinMax( m_Mvs, m_minMv, m_maxMv, m_numTypes );
221 findMinMax( m_V_Rcs, m_minVRc, m_maxVRc, m_numTypes );
222 findMinMax( m_V_Ics, m_minVIc, m_maxVIc, m_numTypes );
223 findMinMax( m_V_Kss, m_minVKs, m_maxVKs, m_numTypes );
224 findMinMax( m_J_Hs, m_minJH, m_maxJH, m_numTypes );
225 findMinMax( m_H_Kss, m_minHKs, m_maxHKs, m_numTypes );
226
228
229 interpT.setup( m_numTypes, m_Teffs );
230 interpRad.setup( m_numTypes, m_rads );
231 interpL.setup( m_numTypes, m_logLs );
232 interpMv.setup( m_numTypes, m_Mvs );
233 interpVRc.setup( m_numTypes, m_V_Rcs );
234 interpVIc.setup( m_numTypes, m_V_Ics );
235 interpVKs.setup( m_numTypes, m_V_Kss );
236 interpJH.setup( m_numTypes, m_J_Hs );
237 interpHKs.setup( m_numTypes, m_H_Kss );
238
240 }
241
242 /// Get the interpolated effective temperature
243 /**
244 * \returns the effective temperature.
245 * \returns -999 if the input type code is out of range.
246 */
247 realT Teff( realT numType /**< [in] the numeric spectral type code, see \ref mx::astro::numSpType() */ )
248 {
249 if( numType < m_minT || numType > m_maxT )
250 {
251 return -999;
252 }
253
254 return interpT( numType );
255 }
256
257 /// Get the interpolated effective temperature
258 /**
259 * \returns the effective temperature.
260 * \returns -999 if the input type is out of range.
261 */
262 realT Teff( const std::string &spType /**< [in] the spectral type in standard format */ )
263 {
264 return Teff( numSpType( spType ) );
265 }
266
267 /// Get the interpolated radius
268 /**
269 * \returns the radius in Solar units.
270 * \returns -999 if the input type code is out of range.
271 */
272 realT radius( realT numType /**< [in] the numeric spectral type code, see \ref mx::astro::numSpType() */ )
273 {
274 if( numType < m_minRad || numType > m_maxRad )
275 {
276 return -999;
277 }
278
279 return interpRad( numType );
280 }
281
282 /// Get the interpolated radius
283 /**
284 * \returns the radius in Solar units.
285 * \returns -999 if the input type is out of range.
286 */
287 realT radius( const std::string &spType /**< [in] the spectral type in standard format */ )
288 {
289 return radius( numSpType( spType ) );
290 }
291
292 /// Get the interpolated log of luminosity
293 /**
294 * \returns the log of luminosity.
295 * \returns -999 if the input type code is out of range.
296 */
297 realT logL( realT numType /**< [in] the numeric spectral type code, see \ref mx::astro::numSpType() */ )
298 {
299 if( numType < m_minL || numType > m_maxL )
300 {
301 return -999;
302 }
303
304 return interpL( numType );
305 }
306
307 /// Get the interpolated log of luminosity
308 /**
309 * \returns the log of luminosity.
310 * \returns -999 if the input type is out of range.
311 */
312 realT logL( const std::string &spType /**< [in] the spectral type in standard format */ )
313 {
314 return logL( numSpType( spType ) );
315 }
316
317 /// Get the interpolated absolute V magnitude
318 /**
319 * \returns the aboslute V magnitude
320 * \returns -999 if the input type code is out of range.
321 */
322 realT Mv( realT numType /**< [in] the numeric spectral type code, see \ref mx::astro::numSpType() */ )
323 {
324 if( numType < m_minMv || numType > m_maxMv )
325 {
326 return -999;
327 }
328
329 return interpMv( numType );
330 }
331
332 /// Get the interpolated absolute V magnitude
333 /**
334 * \returns the aboslute V magnitude
335 * \returns -999 if the input type is out of range.
336 */
337 realT Mv( const std::string &spType /**< [in] the spectral type in standard format */ )
338 {
339 return Mv( numSpType( spType ) );
340 }
341
342 /// Get the interpolated absolute V-Rc color
343 /**
344 * \returns the aboslute V-Rc color
345 * \returns -999 if the input type code is out of range.
346 */
347 realT V_Rc( realT numType /**< [in] the numeric spectral type code, see \ref mx::astro::numSpType() */ )
348 {
349 if( numType < m_minVRc || numType > m_maxVRc )
350 {
351 return -999;
352 }
353
354 return interpVRc( numType );
355 }
356
357 /// Get the interpolated absolute V-Rc color
358 /**
359 * \returns the aboslute V-Rc color
360 * \returns -999 if the input type is out of range.
361 */
362 realT V_Rc( const std::string &spType /**< [in] the spectral type in standard format */ )
363 {
364 return V_Rc( numSpType( spType ) );
365 }
366
367 /// Get the interpolated absolute V-Ic color
368 /**
369 * \returns the aboslute V-Ic color
370 * \returns -999 if the input type code is out of range.
371 */
372 realT V_Ic( realT numType /**< [in] the numeric spectral type code, see \ref mx::astro::numSpType() */ )
373 {
374 if( numType < m_minVIc || numType > m_maxVIc )
375 {
376 return -999;
377 }
378
379 return interpVIc( numType );
380 }
381
382 /// Get the interpolated absolute V-Ic color
383 /**
384 * \returns the aboslute V-Ic color
385 * \returns -999 if the input type is out of range.
386 */
387 realT V_Ic( const std::string &spType /**< [in] the spectral type in standard format */ )
388 {
389 return V_Ic( numSpType( spType ) );
390 }
391
392 /// Get the interpolated absolute V-Ks color
393 /**
394 * \returns the aboslute V-Ks color
395 * \returns -999 if the input type code is out of range.
396 */
397 realT V_Ks( realT numType /**< [in] the numeric spectral type code, see \ref mx::astro::numSpType() */ )
398 {
399 if( numType < m_minVKs || numType > m_maxVKs )
400 {
401 return -999;
402 }
403
404 return interpVKs( numType );
405 }
406
407 /// Get the interpolated absolute V-Ks color
408 /**
409 * \returns the aboslute V-Ks color
410 * \returns -999 if the input type is out of range.
411 */
412 realT V_Ks( const std::string &spType /**< [in] the spectral type in standard format */ )
413 {
414 return V_Ks( numSpType( spType ) );
415 }
416
417 /// Get the interpolated absolute J-H color
418 /**
419 * \returns the aboslute J-H color
420 * \returns -999 if the input type code is out of range.
421 */
422 realT J_H( realT numType /**< [in] the numeric spectral type code, see \ref mx::astro::numSpType() */ )
423 {
424 if( numType < m_minJH || numType > m_maxJH )
425 {
426 return -999;
427 }
428
429 return interpJH( numType );
430 }
431
432 /// Get the interpolated absolute J-H color
433 /**
434 * \returns the aboslute J-H color
435 * \returns -999 if the input type is out of range.
436 */
437 realT J_H( const std::string &spType /**< [in] the spectral type in standard format */ )
438 {
439 return J_H( numSpType( spType ) );
440 }
441
442 /// Get the interpolated absolute H-Ks color
443 /**
444 * \returns the aboslute H-Ks color
445 * \returns -999 if the input type code is out of range.
446 */
447 realT H_Ks( realT numType /**< [in] the numeric spectral type code, see \ref mx::astro::numSpType() */ )
448 {
449 if( numType < m_minHKs || numType > m_maxHKs )
450 {
451 return -999;
452 }
453
454 return interpHKs( numType );
455 }
456
457 /// Get the interpolated absolute H-Ks color
458 /**
459 * \returns the aboslute H-Ks color
460 * \returns -999 if the input type is out of range.
461 */
462 realT H_Ks( const std::string &spType /**< [in] the spectral type in standard format */ )
463 {
464 return H_Ks( numSpType( spType ) ); /// Get the interpolated absolute H-Ks color
465 /**
466 * \returns the aboslute H-Ks color
467 * \returns -999 if the input type code is out of range.
468 */
469 }
470
471 realT spTFromTeff( realT Teff )
472 {
473 if( Teff < m_minSpTfmT || Teff > m_maxSpTfmT )
474 {
475 return -999;
476 }
477
478 return floor( 2 * interpSpTfmT( Teff ) + 0.5 ) / 2; // round to nearest 0.5 types.
479 }
480};
481
482namespace maintenance
483{
484
485/// Read in the main sequence table of Mamajek, and construct the vectors for input into the mainSequence class.
486/** This is used to create mamajek.inc.
487 * The table should be copied to a text file, and all `...` replaced with -99, then any remaining . replaced with space.
488 */
489void makeMSTable( const std::string &fn )
490{
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;
521
523 SpT,
524 Teff,
525 logT,
526 logL,
527 Mbol,
528 BCv,
529 Mv,
530 B__V,
531 Bt__Vt,
532 G__V,
533 Bp__Rp,
534 G__Rp,
535 M_G,
536 b__y,
537 U__B,
538 V__Rc,
539 V__Ic,
540 V__Ks,
541 J__H,
542 H__Ks,
543 Ks__W1,
544 W1__W2,
545 W1__W3,
546 W1__W4,
547 M_J,
548 M_Ks,
549 i__z,
550 z__Y,
551 R_Rsun,
552 Msun );
553
554 std::cout << "//" << fn << "\n";
555 std::cout << " m_numTypes = {" << numSpType( SpT[0] );
556 for( int n = 1; n < SpT.size(); ++n )
557 std::cout << ',' << numSpType( SpT[n] );
558 std::cout << "};\n";
559
560 std::cout << " m_Teffs = {" << Teff[0];
561 for( int n = 1; n < SpT.size(); ++n )
562 std::cout << ',' << Teff[n];
563 std::cout << "};\n";
564
565 std::cout << " m_logLs = {" << logL[0];
566 for( int n = 1; n < SpT.size(); ++n )
567 std::cout << ',' << logL[n];
568 std::cout << "};\n";
569
570 std::cout << " m_rads = {" << R_Rsun[0];
571 for( int n = 1; n < SpT.size(); ++n )
572 std::cout << ',' << R_Rsun[n];
573 std::cout << "};\n";
574
575 std::cout << " m_masses = {" << Msun[0];
576 for( int n = 1; n < SpT.size(); ++n )
577 std::cout << ',' << Msun[n];
578 std::cout << "};\n";
579
580 std::cout << " m_Mvs = {" << Mv[0];
581 for( int n = 1; n < SpT.size(); ++n )
582 std::cout << ',' << Mv[n];
583 std::cout << "};\n";
584
585 std::cout << " m_V_Rcs = {" << V__Rc[0];
586 for( int n = 1; n < SpT.size(); ++n )
587 std::cout << ',' << V__Rc[n];
588 std::cout << "};\n";
589
590 std::cout << " m_V_Ics = {" << V__Ic[0];
591 for( int n = 1; n < SpT.size(); ++n )
592 std::cout << ',' << V__Ic[n];
593 std::cout << "};\n";
594
595 std::cout << " m_V_Kss = {" << V__Ks[0];
596 for( int n = 1; n < SpT.size(); ++n )
597 std::cout << ',' << V__Ks[n];
598 std::cout << "};\n";
599
600 std::cout << " m_J_Hs = {" << J__H[0];
601 for( int n = 1; n < SpT.size(); ++n )
602 std::cout << ',' << J__H[n];
603 std::cout << "};\n";
604
605 std::cout << " m_H_Kss = {" << H__Ks[0];
606 for( int n = 1; n < SpT.size(); ++n )
607 std::cout << ',' << H__Ks[n];
608 std::cout << "};\n";
609}
610} // namespace maintenance
611} // namespace astro
612} // namespace mx
613
614#endif
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.
Definition stars.hpp:33
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.
The mxlib c++ namespace.
Definition mxError.hpp:106
void makeMSTable(const std::string &fn)
Read in the main sequence table of Mamajek, and construct the vectors for input into the mainSequence...
Definition stars.hpp:489
Provide various characteristics of main sequence stars according to their spectral type.
Definition stars.hpp:111
math::gslInterpolator< math::gsl_interp_linear< double > > interpVKs
The interpolator for V-Ks color.
Definition stars.hpp:152
std::vector< double > m_TeffsR
The effective temperatures from the sequence, reveresed order.
Definition stars.hpp:116
realT V_Ic(realT numType)
Get the interpolated absolute V-Ic color.
Definition stars.hpp:372
realT radius(const std::string &spType)
Get the interpolated radius.
Definition stars.hpp:287
double m_minSpTfmT
The minimum numeric spectral type for effective Temperature.
Definition stars.hpp:165
realT V_Rc(realT numType)
Get the interpolated absolute V-Rc color.
Definition stars.hpp:347
realT H_Ks(const std::string &spType)
Get the interpolated absolute H-Ks color.
Definition stars.hpp:462
double m_maxT
The maximum numeric spectral type for effective Temperature.
Definition stars.hpp:130
double m_minRad
The minimum numeric spectral type for effective Temperature.
Definition stars.hpp:133
double m_maxMv
The maximum numeric spectral type for absolute V magnitude.
Definition stars.hpp:142
realT J_H(const std::string &spType)
Get the interpolated absolute J-H color.
Definition stars.hpp:437
std::vector< double > m_V_Ics
The V-Ic colors from the sequence.
Definition stars.hpp:123
realT logL(realT numType)
Get the interpolated log of luminosity.
Definition stars.hpp:297
math::gslInterpolator< math::gsl_interp_linear< double > > interpVIc
The interpolator for V-Ic color.
Definition stars.hpp:148
double m_maxL
The maximum numeric spectral type for log luminosity.
Definition stars.hpp:138
double m_minL
The minimum numeric spectral type for log luminosity.
Definition stars.hpp:137
std::vector< double > m_J_Hs
The J-H colors from the sequence.
Definition stars.hpp:125
double m_minVKs
The minimum numeric spectral type for V-Ks color.
Definition stars.hpp:153
realT Teff(const std::string &spType)
Get the interpolated effective temperature.
Definition stars.hpp:262
std::vector< double > m_numTypes
The numeric spectral type codes from the sequence.
Definition stars.hpp:112
realT radius(realT numType)
Get the interpolated radius.
Definition stars.hpp:272
std::vector< double > m_numTypesR
The numeric spectral type codes from the sequence, in reversed order.
Definition stars.hpp:113
realT V_Ic(const std::string &spType)
Get the interpolated absolute V-Ic color.
Definition stars.hpp:387
double m_maxVIc
The maximum numeric spectral type for V-Ic color.
Definition stars.hpp:150
double m_minJH
The minimum numeric spectral type for J-H color.
Definition stars.hpp:157
realT V_Ks(const std::string &spType)
Get the interpolated absolute V-Ks color.
Definition stars.hpp:412
math::gslInterpolator< math::gsl_interp_linear< double > > interpSpTfmT
The interpolator for effective Temperature.
Definition stars.hpp:164
std::vector< double > m_Teffs
The effective temperatures from the sequence.
Definition stars.hpp:115
double m_maxJH
The maximum numeric spectral type for J-H color.
Definition stars.hpp:158
double m_minMv
The minimum numeric spectral type for absolute V magnitude.
Definition stars.hpp:141
std::vector< double > m_Mvs
The absolute V magnitudes from the sequence.
Definition stars.hpp:121
std::vector< double > m_V_Kss
The V-Ks colors from the sequence.
Definition stars.hpp:124
realT J_H(realT numType)
Get the interpolated absolute J-H color.
Definition stars.hpp:422
math::gslInterpolator< math::gsl_interp_linear< double > > interpRad
The interpolator for effective Temperature.
Definition stars.hpp:132
realT V_Rc(const std::string &spType)
Get the interpolated absolute V-Rc color.
Definition stars.hpp:362
double m_minHKs
The minimum numeric spectral type for H-Ks color.
Definition stars.hpp:161
std::vector< double > m_logLs
The log10 luminosities from the sequence.
Definition stars.hpp:118
math::gslInterpolator< math::gsl_interp_linear< double > > interpVRc
The interpolator for V-Rc color.
Definition stars.hpp:144
std::vector< double > m_V_Rcs
The V-Rc colors from the sequence.
Definition stars.hpp:122
realT Mv(realT numType)
Get the interpolated absolute V magnitude.
Definition stars.hpp:322
math::gslInterpolator< math::gsl_interp_linear< double > > interpHKs
The interpolator for H-Ks color.
Definition stars.hpp:160
math::gslInterpolator< math::gsl_interp_linear< double > > interpMv
The interpolator for absolute V magnitude.
Definition stars.hpp:140
realT logL(const std::string &spType)
Get the interpolated log of luminosity.
Definition stars.hpp:312
realT H_Ks(realT numType)
Get the interpolated absolute H-Ks color.
Definition stars.hpp:447
double m_maxRad
The maximum numeric spectral type for effective Temperature.
Definition stars.hpp:134
math::gslInterpolator< math::gsl_interp_linear< double > > interpL
The interpolator for log luminosity.
Definition stars.hpp:136
realT Mv(const std::string &spType)
Get the interpolated absolute V magnitude.
Definition stars.hpp:337
double m_maxVKs
The maximum numeric spectral type for V-Ks color.
Definition stars.hpp:154
math::gslInterpolator< math::gsl_interp_linear< double > > interpJH
The interpolator for J-H color.
Definition stars.hpp:156
double m_maxHKs
The maximum numeric spectral type for H-Ks color.
Definition stars.hpp:162
double m_minVRc
The minimum numeric spectral type for V-Rc color.
Definition stars.hpp:145
std::vector< double > m_H_Kss
The H-Ks colors from the sequence.
Definition stars.hpp:126
double m_maxSpTfmT
The maximum numeric spectral type for effective Temperature.
Definition stars.hpp:166
double m_minT
The minimum numeric spectral type for effective Temperature.
Definition stars.hpp:129
math::gslInterpolator< math::gsl_interp_linear< double > > interpT
The interpolator for effective Temperature.
Definition stars.hpp:128
realT V_Ks(realT numType)
Get the interpolated absolute V-Ks color.
Definition stars.hpp:397
double m_maxVRc
The maximum numeric spectral type for V-Rc color.
Definition stars.hpp:146
realT Teff(realT numType)
Get the interpolated effective temperature.
Definition stars.hpp:247
std::vector< double > m_rads
The radii from the sequence.
Definition stars.hpp:119
std::vector< double > m_masses
The masses from the sequence.
Definition stars.hpp:120
double m_minVIc
The minimum numeric spectral type for V-Ic color.
Definition stars.hpp:149
Unit specifications and conversions.