Skip to content

Commit 0b5eb6e

Browse files
committed
Revert EAGB fix
1 parent 9455c75 commit 0b5eb6e

File tree

6 files changed

+33
-23
lines changed

6 files changed

+33
-23
lines changed
-33.6 KB
Binary file not shown.

examples/methods_paper_plots/fig_5_HR_diagram/make_fig_5.ipynb

Lines changed: 15 additions & 7 deletions
Large diffs are not rendered by default.

examples/methods_paper_plots/fig_6_max_R/make_fig_6.ipynb

Lines changed: 13 additions & 13 deletions
Large diffs are not rendered by default.
-790 Bytes
Binary file not shown.

src/EAGB.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ class EAGB: virtual public BaseStar, public CHeB {
6363
double CalculateLifetimeTo2ndDredgeUp(const double p_Tinf1_FAGB, const double p_Tinf2_FAGB) const;
6464

6565
double CalculateLuminosityAtPhaseEnd(const double p_CoreMass) const { return CalculateLuminosityOnPhase(p_CoreMass); } // Same as on phase
66-
double CalculateLuminosityAtPhaseEnd() const { return CalculateLuminosityAtPhaseEnd(m_HeCoreMass); } // Use class member variables
66+
double CalculateLuminosityAtPhaseEnd() const { return CalculateLuminosityAtPhaseEnd(m_COCoreMass); } // Use class member variables
6767
double CalculateLuminosityOnPhase(const double p_CoreMass) const;
68-
double CalculateLuminosityOnPhase() const { return CalculateLuminosityOnPhase(m_HeCoreMass); }
68+
double CalculateLuminosityOnPhase() const { return CalculateLuminosityOnPhase(m_COCoreMass); }
6969

7070
double CalculateMassLossRateHurley();
7171

src/changelog.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,9 @@
843843
// Defect introduced was omission of code for HDF5 file support if a specified property is supplied to GetLogStandardRecord(), causing a boost::bad_get error.
844844
// The defect only affected HDF5 SSE_Supernovae files. This fix adds the omitted code.
845845
// - Changed Options::PrintOptionHelp() to print help (-h/--h) to stdout instead of stderr.
846+
// 02.25.09 IM - Nov 16, 2021 - Defect repair:
847+
// -Revert EAGB treatment to 02.25.06 until a proper fix is introduced
846848

847-
const std::string VERSION_STRING = "02.25.08";
849+
const std::string VERSION_STRING = "02.25.09";
848850

849851
# endif // __changelog_h__

0 commit comments

Comments
 (0)