OMNET OS3 PDF Open Source Satellite Simulator was developed as a framework for simulating various kinds of satellite-based communication.
Features of OS3:
- Graphical User Interface (GUI).
- Live weather data.
- High resolution altitude data.
- Current satellite movement data.
- Different visualization options.
- Channel modeling.
Architecture of OS3:
Download Sample code for Omnet OS3 PDF
package os3.examples.Validation; import os3.base.Satellite; import inet.world.radio.ChannelControl; import os3.base.CNI_OS3; import os3.base.Observer; // // Network Validate used to show Observer functionalities // network Validate { parameters: int numOfSats; @display("bgi=background_earth;bgb=2160,1080"); submodules: satellite[numOfSats]: Satellite { parameters: @display("p=80,200;r=10,,#707070;i=device/satellite_l"); } channelcontrol: ChannelControl { parameters: numChannels = 2; @display("p=220,70;i=misc/sun"); } cni_os3: CNI_OS3 { @display("p=80,70,i;i=old/bluebox"); } observer: Observer { numgps = 0; @display("p=220,200"); } connections allowunconnected: }