Post Reply 
Probability
11-11-2017, 08:44 AM (This post was last modified: 11-11-2017 11:58 AM by Didier Lachieze.)
Post: #3
RE: Probability
Here is a quick program to calculate, based on your estimated number of debris reaching earth, the probability to be hit by a debris on a 1m² area:
Code:
EXPORT Tiangong1(N)   //N: estimated numbers of debris reaching earth
BEGIN
LOCAL h,p,R,S;
R:=6371000;                 //Earth radius (m)
h:=2*SIN(43°00′00″)*R;      //Distance between 43° north and 43° south plans
S:=2*π*R*h;                 //Earth surface area where a debris can fall
p:=N*1/S;                   //Probability to be hit by a debris on any 1m² area within the boundaries
END;

EDIT: I initially wrongly multiplied p by 0.3 (70% of Earth being oceans) but the % of oceans doesn't change the probability of a given square meter area to be hit by a debris.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Probability - DrD - 11-10-2017, 07:39 PM
RE: Probability - AlexFekken - 11-11-2017, 07:05 AM
RE: Probability - Didier Lachieze - 11-11-2017 08:44 AM
RE: Probability - DrD - 11-11-2017, 10:17 AM



User(s) browsing this thread: 1 Guest(s)