You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
else {returnBaseStar::CalculateLambdaNanjing(mass, m_Metallicity);} // Use default Nanjing Lambda's as implemented in STARTRACK (no mass nor metallicity interpolation)
doubleCalculateLambdaNanjingEnhanced(constint p_MassInd, constint p_Zind) const { returnCalculateLambdaNanjing(0.0, 0.0); } // 0.0's are dummy integers that are not used
72
+
doubleCalculateLambdaNanjingEnhanced(constint p_MassInd, constint p_Zind) const { returnCalculateLambdaNanjing(0.0, 0.0); } // 0.0 are dummy values that are not used
Copy file name to clipboardExpand all lines: src/HeWD.h
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,7 @@ class HeWD: virtual public BaseStar, public WhiteDwarfs {
48
48
// member functions - alphabetically
49
49
doubleCalculateLambdaDewi() { returnBaseStar::CalculateLambdaDewi(); } // Not supported - use BaseStar
50
50
doubleCalculateLambdaNanjing(constdouble p_Mass, constdouble p_Metallicity) const { returnBaseStar::CalculateLambdaNanjing(0.0, 0.0); } // Not supported - use BaseStar (0.0 are dummy values) JR: todo: check this (type 10 not mentioned as not supported in original code)
51
+
doubleCalculateLambdaNanjingEnhanced(constint p_MassInd, constint p_Zind) const { returnCalculateLambdaNanjing(0.0, 0.0); } // 0.0 are dummy values that are not used
Copy file name to clipboardExpand all lines: src/Remnants.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ class Remnants: virtual public BaseStar, public HeGB {
45
45
doubleCalculateInitialSupernovaMass() const { returnGiantBranch::CalculateInitialSupernovaMass(); } // Use GiantBranch
46
46
47
47
doubleCalculateLambdaDewi() const { returnBaseStar::CalculateLambdaDewi(); } // Not supported - use BaseStar
48
-
doubleCalculateLambdaNanjing() const { returnBaseStar::CalculateLambdaNanjing(0.0, 0.0); } // Not supported - use BaseStar (0.0 are dummy values) JR: todo: check this (type 10 not mentioned as not supported in original code)
48
+
doubleCalculateLambdaNanjing(constdouble p_Mass, constdouble p_Metallicity) const { returnBaseStar::CalculateLambdaNanjing(0.0, 0.0); } // Not supported - use BaseStar (0.0 are dummy values) JR: todo: check this (type 10 not mentioned as not supported in original code)
0 commit comments