Skip to content

Commit 02bf88d

Browse files
committed
added falcon heavy static data
1 parent 6dd45df commit 02bf88d

File tree

2 files changed

+104
-1
lines changed

2 files changed

+104
-1
lines changed

data/falcon9.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$falcon9 = {
2-
name: 'falcon 9',
2+
name: 'Falcon 9',
33
active: 'true',
44
stages: '2',
55
cost_per_launch: '62 million',

data/falcon_heavy.rb

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
$falcon_heavy = {
2+
name: 'Falcon Heavy',
3+
active: 'false',
4+
stages: '2',
5+
boosters: '2',
6+
cost_per_launch: '90 million',
7+
first_flight: 'TBD',
8+
country: 'United States',
9+
company: 'SpaceX',
10+
height: {
11+
meters: '70',
12+
feet: '229.6'
13+
},
14+
total_width: {
15+
meters: '12.2',
16+
feet: '39.9'
17+
},
18+
mass: {
19+
kg: '1420788',
20+
lb: '3125735'
21+
},
22+
payload_weights: {
23+
leo: {
24+
name: 'low earth orbit',
25+
kg: '63800',
26+
lb: '140660'
27+
},
28+
gto: {
29+
name: 'geosynchronous transfer orbit',
30+
kg: '26700',
31+
lb: '58860'
32+
},
33+
mars: {
34+
name: 'mars orbit',
35+
kg: '16800',
36+
lb: '37040'
37+
},
38+
pluto: {
39+
name: 'pluto orbit',
40+
kg: '3500',
41+
lb: '7720'
42+
}
43+
},
44+
first_stage: {
45+
reusable: 'true',
46+
engines: '27',
47+
cores: '3',
48+
burn_time_sec: '162',
49+
thrust_sea_level: {
50+
kN: '22819',
51+
lbf: '5130000'
52+
},
53+
thrust_vacuum: {
54+
kN: '24681',
55+
lbf: '5548500'
56+
}
57+
},
58+
second_stage: {
59+
engines: '1',
60+
burn_sec_sec: '397',
61+
thrust: {
62+
kN: '934',
63+
lbf: '210000'
64+
},
65+
payloads: {
66+
option_1: 'dragon',
67+
option_2: 'composite fairing',
68+
composite_fairing: {
69+
height: {
70+
meters: '13.1',
71+
feet: '43'
72+
},
73+
diameter: {
74+
meters: '5.2',
75+
feet: '17.1'
76+
}
77+
}
78+
}
79+
},
80+
engines: {
81+
number: '27',
82+
type: 'merlin',
83+
version: '1D+',
84+
layout: 'octaweb',
85+
engine_loss: '6',
86+
propellent_1: 'oxygen',
87+
propellant_2: 'kerosene',
88+
thrust_sea_level: {
89+
kN: '845',
90+
lbf: '190000'
91+
},
92+
thrust_vacuum: {
93+
kN: '914',
94+
lbf: '205500'
95+
},
96+
thrust_to_weight: '180.1'
97+
},
98+
landing_legs: {
99+
number: '12',
100+
material: 'carbon fiber'
101+
},
102+
description: 'With the ability to lift into orbit over 54 metric tons (119,000 lb)--a mass equivalent to a 737 jetliner loaded with passengers, crew, luggage and fuel--Falcon Heavy can lift more than twice the payload of the next closest operational vehicle, the Delta IV Heavy, at one-third the cost.'
103+
}

0 commit comments

Comments
 (0)