LevelofDetail.ned 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // Copyright (C) 2014 OpenSim Ltd.
  3. //
  4. // This program is free software; you can redistribute it and/or
  5. // modify it under the terms of the GNU Lesser General Public License
  6. // as published by the Free Software Foundation; either version 2
  7. // of the License, or (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public License
  15. // along with this program; if not, see <http://www.gnu.org/licenses/>.
  16. //
  17. package inet.showcases.wireless.levelofdetail;
  18. import inet.networklayer.configurator.ipv4.IPv4NetworkConfigurator;
  19. import inet.node.inet.AdhocHost;
  20. import inet.physicallayer.apskradio.bitlevel.APSKLayeredScalarRadioMedium;
  21. import inet.visualizer.integrated.IntegratedCanvasVisualizer;
  22. network LevelofDetail
  23. {
  24. parameters:
  25. int numHosts;
  26. @signal[dummy];
  27. @statistic[a](source=dummy; record=elapsedTime);
  28. submodules:
  29. visualizer: IntegratedCanvasVisualizer {
  30. parameters:
  31. @display("p=100,250");
  32. }
  33. configurator: IPv4NetworkConfigurator {
  34. parameters:
  35. @display("p=100,150");
  36. }
  37. radioMedium: APSKLayeredScalarRadioMedium {
  38. parameters:
  39. @display("p=100,50");
  40. }
  41. host[numHosts]: AdhocHost {
  42. parameters:
  43. @display("r=,,#707070;p=250,58");
  44. }
  45. }