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
Copy file name to clipboardExpand all lines: compas_python_utils/preprocessing/compasConfigDefault.yaml
+3-6Lines changed: 3 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,5 @@
1
1
##~!!~## COMPAS option values
2
-
<<<<<<< HEAD
3
-
##~!!~## File Created Sun Jul 6 16:42:54 2025 by COMPAS v03.21.00
4
-
=======
5
-
##~!!~## File Created Thu Jul 17 09:38:18 2025 by COMPAS v03.21.00
6
-
>>>>>>> dev
2
+
##~!!~## File Created Fri Jul 18 08:19:00 2025 by COMPAS v03.21.00
7
3
##~!!~##
8
4
##~!!~## The default COMPAS YAML file (``compasConfigDefault.yaml``), as distributed, has
9
5
##~!!~## all COMPAS option entries commented so that the COMPAS default value for the
@@ -202,7 +198,8 @@ numericalChoices:
202
198
# --mcbur1: 1.600000 # Default: 1.600000
203
199
# --muller-mandel-kick-multiplier-BH: 200.00 # Default: 200.00 # scaling prefactor for BH kicks when using the 'MULLERMANDEL' kick magnitude distribution
204
200
# --muller-mandel-kick-multiplier-NS: 520.00 # Default: 520.00 # scaling prefactor for NS kicks when using the 'MULLERMANDEL' kick magnitude distribution
205
-
# --muller-mandel-sigma-kick: 0.300000 # Default: 0.300000 # kick scatter when using the 'MULLERMANDEL' kick magnitude distribution
201
+
# --muller-mandel-sigma-kick-BH: 0.300000 # Default: 0.300000 # BH kick scatter when using the 'MULLERMANDEL' kick magnitude distribution
202
+
# --muller-mandel-sigma-kick-NS: 0.300000 # Default: 0.300000 # NS kick scatter when using the 'MULLERMANDEL' kick magnitude distribution
Copy file name to clipboardExpand all lines: online-docs/pages/whats-new.rst
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,17 +3,16 @@ What's new
3
3
4
4
Following is a brief list of important updates to the COMPAS code. A complete record of changes can be found in the file ``changelog.h``.
5
5
6
-
<<<<<<< HEAD
7
-
**03.21.00 July 6, 2025**
6
+
**03.22.00 July 18, 2025**
8
7
* Changed default values of --enhance-CHE-lifetimes-luminosities and --scale-CHE-mass-loss-with-surface-helium-abundance to true
9
8
* Added options to set beta and gamma prescription for second stage of 2-stage CE (``--common-envelope-second-stage-beta``, ``--common-envelope-second-stage-gamma-prescription``)
10
9
* Fixed a bug in the calculation of zeta_equilibrium, which impacts when mass transfer is declared to proceed on a nuclear timescale (and hence how conservative it is)
11
-
=======
12
-
**03.20=1.00 July 17, 2025**
10
+
* Fixed the calculation of Mandel & Muller kicks; split ``--muller-mandel-sigma-kick`` into ``--muller-mandel-sigma-kick-NS`` and ``--muller-mandel-sigma-kick-BH``
11
+
12
+
**03.21.00 July 17, 2025**
13
13
14
14
* Deprecated mass loss prescription MERRITT2024 in favour of MERRITT2025
15
15
* Added version strings for gsl, boost, and HDF5 to COMPAS splashscreen
double quantile0 = gsl_cdf_gaussian_P(0.0, sigma); //quantile of 0 in the Gaussian CDF; the goal is to draw from the cut-off Gaussian since the kick must exceed 0
3840
+
double quantile0 = gsl_cdf_gaussian_P(0.0, sigmaKick); //quantile of 0 in the Gaussian CDF; the goal is to draw from the cut-off Gaussian since the kick must exceed 0
("Scaling prefactor for NS kicks when using the 'MULLERMANDEL' kick magnitude distribution (default = " + std::to_string(p_Options->m_MullerMandelKickNS) + ")").c_str()
("Kick scatter when using the 'MULLERMANDEL' kick magnitude distribution (default = " + std::to_string(p_Options->m_MullerMandelSigmaKick) + ")").c_str()
("NS kick scatter when using the 'MULLERMANDEL' kick magnitude distribution (default = " + std::to_string(p_Options->m_MullerMandelSigmaKickNS) + ")").c_str()
("BH kick scatter when using the 'MULLERMANDEL' kick magnitude distribution (default = " + std::to_string(p_Options->m_MullerMandelSigmaKickBH) + ")").c_str()
Copy file name to clipboardExpand all lines: src/changelog.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1610,7 +1610,7 @@
1610
1610
// - Added missing virtual declaration to ShouldEnvelopeBeExpelledByPulsations
1611
1611
// - Now calculate mass accretion rate for nuclear timescale mass transfer on the fly to match with donor mass loss rate set by donor mass loss (required to fit into Roche lobe) divided by time step
1612
1612
// - Fixed random draws of SN kicks to avoid artificial pile-up at boundaries of distribution
1613
-
1613
+
// - Split --muller-mandel-sigma-kick into --muller-mandel-sigma-kick-NS and --muller-mandel-sigma-kick-BH
1614
1614
1615
1615
// Version string format is MM.mm.rr, where
1616
1616
//
@@ -1621,7 +1621,7 @@
1621
1621
// if MM is incremented, set mm and rr to 00, even if defect repairs and minor enhancements were also made
1622
1622
// if mm is incremented, set rr to 00, even if defect repairs were also made
0 commit comments