src/uan/model/uan-prop-model-thorp.h
author Tommaso Pecorella <tommaso.pecorella@unifi.it>
Fri, 03 Oct 2014 23:51:58 +0200
changeset 10989 71d2c67a51aa
parent 10469 c4e79d3e3007
permissions -rw-r--r--
[Doxygen] minor fixes

/* -*- 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 <lentracy@gmail.com>
 */

#ifndef UAN_PROP_MODEL_THORP_H
#define UAN_PROP_MODEL_THORP_H

#include "uan-prop-model.h"

namespace ns3 {

class UanTxMode;

/**
 * \ingroup uan
 *
 * Uses Thorp's approximation to compute pathloss.  Assumes implulse PDP.
 */
class UanPropModelThorp : public UanPropModel
{
public:
  /** Default constructor. */
  UanPropModelThorp ();
  /** Destructor */
  virtual ~UanPropModelThorp ();

  /**
   * Register this type.
   * \return The object TypeId.
   */
  static TypeId GetTypeId (void);

  // Inherited methods
  virtual double GetPathLossDb (Ptr<MobilityModel> a, Ptr<MobilityModel> b, UanTxMode mode);
  virtual UanPdp GetPdp (Ptr<MobilityModel> a, Ptr<MobilityModel> b, UanTxMode mode);
  virtual Time GetDelay (Ptr<MobilityModel> a, Ptr<MobilityModel> b, UanTxMode mode);

private:
  /**
   * Get the attenuation in dB / 1000 yards.
   * \param freqKhz The channel center frequency, in kHz.
   * \return The attenuation, in dB / 1000 yards.
   */
  double GetAttenDbKyd (double freqKhz);
  /**
   * Get the attenuation in dB / km.
   * \param freqKhz The channel center frequency, in kHz.
   * \return The attenuation, in dB/km.
   */
  double GetAttenDbKm (double freqKhz);

  double m_SpreadCoef;  //!< Spreading coefficient used in calculation of Thorp's approximation.

};  // class UanPropModelThorp

} // namespace ns3

#endif /* UAN_PROP_MODEL_THORP_H */