A Discrete-Event Network Simulator
API
basic-energy-harvester.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014 Wireless Communications and Networking Group (WCNG),
4  * University of Rochester, Rochester, NY, USA.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation;
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Author: Cristiano Tapparello <cristiano.tapparello@rochester.edu>
20  */
21 
22 #ifndef BASIC_ENERGY_HARVESTER
23 #define BASIC_ENERGY_HARVESTER
24 
25 #include <iostream>
26 
27 // include from ns-3
28 #include "ns3/traced-value.h"
29 #include "ns3/nstime.h"
30 #include "ns3/event-id.h"
31 #include "energy-harvester.h"
32 #include "ns3/random-variable-stream.h"
33 #include "ns3/device-energy-model.h"
34 
35 namespace ns3 {
36 
49 {
50 public:
55  static TypeId GetTypeId (void);
56 
58 
66  BasicEnergyHarvester (Time updateInterval);
67 
68  virtual ~BasicEnergyHarvester ();
69 
76  void SetHarvestedPowerUpdateInterval (Time updateInterval);
77 
85 
93  int64_t AssignStreams (int64_t stream);
94 
95 private:
97  void DoInitialize (void);
98 
100  void DoDispose (void);
101 
105  void CalculateHarvestedPower (void);
106 
111  virtual double DoGetPower (void) const;
112 
118  void UpdateHarvestedPower (void);
119 
120 private:
121 
123 
126 
130 
131 };
132 
133 } // namespace ns3
134 
135 #endif /* defined(BASIC_ENERGY_HARVESTER) */
BasicEnergyHarvester increases remaining energy stored in an associated Energy Source.
Time m_lastHarvestingUpdateTime
last harvesting time
TracedValue< double > m_harvestedPower
current harvested power, in Watt
Ptr< RandomVariableStream > m_harvestablePower
Random variable for the harvestable power.
virtual double DoGetPower(void) const
Time GetHarvestedPowerUpdateInterval(void) const
void DoDispose(void)
Defined in ns3::Object.
void SetHarvestedPowerUpdateInterval(Time updateInterval)
TracedValue< double > m_totalEnergyHarvestedJ
total harvested energy, in Joule
int64_t AssignStreams(int64_t stream)
void UpdateHarvestedPower(void)
This function is called every m_energyHarvestingUpdateInterval in order to update the amount of power...
EventId m_energyHarvestingUpdateEvent
energy harvesting event
static TypeId GetTypeId(void)
Get the type ID.
void CalculateHarvestedPower(void)
Calculates harvested Power.
Time m_harvestedPowerUpdateInterval
harvestable energy update interval
void DoInitialize(void)
Defined in ns3::Object.
Energy harvester base class.
An identifier for simulation events.
Definition: event-id.h:54
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.