Index | Start Time | Stop Time | Max. Elevation | Phase | Primary GS | Type | Tasks | Status |
---|---|---|---|---|---|---|---|---|
93 | 2018-12-18 22:14:10+01:00 | 2018-12-18 22:25:51+01:00 | N/A° | Extended Mission | N/A | [TBD] | ☑ |
Goal
Download telemetry and SunS Experiment data. Remove downloaded and bad photos.
Tasklist
tasks = [
[[tc.SetBitrate(3, BaudRate.BaudRate9600), 5], SendLoop, WaitMode.NoWait],
[tc.SendBeacon(), Send, WaitMode.Wait],
[tc.ListFiles(4, '/'), Send, WaitMode.Wait],
# Telemetry between sessions 92 and 93
[tc.DownloadFile(10, '/telemetry.current', [i for i in range(260, 452, 10)]), Send, WaitMode.Wait],
[tc.DownloadFile(11, '/telemetry.current', [i for i in range(261, 452, 10)]), Send, WaitMode.Wait],
[tc.DownloadFile(12, '/telemetry.current', [i for i in range(262, 452, 10)]), Send, WaitMode.Wait],
# Fifth SunS Experiment data
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(21, '/suns_5', [i for i in range(0, 20, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(22, '/suns_5', [i for i in range(20, 40, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(23, '/suns_5', [i for i in range(40, 60, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(24, '/suns_5', [i for i in range(60, 80, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(25, '/suns_5', [i for i in range(80, 100, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(26, '/suns_5', [i for i in range(100, 120, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(27, '/suns_5', [i for i in range(120, 140, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(28, '/suns_5', [i for i in range(140, 160, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(29, '/suns_5', [i for i in range(160, 180, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(30, '/suns_5', [i for i in range(180, 200, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(31, '/suns_5', [i for i in range(200, 220, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(32, '/suns_5', [i for i in range(220, 240, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(33, '/suns_5', [i for i in range(240, 250, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.Wait],
# Delete photos - two times
[tc.RemoveFile(40, '/p10_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(41, '/p11_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(42, '/p12_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(43, '/p13_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(44, '/p14_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(45, '/p15_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(46, '/p16_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(47, '/p17_480_0'), Send, WaitMode.Wait],
[tc.RemoveFile(48, '/p18_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(49, '/p19_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(50, '/p1_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(51, '/p20_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(52, '/p4_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(53, '/p7_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(54, '/p8_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(55, '/p9_480_0'), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.Wait],
[tc.RemoveFile(56, '/p10_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(57, '/p11_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(58, '/p12_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(59, '/p13_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(60, '/p14_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(61, '/p15_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(62, '/p16_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(63, '/p17_480_0'), Send, WaitMode.Wait],
[tc.RemoveFile(64, '/p18_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(65, '/p19_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(66, '/p1_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(67, '/p20_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(68, '/p4_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(69, '/p7_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(70, '/p8_480_0'), Send, WaitMode.NoWait],
[tc.RemoveFile(71, '/p9_480_0'), Send, WaitMode.Wait],
[tc.ListFiles(80, '/'), Send, WaitMode.Wait],
# More telemetry between sessions 92 and 93
[tc.DownloadFile(100, '/telemetry.current', [i for i in range(263, 452, 10)]), Send, WaitMode.Wait],
[tc.DownloadFile(101, '/telemetry.current', [i for i in range(264, 452, 10)]), Send, WaitMode.Wait],
[tc.DownloadFile(102, '/telemetry.current', [i for i in range(265, 452, 10)]), Send, WaitMode.Wait],
[tc.DownloadFile(103, '/telemetry.current', [i for i in range(266, 452, 10)]), Send, WaitMode.Wait],
[tc.DownloadFile(104, '/telemetry.current', [i for i in range(267, 452, 10)]), Send, WaitMode.Wait],
[tc.DownloadFile(105, '/telemetry.current', [i for i in range(268, 452, 10)]), Send, WaitMode.Wait],
[tc.DownloadFile(106, '/telemetry.current', [i for i in range(269, 452, 10)]), Send, WaitMode.Wait],
# Fifth SunS Experiment secondary data
[tc.DownloadFile(200, '/suns_5_sec', [i for i in range(0, 20, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(201, '/suns_5_sec', [i for i in range(20, 40, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(202, '/suns_5_sec', [i for i in range(40, 60, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(203, '/suns_5_sec', [i for i in range(60, 80, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(204, '/suns_5_sec', [i for i in range(80, 100, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(205, '/suns_5_sec', [i for i in range(100, 125, 1)]), Send, WaitMode.Wait],
[[tc.SendBeacon(), 20], SendLoop, WaitMode.NoWait],
]
Analyzer Output
======================================= General =======================================
[33m[Warning] Bitrate not restored (1200)[0m
======================== Resources utilization for THIS session ========================
# Name Is Current Session Session Session Session Session Session Notes
scheduled? bitrate downlink downlink uplink uplink power power
[bps] frames duration frames duration budget budget
count [s] count [s] energy mean
[mWh] power
[mW]
--- ------------ ------------ --------- ---------- ---------- --------- ---------- --------- --------- ---------------------------------------------------------------------
1 SetBitrate False 9600 1 0.32 1 1.03 0.3 N/A [36m[Info] In SendLoop mode - a telecommand in every .[0m
2 SendBeacon False 9600 1 0.51 1 1.02 0.4 N/A [33m[Warning] Waiting is not recommended[0m
3 ListFiles False 9600 5 1.28 1 1.04 1.1 N/A [33m[Warning] Waiting is not recommended[0m
4 DownloadFile False 9600 20 4.18 1 1.69 3.5 N/A
5 DownloadFile False 9600 20 4.18 1 1.69 3.5 N/A
6 DownloadFile False 9600 19 3.99 1 1.67 3.3 N/A
7 SendBeacon False 9600 1 0.51 1 1.02 0.4 N/A
8 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
9 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
10 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
11 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
12 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
13 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
14 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
15 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
16 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
17 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
18 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
19 DownloadFile False 9600 20 4.18 1 1.62 3.5 N/A
20 DownloadFile False 9600 10 2.25 1 1.35 1.9 N/A
21 SendBeacon False 9600 1 0.51 1 1.02 0.4 N/A [33m[Warning] Waiting is not recommended[0m
22 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
23 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
24 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
25 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
26 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
27 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
28 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
29 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A [33m[Warning] Waiting is not recommended[0m
30 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
31 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
32 RemoveFile False 9600 1 0.32 1 1.1 0.3 N/A
33 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
34 RemoveFile False 9600 1 0.32 1 1.1 0.3 N/A
35 RemoveFile False 9600 1 0.32 1 1.1 0.3 N/A
36 RemoveFile False 9600 1 0.32 1 1.1 0.3 N/A
37 RemoveFile False 9600 1 0.32 1 1.1 0.3 N/A [33m[Warning] Waiting is not recommended[0m
38 SendBeacon False 9600 1 0.51 1 1.02 0.4 N/A [33m[Warning] Waiting is not recommended[0m
39 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
40 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
41 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
42 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
43 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
44 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
45 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
46 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A [33m[Warning] Waiting is not recommended[0m
47 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
48 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
49 RemoveFile False 9600 1 0.32 1 1.1 0.3 N/A
50 RemoveFile False 9600 1 0.33 1 1.11 0.3 N/A
51 RemoveFile False 9600 1 0.32 1 1.1 0.3 N/A
52 RemoveFile False 9600 1 0.32 1 1.1 0.3 N/A
53 RemoveFile False 9600 1 0.32 1 1.1 0.3 N/A
54 RemoveFile False 9600 1 0.32 1 1.1 0.3 N/A [33m[Warning] Waiting is not recommended[0m
55 ListFiles False 9600 5 1.28 1 1.04 1.1 N/A [33m[Warning] Waiting is not recommended[0m
56 DownloadFile False 9600 19 3.99 1 1.67 3.3 N/A
57 DownloadFile False 9600 19 3.99 1 1.67 3.3 N/A
58 DownloadFile False 9600 19 3.99 1 1.67 3.3 N/A
59 DownloadFile False 9600 19 3.99 1 1.67 3.3 N/A
60 DownloadFile False 9600 19 3.99 1 1.67 3.3 N/A
61 DownloadFile False 9600 19 3.99 1 1.67 3.3 N/A
62 DownloadFile False 9600 19 3.99 1 1.67 3.3 N/A
63 DownloadFile False 9600 20 4.18 1 1.65 3.5 N/A
64 DownloadFile False 9600 20 4.18 1 1.65 3.5 N/A
65 DownloadFile False 9600 20 4.18 1 1.65 3.5 N/A
66 DownloadFile False 9600 20 4.18 1 1.65 3.5 N/A
67 DownloadFile False 9600 20 4.18 1 1.65 3.5 N/A
68 DownloadFile False 9600 25 5.15 1 1.78 4.3 N/A
69 SendBeacon False 9600 1 0.51 1 1.02 0.4 N/A [36m[Info] In SendLoop mode - a telecommand in every .[0m
Session downlink frames count: 615
Session downlink duration [s]: 134.63
Session uplink frames count: 69
Session uplink duration [s]: 91.09
Session power budget energy [mWh]: 112.2
Session power budget mean power [mW]: N/A
================ Resources utilization for SCHEDULED experiments or tasks ================
[Info] No scheduled experiments or tasks.
Artifacts
waterfalls
files
- file_list_80.txt
- elka_versions
- downlink_frames.txt
- telemetry.current
- suns_5.missing
- beacons.txt
- requested_files.txt
- suns_5_sec
- elka_downlink.frames
- file_list_4.txt
- suns_5
- telemetry.current.error
- fp-gs_downlink.frames
- telemetry.current.missing
- all.frames
- fp-gs_versions