Remove LeoMobilityModel

This commit is contained in:
Tim Schubert 2020-07-06 17:24:28 +02:00
parent 4eda5589cb
commit 8ab0bc023e
8 changed files with 13 additions and 12 deletions

View file

@ -1,5 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
#include "ns3/log.h"
#include "leo-propagation-loss-model.h"
namespace ns3 {
@ -38,7 +39,7 @@ LeoPropagationLossModel::DoCalcRxPower (double txPowerDbm,
// TODO perform line-earth intersection (ray tracing)
double rxc = 0;//-m_variable->GetValue ();
NS_LOG_DEBUG ("attenuation coefficient="<<rxc<<"Db");
//NS_LOG_DEBUG ("attenuation coefficient="<<rxc<<"Db");
return txPowerDbm + rxc;
}