mirror of
https://gitlab.com/manzerbredes/paper-lowrate-iot.git
synced 2025-04-19 04:09:43 +00:00
Update paper remarks
This commit is contained in:
parent
5d4f637da7
commit
262ab00df2
5 changed files with 9 additions and 12 deletions
|
@ -415,15 +415,13 @@ In this section, we analyze the experimental results.
|
||||||
** IoT and Network Power Consumption
|
** IoT and Network Power Consumption
|
||||||
In a first place, we start by studying the impact of the sensors'
|
In a first place, we start by studying the impact of the sensors'
|
||||||
transmission frequency on their energy
|
transmission frequency on their energy
|
||||||
consumption. To this end, we run several simulations in ns3 with different frequencies. The
|
consumption. To this end, we run several simulations in ns3 with 15 sensors using different transmission frequencies. The
|
||||||
results provided by Table \ref{tab:sensorsSendIntervalEffects} show
|
results provided by Table \ref{tab:sensorsSendIntervalEffects} show
|
||||||
that the transmission frequency has a very low impact
|
that the transmission frequency has a very low impact
|
||||||
on the energy consumption and on the application delay. It has an impact of course, but it is very
|
on the energy consumption and on the cumulative end-to-end application delay. It has an impact of course, but it is very
|
||||||
limited. This due to the fact that in such a scenario with very small number of communications
|
limited. This due to the fact that in such a scenario with very small number of communications
|
||||||
spread over the time, sensors don't have to contend for accessing to the Wifi channel.
|
spread over the time, sensors don't have to contend for accessing to the Wifi channel.
|
||||||
|
|
||||||
\hl{TODO: définir le 'application delay' et le nombre de capteurs utilisés pour l'expérience de la table}
|
|
||||||
|
|
||||||
#+BEGIN_EXPORT latex
|
#+BEGIN_EXPORT latex
|
||||||
% Please add the following required packages to your document preamble:
|
% Please add the following required packages to your document preamble:
|
||||||
% \usepackage{booktabs}
|
% \usepackage{booktabs}
|
||||||
|
@ -433,10 +431,10 @@ In this section, we analyze the experimental results.
|
||||||
\label{tab:sensorsSendIntervalEffects}
|
\label{tab:sensorsSendIntervalEffects}
|
||||||
\begin{tabular}{@{}lrrrrr@{}}
|
\begin{tabular}{@{}lrrrrr@{}}
|
||||||
\toprule
|
\toprule
|
||||||
Sensors Send Interval & 10s & 30s & 50s & 70s & 90s \\ \midrule
|
Sensors Send Interval & 10s & 30s & 50s & 70s & 90s \\ \midrule
|
||||||
Sensors Power Consumption & 13.517\hl{94}W & 13.517\hl{67}W & 13.51767W & 13.51767W & 13.517\hl{61}W \\
|
Sensors Power Consumption & 13.517\hl{94}W & 13.517\hl{67}W & 13.51767W & 13.51767W & 13.517\hl{61}W \\
|
||||||
Network Power Consumption & 10.441\hl{78}W & 10.441\hl{67}W & 10.44161W & 10.44161W & 10.441\hl{61}W \\
|
Network Power Consumption & 10.441\hl{78}W & 10.441\hl{67}W & 10.44161W & 10.44161W & 10.441\hl{61}W \\
|
||||||
Average Application Delay & 17.81360s & 5.91265s & 3.53509s & 2.55086s & 1.93848s \\ \bottomrule
|
Cumulative Application Delay & 17.81360s & 5.91265s & 3.53509s & 2.55086s & 1.93848s \\ \bottomrule
|
||||||
\end{tabular}
|
\end{tabular}
|
||||||
\end{table*}
|
\end{table*}
|
||||||
#+END_EXPORT
|
#+END_EXPORT
|
||||||
|
@ -515,8 +513,6 @@ In our case with small and sporadic network traffic, these results show that wit
|
||||||
and are not shared among all the VMs that could be hosted on this
|
and are not shared among all the VMs that could be hosted on this
|
||||||
server.
|
server.
|
||||||
|
|
||||||
\hl{Figure 5 n'inclut pas le PUE non? le Pidle est bien à 97 Watts environ?}
|
|
||||||
|
|
||||||
#+BEGIN_EXPORT latex
|
#+BEGIN_EXPORT latex
|
||||||
\begin{figure}
|
\begin{figure}
|
||||||
\centering
|
\centering
|
||||||
|
@ -1083,7 +1079,7 @@ applicability of our model.
|
||||||
xlab("Experiment Time (s)")
|
xlab("Experiment Time (s)")
|
||||||
|
|
||||||
p=applyTheme(p)
|
p=applyTheme(p)
|
||||||
|
|
||||||
ggsave("plots/vmSize-cloud.png",dpi=90,height=3,width=6)
|
ggsave("plots/vmSize-cloud.png",dpi=90,height=3,width=6)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
|
BIN
2019-ICA3PP.pdf
BIN
2019-ICA3PP.pdf
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
|
@ -65,7 +65,8 @@ int main(int argc, char* argv[]){
|
||||||
for (std::map< FlowId, FlowMonitor::FlowStats>::iterator flow=stats.begin(); flow!=stats.end(); flow++)
|
for (std::map< FlowId, FlowMonitor::FlowStats>::iterator flow=stats.begin(); flow!=stats.end(); flow++)
|
||||||
{
|
{
|
||||||
Ipv4FlowClassifier::FiveTuple t = classifier->FindFlow(flow->first);
|
Ipv4FlowClassifier::FiveTuple t = classifier->FindFlow(flow->first);
|
||||||
NS_LOG_UNCOND("Flow " <<t.sourceAddress<< " -> "<< t.destinationAddress << " delay = " <<flow->second.delaySum.GetSeconds());
|
NS_LOG_UNCOND("Flow " <<t.sourceAddress<< " -> "<< t.destinationAddress << " delay = " <<flow->second.delaySum.GetSeconds());
|
||||||
|
//NS_LOG_UNCOND("Flow " <<t.sourceAddress<< " -> "<< t.destinationAddress << " delay = " <<flow->second.delaySum.GetSeconds()/flow->second.rxPackets);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue