A Discrete-Event Network Simulator
API
basic-energy-harvester.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014 Wireless Communications and Networking Group (WCNG),
3  * University of Rochester, Rochester, NY, USA.
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: Cristiano Tapparello <cristiano.tapparello@rochester.edu>
19  */
20 
21 #ifndef BASIC_ENERGY_HARVESTER
22 #define BASIC_ENERGY_HARVESTER
23 
24 #include "device-energy-model.h"
25 #include "energy-harvester.h"
26 
27 #include "ns3/event-id.h"
28 #include "ns3/nstime.h"
29 #include "ns3/random-variable-stream.h"
30 #include "ns3/traced-value.h"
31 
32 #include <iostream>
33 
34 namespace ns3
35 {
36 
49 {
50  public:
55  static TypeId GetTypeId();
56 
58 
66  BasicEnergyHarvester(Time updateInterval);
67 
68  ~BasicEnergyHarvester() override;
69 
76  void SetHarvestedPowerUpdateInterval(Time updateInterval);
77 
85 
93  int64_t AssignStreams(int64_t stream);
94 
95  private:
97  void DoInitialize() override;
98 
100  void DoDispose() override;
101 
106 
111  double DoGetPower() const override;
112 
118  void UpdateHarvestedPower();
119 
120  private:
122 
125 
129 };
130 
131 } // namespace ns3
132 
133 #endif /* defined(BASIC_ENERGY_HARVESTER) */
BasicEnergyHarvester increases remaining energy stored in an associated Energy Source.
Time m_lastHarvestingUpdateTime
last harvesting time
void UpdateHarvestedPower()
This function is called every m_energyHarvestingUpdateInterval in order to update the amount of power...
TracedValue< double > m_harvestedPower
current harvested power, in Watt
Ptr< RandomVariableStream > m_harvestablePower
Random variable for the harvestable power.
double DoGetPower() const override
static TypeId GetTypeId()
Get the type ID.
void DoInitialize() override
Defined in ns3::Object.
void SetHarvestedPowerUpdateInterval(Time updateInterval)
TracedValue< double > m_totalEnergyHarvestedJ
total harvested energy, in Joule
void DoDispose() override
Defined in ns3::Object.
int64_t AssignStreams(int64_t stream)
void CalculateHarvestedPower()
Calculates harvested Power.
EventId m_energyHarvestingUpdateEvent
energy harvesting event
Time m_harvestedPowerUpdateInterval
harvestable energy update interval
Energy harvester base class.
An identifier for simulation events.
Definition: event-id.h:55
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.