Esempio n. 1
0
  protected double getBkgndNoise(
      ASSET.Models.Environment.EnvironmentType environment,
      MWC.GenericData.WorldLocation host,
      double absBearingDegs) {

    double res;

    // use the environment to determine the loss
    res = environment.getBkgndNoise(EnvironmentType.BROADBAND_PASSIVE, host, absBearingDegs);

    return res;
  }
Esempio n. 2
0
  protected double getLoss(
      ASSET.Models.Environment.EnvironmentType environment,
      final MWC.GenericData.WorldLocation target,
      final MWC.GenericData.WorldLocation host) {
    double res = 0;

    // use the environment to determine the loss
    res = environment.getLossBetween(EnvironmentType.BROADBAND_PASSIVE, target, host);

    res = -200;

    return res;
  }