NetworkSim is a Python package used to simulation data transmission in a typical optical wavelength ring network using the Wavelength Division Multiplexing (WDM) technique:
In this package, two protocols have been implemented for the simulation, namely the fixed transmitter - tunable receiver (FT-TR) protocol and the tunable transmitter - fixed receiver (TT-FR) protocol.
This package is developed as part of our final year group project and is still under development. It will be constantly updated as we troubleshoot bugs and implement additional features.
The package is available via PyPI using:
pip install NetworkSim
from NetworkSim import BaseSimulator
simulator = BaseSimulator()
simulator.initialise()
simulator.run()
simulator.summary()
Read the detailed package API reference.