![]() |
User Manual, Developers Guide and API Documentation |
![]() |
00001 /******************************************************************************* 00002 * This file is part of openWNS (open Wireless Network Simulator) 00003 * _____________________________________________________________________________ 00004 * 00005 * Copyright (C) 2004-2007 00006 * Chair of Communication Networks (ComNets) 00007 * Kopernikusstr. 5, D-52074 Aachen, Germany 00008 * phone: ++49-241-80-27910, 00009 * fax: ++49-241-80-22242 00010 * email: info@openwns.org 00011 * www: http://www.openwns.org 00012 * _____________________________________________________________________________ 00013 * 00014 * openWNS is free software; you can redistribute it and/or modify it under the 00015 * terms of the GNU Lesser General Public License version 2 as published by the 00016 * Free Software Foundation; 00017 * 00018 * openWNS is distributed in the hope that it will be useful, but WITHOUT ANY 00019 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 00020 * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 00021 * details. 00022 * 00023 * You should have received a copy of the GNU Lesser General Public License 00024 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00025 * 00026 ******************************************************************************/ 00027 00028 #include <RISE/scenario/pathloss/SingleSlope.hpp> 00029 #include <RISE/scenario/Propagation.hpp> 00030 00031 #include <WNS/pyconfig/View.hpp> 00032 #include <WNS/StaticFactoryBroker.hpp> 00033 #include <WNS/PowerRatio.hpp> 00034 00035 #include <limits> 00036 00037 using namespace rise::scenario::pathloss; 00038 00039 STATIC_FACTORY_BROKER_REGISTER(SingleSlope, Pathloss, "SingleSlope"); 00040 00041 SingleSlope::SingleSlope(const wns::pyconfig::View& config) 00042 : Super(config, 00043 config.get<wns::Ratio>("offset"), 00044 config.get<double>("freqFactor"), 00045 config.get<double>("distFactor"), 00046 config.get<double>("distNormFactor")), 00047 outOfMinRange(Propagation::create<Pathloss>(config.getView("outOfMinRange"))), 00048 outOfMaxRange(Propagation::create<Pathloss>(config.getView("outOfMaxRange"))) 00049 { 00050 const wns::Frequency infFreq = std::numeric_limits<wns::Frequency>::infinity(); 00051 const FrequencyRange validFrequencies = FrequencyRange::CreateFrom(config.getView("validFrequencies")); 00052 const FrequencyRange toLowFrequencies = FrequencyRange::FromIncluding(0).ToExcluding(validFrequencies.min()); 00053 const FrequencyRange toHighFrequencies = FrequencyRange::Between(validFrequencies.max()).And(infFreq); 00054 addRange(validFrequencies, true); 00055 if (!toLowFrequencies.isEmpty()) addRange(toLowFrequencies, false); 00056 if (!toHighFrequencies.isEmpty()) addRange(toHighFrequencies, false); 00057 00058 const wns::Distance infDist = std::numeric_limits<wns::Frequency>::infinity(); 00059 const DistanceRange validDistances = DistanceRange::CreateFrom(config.getView("validDistances")); 00060 const DistanceRange toLowDistances = DistanceRange::FromIncluding(0).ToExcluding(validDistances.min()); 00061 const DistanceRange toHighDistances = DistanceRange::Between(validDistances.max()).And(infDist); 00062 addRange(validDistances, this); 00063 if (!toLowDistances.isEmpty()) addRange(toLowDistances, outOfMinRange); 00064 if (!toHighDistances.isEmpty()) addRange(toHighDistances, outOfMaxRange); 00065 } 00066
1.5.5