zephyrus.collision
collision
collision.py
Fractional atmospheric mass loss of the target planet in a giant impact.
Author(s): Anna Grace Ulses
mass_loss(v_c, M_i, M_t, rho_i, rho_t, R_i, R_t, b)
Fractional atmospheric mass loss of the target in a giant impact.
Implements the scaling law of Kegerreis et al. (2020), their Eqn. 1:
\(X \approx 0.64 \left[ \left(\frac{v_c}{v_{esc}}\right)^2 \left(\frac{M_i}{M_{tot}}\right)^{1/2} \left(\frac{\rho_i}{\rho_t}\right)^{1/2} f_M(b) \right]^{0.65}\)
capped at 1 for total erosion, where subscript (i) is the impactor, (t) the target, and \(M_{tot} = M_i + M_t\). The mutual escape speed is \(v_{esc} = \sqrt{2 G (M_t + M_i) / (R_t + R_i)}\), and \(f_M(b)\) is the fractional interacting mass of their Eqn. B1, built from the density-weighted spherical caps of common height \(d = (R_t + R_i)(1 - b)\). The common-height caps are a linearised bookkeeping, so outside the fitted geometry (a much denser, much smaller impactor near head-on) the raw \(f_M\) can leave \([0, 1]\), and is clamped to it here, and can vary non-monotonically with \(b\); at equal bulk densities \(f_M\) reduces exactly to the interacting volume \(f_V\) of their Eqn. B2.
Conventions the caller must honour (Kegerreis et al. 2020, Sect. 2): \(v_c\) is the speed at first contact, not at infinity; the masses and radii exclude any atmosphere, with the radii taken at its base; and \(b \equiv \sin\beta\) for impact angle \(\beta\) (0 head-on, 1 grazing).
The fit is constrained for target masses of roughly 0.3 to 3 Earth masses, impactors down to about 0.05 Earth masses, bulk densities of about half to double Earth's, speeds of 1 to 3 \(v_{esc}\), any angle, and thin atmospheres of order 1 percent of the planet mass. The median deviation of the simulations from the law is 9 percent, rising to about 20 percent for slow, head-on impacts.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
v_c
|
float
|
Collision speed at first contact between impactor and target [m/s]. |
required |
M_i
|
float
|
Mass of the impactor, excluding any atmosphere [kg]. |
required |
M_t
|
float
|
Mass of the target, excluding any atmosphere [kg]. |
required |
rho_i
|
float
|
Bulk density of the impactor, excluding any atmosphere [kg/m^3]. |
required |
rho_t
|
float
|
Bulk density of the target, excluding any atmosphere [kg/m^3]. |
required |
R_i
|
float
|
Radius of the impactor, at the base of any atmosphere [m]. |
required |
R_t
|
float
|
Radius of the target, at the base of any atmosphere [m]. |
required |
b
|
float
|
Dimensionless impact parameter, the sine of the impact angle, in [0, 1]: 0 is head-on, 1 is fully grazing. |
required |
Returns:
| Type | Description |
|---|---|
float
|
Fractional mass loss of the target body's atmosphere, in [0, 1]. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
References
- Kegerreis J.A., Eke V.R., Catling D.C., Massey R.J., Teodoro L.F.A., Zahnle K.J. (2020). Atmospheric Erosion by Giant Impacts onto Terrestrial Planets: A Scaling Law for any Speed, Angle, Mass, and Density. ApJL 901, L31. doi:10.3847/2041-8213/abb5fb
Source code in src/zephyrus/collision.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |