A Discrete-Event Network Simulator
API
uan-prop-model-thorp.h
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2009 University of Washington
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Leonard Tracy <lentracy@gmail.com>
19 */
20
21#ifndef UAN_PROP_MODEL_THORP_H
22#define UAN_PROP_MODEL_THORP_H
23
24#include "uan-prop-model.h"
25
26namespace ns3 {
27
28class UanTxMode;
29
36{
37public:
41 virtual ~UanPropModelThorp ();
42
47 static TypeId GetTypeId (void);
48
49 // Inherited methods
53
54private:
60 double GetAttenDbKyd (double freqKhz);
66 double GetAttenDbKm (double freqKhz);
67
68 double m_SpreadCoef;
69
70}; // class UanPropModelThorp
71
72} // namespace ns3
73
74#endif /* UAN_PROP_MODEL_THORP_H */
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
a unique identifier for an interface.
Definition: type-id.h:59
The power delay profile returned by propagation models.
Base class for implemented underwater propagation models.
Uses Thorp's approximation to compute pathloss.
virtual UanPdp GetPdp(Ptr< MobilityModel > a, Ptr< MobilityModel > b, UanTxMode mode)
Get the PDP for the path between two nodes.
virtual ~UanPropModelThorp()
Destructor.
UanPropModelThorp()
Default constructor.
virtual double GetPathLossDb(Ptr< MobilityModel > a, Ptr< MobilityModel > b, UanTxMode mode)
Computes pathloss between nodes a and b.
double GetAttenDbKm(double freqKhz)
Get the attenuation in dB / km.
virtual Time GetDelay(Ptr< MobilityModel > a, Ptr< MobilityModel > b, UanTxMode mode)
Finds propagation delay between nodes a and b.
static TypeId GetTypeId(void)
Register this type.
double m_SpreadCoef
Spreading coefficient used in calculation of Thorp's approximation.
double GetAttenDbKyd(double freqKhz)
Get the attenuation in dB / 1000 yards.
Abstraction of packet modulation information.
Definition: uan-tx-mode.h:42
Every class exported by the ns3 library is enclosed in the ns3 namespace.