mirror of
https://github.com/logos-storage/logos-storage-research.git
synced 2026-01-03 14:03:08 +00:00
18 lines
511 B
Python
18 lines
511 B
Python
import numpy as np
|
|
import matplotlib.pyplot as plt
|
|
|
|
# Range of N values
|
|
N = np.linspace(1e4, 1e5, 500)
|
|
|
|
# Maintenance bandwidth formula (converted to KB/sec)
|
|
bandwidth_maint = (6.67 + 48.2 * np.log2(N)) / 1024
|
|
|
|
# Plot
|
|
plt.figure(figsize=(8,5))
|
|
plt.plot(N, bandwidth_maint, label=r'Maintenance Bandwidth')
|
|
plt.xlabel('N (number of DHT nodes)')
|
|
plt.ylabel('Maintenance Bandwidth (KB/sec)')
|
|
plt.title('Maintenance Cost For Varying Number of Nodes')
|
|
plt.grid(True, linestyle="--", alpha=0.6)
|
|
plt.legend()
|
|
plt.show() |