esa / LADDS

Large-scale Deterministic Debris Simulation - Codebase for the ARIADNA Study between TU Munich and ESA's Advanced Concepts Team.
GNU General Public License v3.0
5 stars 3 forks source link

Improve atmospheric density approximation #101

Closed gomezzz closed 2 years ago

gomezzz commented 2 years ago

Feature

Desired behavior

Better drag approximation

What needs to be done

Change the approximation in the orbital propagator at https://github.com/FG-TUM/OrbitPropagator/

@darioizzo could you post the source you mentioned? :)

How it can be tested

Look at particle decays over a month or so.

gomezzz commented 2 years ago

From Dario: atmosphere.zip

Can be used with

import pickle as pkl
with open("atmosphere.pk", "rb") as file:
    altitude, density = pkl.load(file)

Altitude is in km, density in kg/m3 from the NRLMSISE-00 model queried at 0 longitude 0 latitude on 01/02/2021. Altitude in [78, 1000] km. density above 1000 can be considered as 0.

gomezzz commented 2 years ago

I think this can be closed? @FG-TUM

FG-TUM commented 2 years ago

fixed via linked PRs