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

📄 discmodel.java

📁 传感器网络中的嵌入式操作系统源代码
💻 JAVA
字号:
// $Id: DiscModel.java,v 1.1.4.1 2003/08/18 22:09:43 cssharp Exp $package net.tinyos.sim;public class DiscModel implements PropagationModel {  private double radius;  public DiscModel(double radius) {    this.radius = radius;  }  public double getPacketLossRate(double distance, double scalingFactor) {    if (distance * scalingFactor <= radius) return 0.0;    else return 1.0;  }  public double getBitLossRate(double packetLossRate) {    return packetLossRate;  }    public String toString() {    return "Fixed radius ("+radius+")";  }    }

⌨️ 快捷键说明

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