-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpresets.514.txt
82 lines (82 loc) · 3.51 KB
/
presets.514.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
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
#A dictionary of preset missile parameters, in a relatively simple format. Read by gui.pyw in OnRun method of Parameters Panel
#Note that fuelmass,drymass,Isp0,burntime and thrust are lists whose first (zeroth) entry is 0. This is because lists in python are zero-based, and it makes sense to track stage data by index than remembering this. Beware the off-by-one error.
#The quotes around each key are also important, don't forget them if you add another preset.
#This file is read and eval'ed by Python, so be careful. Format is a dict of dicts.
{ #start presets dict
'Germany - V2':{
'payload':975,
'missilediam':1.65,
'rvdiam':1.65,
'nozzlearea':1.0,
'LdivD':1.0,
'estrange':240,
'numstages':1,
'fuelmass':[0,8900],
'drymass':[0,4000],
'Isp0':[0,210],
'thrust0':[0,27461],
'Nosecone':'Conical'},
'Russia - Scud-B':{'payload':1000,'missilediam':.855,'rvdiam':0,'nozzlearea':1.0,'LdivD':1.0,'estrange':300,
'numstages':1,
'fuelmass':[0,5200],
'drymass':[0,1150],
'Isp0':[0,226],
'thrust0':[0,8300],
'Nosecone':'Conical'},
'Iraq - Al-Husayn':{'payload':500,'missilediam':0.88,'rvdiam':0,'nozzlearea':1.0,'LdivD':1.0,'estrange':600,
'numstages':1,
'fuelmass':[0,5600],
'drymass':[0,1200],
'Isp0':[0,226],
'thrust0':[0,9177.4],
'Nosecone':'Conical'},
'DPRK - Nodong-A':{'payload':1000,'missilediam':1.35,'rvdiam':0,'nozzlearea':1.0,'LdivD':1.0,'estrange':1500,
'numstages':1,
'fuelmass':[0,12798],
'drymass':[0,2294],
'Isp0':[0,226],
'thrust0':[0,26600],
'Nosecone':'Conical'},
'DPRK - Nodong-A1':{'payload':650,'missilediam':1.35,'rvdiam':0,'nozzlearea':1.0,'LdivD':1.0,'estrange':2000,
'numstages':1,
'fuelmass':[0,14950],
'drymass':[0,2371],
'Isp0':[0,226],
'thrust0':[0,31260],
'Nosecone':'Conical'},
'DPRK - Nodong-B':{'payload':1000,'missilediam':1.5,'rvdiam':0,'nozzlearea':1.0,'LdivD':1.0,'estrange':4000,
'numstages':1,
'fuelmass':[0,17858],
'drymass':[0,2146],
'Isp0':[0,269],
'thrust0':[0,26580],
'Nosecone':'Conical'},
'Iran - Qased5':{'payload':200,'missilediam':0.95,'rvdiam':0.6,'nozzlearea':1.0,'LdivD':2.0,'estrange':5000,
'numstages':5,
'fuelmass':[0,15075.,42.,755.,200.,171.],
'drymass':[0,1675.,0.001,150.,0.001,55.],
'Isp0':[0,240.,0.01,255.,0.01,255.],
'thrust0':[0,30917.,0.01,2961.,0.01,1743.],
'Nosecone':'Conical'},
'Iran - Qased2':{'payload':200,'missilediam':0.95,'rvdiam':0.6,'nozzlearea':1.0,'LdivD':2.0,'estrange':5000,
'numstages':3,
'fuelmass':[0,15075.,755.,171.],
'drymass':[0,1675.,150.,55.],
'Isp0':[0,240.,255.,255.],
'thrust0':[0,30917.,2961.,1743.],
'Nosecone':'Conical'},
'DPRK - TD-1':{'payload':1000,'missilediam':1.5,'rvdiam':0,'nozzlearea':1.0,'LdivD':1.0,'estrange':2000,
'numstages':3,
'fuelmass':[0,12798,3771,196.66],
'drymass':[0,2394,1100,23],
'Isp0':[0,226,268,280],
'thrust0':[0,30432,6000,2039.43],
'Nosecone':'Conical'},
'DPRK - TD-2':{'payload':1158,'missilediam':2.0,'rvdiam':0,'nozzlearea':1.0,'LdivD':1.0,'estrange':6400,
'numstages':2,
'fuelmass':[0,52124,12798],
'drymass':[0,3532,2294],
'Isp0':[0,230,264],
'thrust0':[0,104257,31200],
'Nosecone':'Conical'}
} #end presets dict