⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 network.ned

📁 网络仿真软件OMNET++使用的一个实例
💻 NED
字号:
//
// This file is part of an OMNeT++/OMNEST simulation example.
//
// Copyright (C) 1992-2005 Andras Varga
//
// This file is distributed WITHOUT ANY WARRANTY. See the file
// `license' for details on this and other legal matters.
//


//
// A computer in the ALOHAnet network.
//
simple AHost
    parameters:
        txRate: numeric const,  // transmission rate
        radioDelay: numeric const,  // propagation delay of radio link
        pkLenBits: numeric,  // packet length in bits
        iaTime: numeric,  // packet interarrival time
        slotTime: numeric const;  // zero means no slots (pure Aloha)
endsimple

//
// The central computer in the ALOHAnet network.
//
simple AServer
    parameters:
        txRate: numeric const; // transmission rate (needed to calculate lengths of packet receptions)
    gates:
        in: in;
endsimple

//
// ALOHAnet consists of hosts which talk to the central "server" via
// Aloha or Slotted Aloha protocol
//
module ALOHAnet
    parameters:
        numHosts: numeric,  // number of hosts
        txRate: numeric,  // transmission rate
        slotTime: numeric const;  // zero means no slots (pure Aloha)
    submodules:
        server: AServer;
            parameters:
                txRate = txRate;
            display: "i=device/antennatower_l";
        host: AHost[numHosts];
            parameters:
                txRate = txRate,
                slotTime = slotTime;
            display: "i=device/pc_s";
    connections nocheck:
endmodule

network alohaNet : ALOHAnet
endnetwork

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -