-
Notifications
You must be signed in to change notification settings - Fork 1
/
PesteSat.py
474 lines (434 loc) · 16.8 KB
/
PesteSat.py
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
# -*- coding:utf-8 -*-
#!/usr/bin/python3
##################################################################
## Peter Ferreira
## 03/11/2017
## Queria enviar outro projeto, mas não consegui ainda
##################################################################
from time import sleep
import winsound
import math
try:
import krpc
except:
import os
os.system('pip install krpc')
del(os)
import krpc
# Definição de parâmetros do lançamento em metros
iniciar_inclinacao = 3000.0
finalizar_inclinacao = 55000.0
altitude_alvo = 2863330.0
# Cria conexão com o servidor dentro do KSP e define a nave
conn = krpc.connect(name='PesteStreamSat e Mantis')
ksc = conn.space_center
nave = ksc.active_vessel
rf = nave.orbit.body.reference_frame
# Definições para telemetria
ut = conn.add_stream(getattr, ksc, 'ut')
altitude = conn.add_stream(getattr, nave.flight(rf), 'mean_altitude')
apoastro = conn.add_stream(getattr, nave.orbit, 'apoapsis_altitude')
recursos_estagio_1 = nave.resources_in_decouple_stage(stage=2, cumulative=False)
combustivel1 = conn.add_stream(recursos_estagio_1.amount, 'LiquidFuel')
recursos_estagio_2 = nave.resources_in_decouple_stage(stage=0, cumulative=False)
combustivel2 = conn.add_stream(recursos_estagio_2.amount, 'LiquidFuel')
altitude_nivel_mar = conn.add_stream(getattr, nave.flight(rf), 'mean_altitude')
velocidade = conn.add_stream(getattr, nave.flight(rf), 'speed')
velocidade_horizontal = conn.add_stream(getattr, nave.flight(rf), 'horizontal_speed')
velocidade_vertical = conn.add_stream(getattr, nave.flight(rf), 'vertical_speed')
impulso = conn.add_stream(getattr, nave, 'max_thrust')
massatotal = conn.add_stream(getattr, nave, 'mass')
massaseca = conn.add_stream(getattr, nave, 'dry_mass')
def calcula_gravidade(AltitudeNave, nave):
parametro_gravitacional = nave.orbit.body.gravitational_parameter
RaioAstro = nave.orbit.body.equatorial_radius
R = RaioAstro + AltitudeNave()
g = parametro_gravitacional / (R ** 2.)
return -g
def plano(nave):
# Plano para circularizar órbita
mu = nave.orbit.body.gravitational_parameter
r = nave.orbit.apoapsis
a1 = nave.orbit.semi_major_axis
a2 = r
v1 = math.sqrt(mu*((2./r)-(1./a1)))
v2 = math.sqrt(mu*((2./r)-(1./a2)))
delta_v = v2 - v1
node = nave.control.add_node(ut() + nave.orbit.time_to_apoapsis, prograde=delta_v)
return (node, delta_v)
def calcula_tempo_queima(nave, delta_v):
f = nave.available_thrust
isp = nave.specific_impulse * 9.82
m0 = nave.mass
m1 = m0 / math.exp(delta_v/isp)
flow_rate = f / isp
burn_time = (m0 - m1) / flow_rate
return burn_time
def orientar(nave, noh):
t.mensagem('Orient. Manobra')
nave.auto_pilot.sas = False
nave.auto_pilot.reference_frame = noh.reference_frame
nave.auto_pilot.target_direction = (0, 1, 0)
nave.auto_pilot.wait()
def acelerar_tempo_para_queima(nave, burn_time):
t.mensagem('Acelerando o tempo')
burn_ut = ut() + nave.orbit.time_to_apoapsis - (burn_time/2.)
lead_time = 5
conn.space_center.warp_to(burn_ut - lead_time)
def abertura(nave):
# Abrir antenas e paineis solares
for antenna in nave.parts.antennas:
if antenna.deployable:
t.mensagem('Abrindo antenas')
antenna.deployed = True
sleep(1)
t.mensagem('')
for painelsolar in nave.parts.solar_panels:
if painelsolar.deployable:
t.mensagem('Abrindo paineis solares')
painelsolar.deployed = True
sleep(1)
t.mensagem('')
class tela():
quadro = None
tamanho_tela = None
peinel = None
retangulo = None
texto = None
def __init__(self):
self.quadro = conn.ui.stock_canvas
self.tamanho_tela = self.quadro.rect_transform.size
self.painel = self.quadro.add_panel()
self.rect = self.painel.rect_transform
self.rect.size = (self.rect.size[0] * 20, self.rect.size[1])
self.texto = self.painel.add_text('')
self.texto.rect_transform.position = (0, -20)
self.texto.color = (1, 1, 1)
self.texto.size = 14
self.rect.position = (110 - (self.tamanho_tela[0] / 8), 0)
def mensagem(self, text):
try:
self.texto.content = text
except Exception as erro:
print('Erro: %s' % erro)
def queimar(nave, conn, manobra, tempo_queima, direcao):
try:
global t
except:
pass
if direcao == 'prograde':
while nave.orbit.time_to_apoapsis - (tempo_queima/2.) >= 0.5:
pass
elif direcao == 'retrograde':
while nave.orbit.time_to_periapsis - (tempo_queima/2.) <= -0.5:
pass
try:
t.mensagem('Acelerar 100%')
except:
pass
nave.control.throttle = 1.0
if direcao == 'prograde':
sleep(tempo_queima - 0.1)
else:
sleep((-1 * tempo_queima) - 0.1)
try:
t.mensagem('Ajuste fino')
except:
pass
nave.control.throttle = 0.05
remaining_burn = conn.add_stream(manobra[0].remaining_burn_vector, manobra[0].reference_frame)
while remaining_burn()[1] > 0.003:
pass
nave.control.throttle = 0.0
del(remaining_burn)
def ControleForcaG(nave):
# Evita acelerar demais
global altitude, rf
if altitude() < 60000:
if nave.flight(rf).g_force > 2.5:
nave.control.throttle -= 0.001
elif nave.flight(rf).g_force < 1.9:
nave.control.throttle += 0.001
else:
nave.control.throttle = 1.0
def contagem_regressiva(som):
t.mensagem('Contagem regressiva')
sleep(1)
som.PlaySound('10-0_countdown.wav', som.SND_FILENAME | som.SND_ASYNC)
for n in range(10, 0, -1):
t.mensagem(str(n))
sleep(0.99)
t.mensagem('VAI FILHÃO!')
try:
del(som)
except:
pass
Mantis = None
PesteStreamSat = None
def acencao(nave, altitude_alvo):
global altitude, iniciar_inclinacao, finalizar_inclinacao, t, Mantis, PesteStreamSat
# Bora mano!!!
primeiro_estagio_separado = False
segundo_estagio_separado = False
coifa_separada = False
angulo = 0.0
while altitude_alvo >= apoastro():
# Giro gravitacional
if altitude() > iniciar_inclinacao - 200 and altitude() < iniciar_inclinacao:
t.mensagem('Iniciando giro gravitacional...')
if altitude() > iniciar_inclinacao and altitude() < finalizar_inclinacao:
frac = ((altitude() - iniciar_inclinacao) / (finalizar_inclinacao - iniciar_inclinacao))
novo_angulo = frac * 90
if abs(novo_angulo - angulo) > 0.5:
angulo = novo_angulo
nave.auto_pilot.target_pitch_and_heading(90-angulo, 90)
t.mensagem('Inclinando')
# Reduzir potência para a força G não aloprar
if segundo_estagio_separado == False:
ControleForcaG(nave)
# Separar primeiro e segundo estágio quando acabar o combustível
if primeiro_estagio_separado == False:
if combustivel1() <= 1500.0:
t.mensagem('Separação 1º s')
nave.control.throttle = 0.0
sleep(1)
nave.control.activate_next_stage()
nave.control.throttle = 0.1
nave.auto_pilot.disengage()
nave.auto_pilot.sas = True
sleep(1)
nave.auto_pilot.sas_mode = ksc.SASMode.prograde
t.mensagem('')
primeiro_estagio_separado = True
for vess in ksc.vessels:
if vess.name == 'PesteStreamSat Probe':
Mantis = vess
t.mensagem('Apontando para o Prograde')
sleep(3)
t.mensagem('Para o 2º estágio reentrar')
sleep(3)
t.mensagem('')
if segundo_estagio_separado == False:
if combustivel2() == 0.0:
t.mensagem('Separação 2º s')
nave.control.activate_next_stage()
PesteStreamSat = ksc.active_vessel
t.mensagem('')
segundo_estagio_separado = True
abertura(nave)
if primeiro_estagio_separado == True:
if coifa_separada == False:
if altitude() > 69000:
t.mensagem('Liberando coifa protetora')
nave.control.throttle = 0.1
nave.control.activate_next_stage()
sleep(3)
nave.control.throttle = 1.0
coifa_separada = True
t.mensagem('')
# Reduzir aceleração ao se aproximar da altitude alvo
if apoastro() > altitude_alvo * 0.99:
nave.control.throttle = 0.05
t.mensagem('Ajuste fino')
# Desligar motor
nave.control.throttle = 0.0
t.mensagem('Desligar motor')
# Reativa o auto_pilot
nave.control.sas = False
sleep(1)
nave.auto_pilot.engage()
sleep(1)
nave.auto_pilot.target_pitch_and_heading(90 - angulo, 90)
sleep(2)
def lancamento(nave):
global t
# Check in
nave.auto_pilot.sas = False
nave.auto_pilot.rcs = False
nave.control.throttle = 1.0
sleep(1)
# Ativar primeiro estágio
t.mensagem("Lançamento...")
nave.control.activate_next_stage()
nave.auto_pilot.engage()
nave.auto_pilot.target_pitch_and_heading(90, 90)
sleep(1)
t.mensagem('')
def circular_orbita(nave):
manobra = plano(nave)
tempo_queima = calcula_tempo_queima(nave, manobra[1])
orientar(nave, manobra[0])
sleep(2)
acelerar_tempo_para_queima(nave, tempo_queima)
# Executar queima
queimar(nave, conn, manobra, tempo_queima, 'prograde')
def voltar(nave):
global Mantis, t
t.mensagem('Retorno 1º estágio')
sleep(2)
t.mensagem('Virando para o retrograde')
ksc.active_vessel = Mantis
nave = ksc.active_vessel
nave.name = 'Mantis'
nave.control.throttle = 0.0
nave.control.rcs = True
nave.control.sas = True
sleep(2)
nave.auto_pilot.sas_mode = ksc.SASMode.retrograde
sleep(3)
def pousar(nave):
global t, Mantis
del(t)
t = tela()
nave.auto_pilot.sas = True
nave.auto_pilot.rcs = True
try:
nave.auto_pilot.sas_mode = ksc.SASMode.retrograde
except:
pass
sleep(5)
ksc.warp_to(ut() + 180)
altitude_mantis = conn.add_stream(getattr, nave.flight(rf), 'surface_altitude')
velocidade_mantis = conn.add_stream(getattr, nave.flight(rf), 'speed')
velocidade_vertical_mantis = conn.add_stream(getattr, nave.flight(rf), 'vertical_speed')
impulso_mantis = conn.add_stream(getattr, nave, 'max_thrust')
massatotal_mantis = conn.add_stream(getattr, nave, 'mass')
while not nave.parts.legs[0].is_grounded:
if altitude_mantis() < 5000:
ControlePouso(nave, velocidade_vertical_mantis, velocidade_mantis, altitude_mantis, massatotal_mantis, impulso_mantis, True)
if not nave.control.brakes:
if altitude_mantis() < 50000:
nave.control.brakes = True
t.mensagem('Ativando aerofreios')
sleep(2)
t.mensagem('')
if not nave.control.gear:
if velocidade_vertical_mantis() > -100 and altitude_mantis() < 500:
nave.control.gear = True
t.mensagem('Baixando as pernas')
nave.control.throttle = 0.0
nave.control.brakes = False
nave.auto_pilot.sas = True
nave.auto_pilot.sas_mode = ksc.SASMode.radial
t.mensagem('')
del(t)
def calcula_gravidade(AltitudeNave, nave):
parametro_gravitacional = nave.orbit.body.gravitational_parameter
RaioAstro = nave.orbit.body.equatorial_radius
R = RaioAstro + AltitudeNave()
g = parametro_gravitacional / (R ** 2.)
return -g
def calcula_queima_suicida(Velocidade, Impulso, Massa, altitude, nave):
global altitude_nivel_mar
margem_de_seguranca = 1.0 #se não está dando tempo de reduzir velocidade, tente entre 1.1 e 1.2
gravidade = calcula_gravidade(altitude, nave)
va = ((Impulso()/Massa()) + gravidade)
A = (Velocidade() ** 2) / (2 * va)
return A * margem_de_seguranca
def ControlePouso(nave, velocidade_vertical, velocidade, altitude, massatotal, impulso, atmosfera = True):
print(atmosfera, altitude(), (calcula_queima_suicida(velocidade, impulso, massatotal, altitude, nave) - velocidade_vertical()), velocidade(), -velocidade_vertical())
if altitude() < 3000:
if altitude() <= (calcula_queima_suicida(velocidade, impulso, massatotal, altitude, nave) - velocidade_vertical()):
nave.control.throttle = 1.0
if velocidade_vertical() > -15:
gravidade = calcula_gravidade(altitude, nave)
try:
zeraraceleracao = (massatotal() * -gravidade) / impulso()
except:
zeraraceleracao = nave.control.throttle
if atmosfera:
if velocidade_vertical() > -15:
if velocidade_vertical() < -5 and velocidade_vertical() > -15:
nave.control.throttle = zeraraceleracao
elif velocidade_vertical() > -5:
nave.control.throttle = zeraraceleracao - 0.1
elif velocidade_vertical() < -10:
nave.control.throttle = zeraraceleracao + 0.1
else:
if altitude() > 90 and altitude() < 300:
if velocidade_vertical() < -9 and velocidade_vertical() > -10:
nave.control.throttle = zeraraceleracao
elif velocidade_vertical() > -9:
nave.control.throttle = zeraraceleracao - 0.1
elif velocidade_vertical() < -10:
nave.control.throttle = zeraraceleracao + 0.1
elif altitude() > 30 and altitude() < 90:
if velocidade_vertical() < -5 and velocidade_vertical() > -6:
nave.control.throttle = zeraraceleracao
elif velocidade_vertical() > -5:
nave.control.throttle = zeraraceleracao - 0.1
elif velocidade_vertical() < -6:
nave.control.throttle = zeraraceleracao + 0.1
elif altitude() > 20 and altitude() < 30:
if velocidade_vertical() < -1 and velocidade_vertical() > -3:
nave.control.throttle = zeraraceleracao
elif velocidade_vertical() > -1:
nave.control.throttle = zeraraceleracao - 0.1
elif velocidade_vertical() < -3:
nave.control.throttle = zeraraceleracao + 0.1
elif altitude() < 20:
if velocidade_vertical() < -0.75 and velocidade_vertical() > -1.25:
nave.control.throttle = zeraraceleracao
elif velocidade_vertical() > -0.5:
nave.control.throttle = zeraraceleracao - 0.1
elif velocidade_vertical() < -1.1:
nave.control.throttle = zeraraceleracao + 0.1
try:
if velocidade_horizontal() > 300.0:
if nave.control.sas_mode is not ksc.SASMode.retrograde:
nave.control.sas_mode = ksc.SASMode.retrograde
else:
if nave.control.sas_mode is not ksc.SASMode.radial:
nave.control.rcs = True
nave.control.sas_mode = ksc.SASMode.radial
nave.auto_pilot.sas_mode = ksc.SASMode.radial
except:
pass
def rendezvous(nave, target):
# Não consegui terminar essa semana, é difícil demais,
# vou continuar tentando para as próximas semanas
pass
def docking(nave, target):
# Isso é menos difícil, mas como não fiz o rendezvous ainda
# Insira aqui o arco-íris do Gaveta
pass
t = tela()
contagem_regressiva(winsound)
lancamento(nave)
PesteStreamSat = nave
acencao(nave, altitude_alvo)
sleep(2)
ksc.active_vessel = Mantis
sleep(5)
voltar(Mantis)
pousar(Mantis)
# Removendo o objeto de tela, por que as vezes o texto fica sobreposto
try:
del(t)
except:
pass
t = tela()
t.mensagem('ESTOU PRONTO!!!')
sleep(10)
ksc.active_vessel = PesteStreamSat
sleep(3)
nave = ksc.active_vessel
circular_orbita(nave)
t.mensagem('PesteStreamSat Entregue')
sleep(5)
ksc.active_vessel = Mantis
del(t)
t = tela()
t.mensagem('Missão Cumprida sem R.U.D.')
print('Missão cumprida')
sleep(10)
t.mensagem('Deixe o seu like!')
sleep(4)
t.mensagem('Assista até o final!')
sleep(4)
t.mensagem('Compartilhe com os amigos')
sleep(4)
t.mensagem('Se inscreva no canal!')
sleep(5)
nave.control.rcs = False
conn.close()