summaryrefslogtreecommitdiff
path: root/tests/api_read_eth0_ncom_2s1r/simulator.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/api_read_eth0_ncom_2s1r/simulator.py')
-rwxr-xr-xtests/api_read_eth0_ncom_2s1r/simulator.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/api_read_eth0_ncom_2s1r/simulator.py b/tests/api_read_eth0_ncom_2s1r/simulator.py
new file mode 100755
index 0000000..85a0671
--- /dev/null
+++ b/tests/api_read_eth0_ncom_2s1r/simulator.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+
+# Load ESDS
+import esds
+import numpy as np
+
+B=np.full((3,3),3)
+L=np.full((3,3),0)
+s=esds.Simulator({"wlan0":{"bandwidth":B, "latency":L, "is_wired":False}, "eth0":{"bandwidth":B, "latency":L, "is_wired":True}})
+
+s.create_node("sender")
+s.create_node("sender")
+s.create_node("receiver")
+
+s.run(interferences=False)