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