channel.cpp

00001 
00002 #include "channel.hpp"
00003 #include "signal.hpp"
00004 #include "physical_layer.hpp"
00005 
00006 Channel::Channel()
00007 {
00008 
00009 }
00010 
00011 Channel::~Channel()
00012 {
00013 
00014 }
00015 
00016 SimTime Channel::propagationDelay(const PhysicalLayer& sender, 
00017    const PhysicalLayer& receiver) const
00018 {
00019    float distanceInMeters = Location::distance(
00020       sender.getLocation(), receiver.getLocation());
00021    SimTime delay(distanceInMeters / SPEED_OF_LIGHT);
00022    return delay;
00023 }
00024 
00025 

Generated on Tue Dec 12 17:04:37 2006 for rfidsim by  doxygen 1.4.7