generated from klb2/reproducible-paper-python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.sh
executable file
·19 lines (15 loc) · 841 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Run all script to generate the results presented in the paper "Reliability
# and Latency Analysis for Wireless Communication Systems with a Secret-Key
# Budget" (Karl-L. Besser, Rafael Schaefer, and Vincent Poor, IEEE Transactions
# on Communications, vol. 72, no. 2, pp. 1033-1044, Feb 2024).
#
# Copyright (C) 2023-2024 Karl-Ludwig Besser
# License: GPLv3
echo "Figure 1: Illustration of temporal progress"
python3 illustration_budget.py --plot
echo "Figure 3: Outage probability for different initial budgets"
python3 simulation_deterministic.py -vv -b 5 10 20 50 -t 3 4 5 10 --plot --export
echo "Figure 6: Comparison of outage probability in finite time and ultimate ruin"
python3 simulation_random_timing.py -v -b 20 -m 30 -p .1 --plot --export
python3 simulation_random_timing.py -v -b 20 -m 30 -p .35 --plot --export