OMNET++ OS3 TUTORIAL

OMNET++ OS3 TUTORIAL is an framework which is used for simulating satellite based applications.OS3 referred as Open Source Satellite Simulator.OMNET++ OS3 TUTORIAL provides testing in reality which can test complex scenario comfortably . Get Latest update about OMNeT++ OS3 Tutorial here for more recent updates.

.

Architecture-of- OMNeT++ OS3

OS3 supporting the following features:

Easy handling, even for non-expert user.

Various existing and future satellite systems.

Individual extensions and an integration within OMNET++.

Advantages of OS3:

  • OS3 is operating system independent.
  • Gives high network performance result.
  • Employing OS3 is feasible for anyone who is restricted to a specific operating system.
  • It’s more flexible.

Download Sample Source Code for OMNeT++ OS3 Simulation


[code lang="js"]
network SatSGP4
{
    parameters:
        int numOfSats; // Number of satellites
        int numOfMCCs; // Number of Mission Control Centers
        @display("bgi=background_earth;bgb=2160,1080");
    submodules:
        satellite[numOfSats]: Satellite {
            parameters:
                @display("p=96,92;r=10,,#707070;i=device/satellite_l");
        }
        MCC[numOfMCCs]: MissionControlCenter {
            parameters:
                @display("p=232,92;i=misc/building;r=10,,black");
        }
    connections allowunconnected:
}

[/code]