/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2009 University of Washington * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Leonard Tracy */ #include "uan-prop-model-thorp.h" #include "uan-tx-mode.h" #include "ns3/double.h" #include "ns3/log.h" namespace ns3 { NS_LOG_COMPONENT_DEFINE ("UanPropModelThorp"); NS_OBJECT_ENSURE_REGISTERED (UanPropModelThorp); UanPropModelThorp::UanPropModelThorp () { } UanPropModelThorp::~UanPropModelThorp () { } TypeId UanPropModelThorp::GetTypeId (void) { static TypeId tid = TypeId ("ns3::UanPropModelThorp") .SetParent () .SetGroupName ("Uan") .AddConstructor () .AddAttribute ("SpreadCoef", "Spreading coefficient used in calculation of Thorp's approximation.", DoubleValue (1.5), MakeDoubleAccessor (&UanPropModelThorp::m_SpreadCoef), MakeDoubleChecker ()) ; return tid; } double UanPropModelThorp::GetPathLossDb (Ptr a, Ptr b, UanTxMode mode) { double dist = a->GetDistanceFrom (b); return m_SpreadCoef * 10.0 * std::log10 (dist) + (dist / 1000.0) * GetAttenDbKm (mode.GetCenterFreqHz () / 1000.0); } UanPdp UanPropModelThorp::GetPdp (Ptr a, Ptr b, UanTxMode mode) { return UanPdp::CreateImpulsePdp (); } Time UanPropModelThorp::GetDelay (Ptr a, Ptr b, UanTxMode mode) { return Seconds (a->GetDistanceFrom (b) / 1500.0); } double UanPropModelThorp::GetAttenDbKyd (double freqKhz) { return GetAttenDbKm (freqKhz) / 1.093613298; } double UanPropModelThorp::GetAttenDbKm (double freqKhz) { double fsq = freqKhz * freqKhz; double atten; if (freqKhz >= 0.4) { atten = 0.11 * fsq / (1 + fsq) + 44 * fsq / (4100 + fsq) + 2.75 * 0.0001 * fsq + 0.003; } else { atten = 0.002 + 0.11 * (freqKhz / (1 + freqKhz)) + 0.011 * freqKhz; } return atten; } } // namespace ns3