diff --git a/online-docs/pages/User guide/COMPAS output/standard-logfiles-record-specification-stellar.rst b/online-docs/pages/User guide/COMPAS output/standard-logfiles-record-specification-stellar.rst index 4cd8546f6..cfb0a7210 100644 --- a/online-docs/pages/User guide/COMPAS output/standard-logfiles-record-specification-stellar.rst +++ b/online-docs/pages/User guide/COMPAS output/standard-logfiles-record-specification-stellar.rst @@ -381,17 +381,17 @@ Following is an alphabetical list of stellar properties available for inclusion * - None - = 0 - * - Nieuwenhuijzen and de Jager + * - GB (Giant Branch) - = 1 - * - Kudritzki and Reimers + * - LBV (Luminous Blue Variable) - = 2 - * - Vassiliadis and Wood + * - OB (Main Sequence) - = 3 - * - Wolf-Rayet-like (Hamann, Koesterke and de Koter) + * - RSG (Red Supergiant) - = 4 - * - Vink + * - VMS (Very Massive Main Sequence) - = 5 - * - Luminous Blue Variable + * - WR (Wolf-Rayet) - = 6 * - Header Strings: diff --git a/src/Remnants.h b/src/Remnants.h index b58224c8d..e21d68ea8 100644 --- a/src/Remnants.h +++ b/src/Remnants.h @@ -58,8 +58,9 @@ class Remnants: virtual public BaseStar, public HeGB { const double p_AccretorMassRate, const bool p_IsHeRich) { return CalculateMassAcceptanceRate(p_DonorMassRate, p_AccretorMassRate); } // Ignore the He content for non-WDs - double CalculateMassLossRateHurley() { return 0.0; } - double CalculateMassLossRateBelczynski2010() { return 0.0; } + double CalculateMassLossRateHurley() { m_DominantMassLossRate = MASS_LOSS_TYPE::NONE ; return 0.0; } + double CalculateMassLossRateBelczynski2010() { m_DominantMassLossRate = MASS_LOSS_TYPE::NONE ; return 0.0; } + double CalculateMassLossRateMerritt2024() { m_DominantMassLossRate = MASS_LOSS_TYPE::NONE ; return 0.0; } // double CalculatePerturbationMuOnPhase() const { return m_Mu; } // NO-OP diff --git a/src/changelog.h b/src/changelog.h index c7a914c45..973fa1cd9 100644 --- a/src/changelog.h +++ b/src/changelog.h @@ -1285,8 +1285,9 @@ // See "What's New" and option documentation for details. // (Issue #1170) // - added deprecation notice for '--mass-loss-prescription NONE' (should use ZERO) - missed in v03.00.00 +// 03.01.07 JDM - Sep 5, 2024 - Defect repair: +// - Set wind mass loss for remnants to zero. - -const std::string VERSION_STRING = "03.01.06"; +const std::string VERSION_STRING = "03.01.07"; # endif // __changelog_h__