Skip to content

Commit

Permalink
Merge pull request TeamCOMPAS#1214 from TeamCOMPAS/winds_patch_3
Browse files Browse the repository at this point in the history
Winds patch 3
  • Loading branch information
ilyamandel authored Sep 6, 2024
2 parents 4b9ba29 + a926117 commit 1e58a3e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 3 additions & 2 deletions src/Remnants.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 3 additions & 2 deletions src/changelog.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__

0 comments on commit 1e58a3e

Please sign in to comment.