1
0
Fork 0
mirror of https://github.com/Findus23/collision-analyisis-and-interpolation.git synced 2024-09-19 15:13:50 +02:00
collision-analyisis-and-int.../cli.py

104 lines
3.2 KiB
Python
Raw Permalink Normal View History

2019-10-15 17:24:25 +02:00
import sys
2019-10-09 11:37:46 +02:00
from math import pi, sqrt
from scipy.constants import G, astronomical_unit
2019-09-21 21:30:07 +02:00
from CustomScaler import CustomScaler
from interpolators.rbf import RbfInterpolator
from simulation_list import SimulationList
2019-10-14 15:41:11 +02:00
def clamp(n, smallest, largest):
2020-11-30 11:52:12 +01:00
assert smallest < largest
2019-10-14 15:41:11 +02:00
return max(smallest, min(n, largest))
2019-10-15 17:24:25 +02:00
if len(sys.argv) < 2:
print("specify filename")
exit(1)
if sys.argv[1] == "-h":
print("alpha\t\t\tthe impact angle \t[degrees]")
print("velocity\t\tthe impact velocity \t[AU/58d]")
print("projectile-mass\t\tmass of the projectile \t[M_⊙]")
print("target-mass\t\tmass of the projectile \t[M_⊙]")
exit()
2019-10-09 11:37:46 +02:00
2019-10-15 17:24:25 +02:00
with open(sys.argv[1]) as f:
entries = f.readline().split()
if len(entries) != 4:
print("file must contain 4 parameters")
argalpha, argvelocity, argmp, argmt = map(float, entries)
2019-10-09 11:37:46 +02:00
solar_mass = 1.98847542e+30 # kg
2020-11-30 11:52:12 +01:00
ice_density = 0.917 / 1000 * 100 ** 3 # kg/m^3
basalt_density = 2.7 / 1000 * 100 ** 3 # kg/m^3
2019-10-09 11:37:46 +02:00
water_fraction = 0.15
2019-10-15 17:24:25 +02:00
alpha = argalpha
2019-10-09 11:37:46 +02:00
target_water_fraction = water_fraction
projectile_water_fraction = water_fraction
2019-10-15 17:24:25 +02:00
projectile_mass_sm = argmp
target_mass_sm = argmt
2019-10-14 15:41:11 +02:00
projectile_mass = projectile_mass_sm * solar_mass
target_mass = target_mass_sm * solar_mass
2019-10-09 11:37:46 +02:00
def core_radius(total_mass, water_fraction, density):
core_mass = total_mass * (1 - water_fraction)
return (core_mass / density * 3 / 4 / pi) ** (1 / 3)
def total_radius(total_mass, water_fraction, density, inner_radius):
mantle_mass = total_mass * water_fraction
return (mantle_mass / density * 3 / 4 / pi + inner_radius ** 3) ** (1 / 3)
target_core_radius = core_radius(target_mass, target_water_fraction, basalt_density)
target_radius = total_radius(target_mass, target_water_fraction, ice_density, target_core_radius)
projectile_core_radius = core_radius(projectile_mass, projectile_water_fraction, basalt_density)
projectile_radius = total_radius(projectile_mass, projectile_water_fraction, ice_density, projectile_core_radius)
escape_velocity = sqrt(2 * G * (target_mass + projectile_mass) / (target_radius + projectile_radius))
2019-10-15 17:24:25 +02:00
velocity_original = argvelocity
2019-10-09 11:37:46 +02:00
const = 365.256 / (2 * pi) # ~58.13
velocity_si = velocity_original * astronomical_unit / const / (60 * 60 * 24)
velocity = velocity_si / escape_velocity
2019-10-13 16:32:13 +02:00
gamma = projectile_mass_sm / target_mass_sm
2019-09-21 21:30:07 +02:00
2019-10-14 15:41:11 +02:00
if alpha > 90:
alpha = 180 - alpha
if gamma > 1:
gamma = 1 / gamma
alpha = clamp(alpha, 0, 60)
velocity = clamp(velocity, 1, 5)
2020-11-30 11:52:12 +01:00
2019-10-14 15:41:11 +02:00
m_ceres = 9.393e+20
m_earth = 5.9722e+24
projectile_mass = clamp(projectile_mass, 2 * m_ceres, 2 * m_earth)
2020-11-30 11:52:12 +01:00
gamma = clamp(gamma, 1 / 10, 1)
2019-09-21 21:30:07 +02:00
simulations = SimulationList.jsonlines_load()
scaler = CustomScaler()
scaler.fit(simulations.X)
scaled_data = scaler.transform_data(simulations.X)
water_interpolator = RbfInterpolator(scaled_data, simulations.Y_water)
2021-10-12 15:45:43 +02:00
mass_interpolator = RbfInterpolator(scaled_data, simulations.Y_mantle)
2019-09-21 21:30:07 +02:00
2021-10-12 15:45:43 +02:00
testinput = [32, 1, 7.6e22, 0.16, 0.15, 0.15]
2020-11-30 11:52:12 +01:00
2019-09-21 21:30:07 +02:00
scaled_input = list(scaler.transform_parameters(testinput))
water_retention = water_interpolator.interpolate(*scaled_input)
mass_retention = mass_interpolator.interpolate(*scaled_input)
2020-11-30 11:52:12 +01:00
water_retention = clamp(water_retention, 0, 1)
mass_retention = clamp(mass_retention, 0, 1)
2019-09-21 21:30:07 +02:00
print(water_retention)
print(mass_retention)