-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Khanak Bhargava
committed
Dec 1, 2023
1 parent
125e0cb
commit e74f58c
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Input parameters to simulate WD mergers | ||
|
||
### Easiest way to start a merger | ||
### Ref: https://articles.adsabs.harvard.edu/pdf/1983ApJ...268..368E | ||
``` | ||
problem.roche_radius_factor = 1.0e0 | ||
``` | ||
### To set the CO mass fractions and He shell mass for WDs with masses between 0.45 M_sun and 0.60 M_sun,use | ||
``` | ||
problem.hybrid_wd_c_frac = 0.00e0 | ||
problem.hybrid_wd_o_frac = 0.00e0 | ||
problem.hybrid_wd_he_shell_mass = 0.00e0 | ||
``` | ||
### To set the CO mass fractions and He shell mass for WDs with masses between 0.6 M_sun and 1.05 M_sun, use | ||
``` | ||
problem.co_wd_c_frac = 0.00e0 | ||
problem.co_wd_o_frac = 0.00e0 | ||
problem.co_wd_he_shell_mass = 0.00e0 | ||
``` | ||
|