A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
uan-prop-model-ideal.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2009 University of Washington
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Author: Leonard Tracy <lentracy@gmail.com>
7 */
8
9#ifndef UAN_PROP_MODEL_IDEAL_H
10#define UAN_PROP_MODEL_IDEAL_H
11
12#include "uan-prop-model.h"
13
14#include "ns3/mobility-model.h"
15#include "ns3/nstime.h"
16
17namespace ns3
18{
19
20/**
21 * \ingroup uan
22 *
23 * Ideal propagation model (no pathloss, impulse PDP).
24 */
26{
27 public:
28 /** Default constructor. */
30 /** Destructor */
31 ~UanPropModelIdeal() override;
32
33 /**
34 * Register this type.
35 * \return The object TypeId.
36 */
37 static TypeId GetTypeId();
38
39 // Inherited methods
43
44}; // class UanPropModelIdeal
45
46} // namespace ns3
47
48#endif /* UAN_PROP_MODEL_IDEAL_H */
Smart pointer class similar to boost::intrusive_ptr.
Simulation virtual time values and global simulation resolution.
Definition nstime.h:94
a unique identifier for an interface.
Definition type-id.h:48
The power delay profile returned by propagation models.
Base class for implemented underwater propagation models.
Ideal propagation model (no pathloss, impulse PDP).
Time GetDelay(Ptr< MobilityModel > a, Ptr< MobilityModel > b, UanTxMode mode) override
Finds propagation delay between nodes a and b.
UanPropModelIdeal()
Default constructor.
UanPdp GetPdp(Ptr< MobilityModel > a, Ptr< MobilityModel > b, UanTxMode mode) override
Get the PDP for the path between two nodes.
~UanPropModelIdeal() override
Destructor.
static TypeId GetTypeId()
Register this type.
double GetPathLossDb(Ptr< MobilityModel > a, Ptr< MobilityModel > b, UanTxMode mode) override
Computes pathloss between nodes a and b.
Abstraction of packet modulation information.
Definition uan-tx-mode.h:32
Every class exported by the ns3 library is enclosed in the ns3 namespace.