Abstract

Current network simulators abstract out wireless propagation models due to the high computation requirements for realistic modeling. As such, there is still a large gap between the results obtained from simulators and real world scenario. In this paper, we present a framework for improved path loss simulation built on top of an existing network simulation software, NS-3. Different from the conventional disk model, the proposed simulation also considers the diffraction loss computed using Epstein and Peterson’s model through the use of actual terrain elevation data to give an accurate estimate of path loss between a transmitter and a receiver. The drawback of high computation requirements is relaxed by offloading the computationally intensive components onto an inexpensive off-the-shelf parallel coprocessor, which is a NVIDIA GPU. Experiments are performed using actual terrain elevation data provided from United States Geological Survey. As compared to the conventional CPU architecture, the experimental result shows that a speedup of 20x to 42x is achieved by exploiting the parallel processing of GPU to compute the path loss between two nodes using terrain elevation data. The result shows that the path losses between two nodes are greatly affected by the terrain profile between these two nodes. Besides this, the result also suggests that the common strategy to place the transmitter in the highest position may not always work.

1. Introduction

Generally, network or physical layer oriented simulators have been used to enable the performance studies on communication networks. Network layer simulators mainly focus on the performance and behavior of the entire communication networks, such as medium access control issues and network layer aspects. On the other hand, physical layer oriented simulators [1] focus on point-to-point link performance under specific channel conditions. Due to the increased computational complexity in including complex channel models to study the wireless performance of communication networks, currently available network simulators abstract out such wireless channel or propagation models.

As a consequence, network simulators abstract out the physical layer, while physical layer simulators do not readily consider network characteristics nor do they reflect the functionality of medium access on network layer protocols [2]. To overcome the shortcomings, Mittag et al. [2] have integrated an IEEE 802.11a and physical layer simulator with NS-3; however the improved accuracy comes at the cost of increased computational effort. Mittag et al. proposed the use of graphic processing unit (GPU) to offset the increased computational complexity as one of their future works.

There exist a number of popular network simulators; however simulators which enable the performance studies on communications networks using GPUs for parallel processing with 3D terrain elevation data are still not available for public usage or research. From [37], it can be concluded that significant speedup can be achieved by exploiting GPU. However, different bottlenecks will affect the speedup, such as the parallelization of an algorithm, the runtime of each single independent subprogram, different architecture of GPUs, and different types of used software architecture.

The digital elevation model (DEM) [8] is a digital model that represents terrain’s surface. Djinevski et al. [7], Liu and Ma [9], and Chong and Kim [10] individually showed that using actual terrain elevation data provides higher accuracy for wireless network simulation as wireless propagation is strongly affected by terrain profile regardless of whether it is man-made or natural. However, their work cannot be extended to the well-known network simulators like NS-3 platform as such platform does not support the usage of digital terrain model at the moment.

In both fixed and mobile radio systems, large scale path loss prediction is important to determine the distance between a transmitter and a receiver. Thus, large scale path loss prediction is useful to estimate the radio coverage area. Different models based on statistical and deterministic methods are proposed to calculate the path loss between a transmitter and a receiver. Commonly used statistical methods include Okumura [11] and Hata [12] models. Deterministic methods that consider obstacles in the propagation path are expected to produce more accurate predictions of the path loss as compared to the statistical methods.

In this paper, we propose a framework to compute path loss between a transmitter and a receiver in a fixed radio network based on terrain model. As compared to the conventional disk model based on free space loss (FSL) [13] which estimates the path loss between a transmitter and a receiver solely based on the transmitter-receiver distance, terrain model additionally considers the terrain profile in affecting the path loss. However, the higher accuracy of path loss prediction using terrain model also indicates higher computation effort. To reduce computation time needed for more accurate path loss simulation, we offload the computationally intensive components onto an inexpensive off-the-shelf parallel coprocessor, which is an NVIDIA GPU. More precisely, we load the terrain profile into the Compute Unified Device Architecture (CUDA) texture memory and parallelize the transmitter-receiver path profile computation. The terrain profile between a transmitter and a receiver is extracted from DEM data provided by United State Geological Survey (USGS). To check the effectiveness of our proposed simulation framework, we compare the path loss computed using both conventional disk model and terrain model on seven maps. Besides this, our results also show a speed up of 20x to 42x by using GPU. Lastly, the propose framework is implemented on NS-3 to enable studies on cross-layer optimization.

2. Path Loss Prediction Models

2.1. Disk Model

The disk model is the most commonly used simulation model which assumes that the sensing region is circled around the sensor [13].

Calculation of FSL is carried out using the distance obtained through the transmitter-receiver pair coordinates and the predefined frequency of propagation wave at the beginning of the simulation. The FSL is derived from the Friis free space equation [14] as follows:

However, the path loss computation between the transmitter and the receiver using FSL is only accurate if and only if there are no obstacles (which cause the reflection or refraction of waves) between the transmitter and the receiver. Thus, path loss computation using FSL may not be applicable in the real world.

FSL model, an isotropic radio model that implies signal attenuates in all directions with similar magnitude over distance, does not hold well in comparison to real measurement [15]. Meanwhile, nonisotropic models such as deterministic models that analyze the obstructions (terrain, foliage, buildings, antenna height, etc.) in the path profile into computation are proven to be closely matched with the real-measured path loss [1518].

2.2. Terrain Model

Our proposed model is a deterministic model, a terrain model which computes path loss based on the diffraction loss of multiple knife-edge obstructions using the Epstein-Peterson path geometry method [19], Fresnel-Kirchhoff’s theory, and FSL. The Epstein-Peterson method is a well-known model that estimates the diffraction loss based on obstacles and has relative high accuracy [20, 21] and is proven to be accurate when compared to real-measured path loss [22]. Furthermore, Djinevski et al. [7] propose the usage of the Epstein-Peterson method for the future GPU-enabled version as well.

3. Heterogeneous System Based Simulation with Terrain Model

As shown in Figure 1, a heterogeneous simulation framework is proposed based on USGS DEM data to produce more accurate transmitter-receiver prediction for radio network. Due to the higher computation complexity after incorporating three-dimensional (3D) terrain model into the simulation, we study the terrain model and offload the two most computationally intensive processes, Terrain Mapping and Path Profile Calculation to the GPU. Since the same map is used when estimating the network coverage, it is important to load the frequently used map into fast access memory (i.e., CUDA texture memory). Besides this, the path profile computation between different locations on a same map can be parallelized. Notice that the one-time DEM extraction can be precomputed offline to make the simulation more practical in the real world.

The proposed simulation framework includes six different processes, that is, DEM Extraction, Terrain Mapping, Path Profile Calculation, Fresnel Zone Calculation, Terrain Peak Calculation, and Path Loss Calculation.

3.1. DEM Extraction

GDAL library [23], a translator library for raster and vector geospatial data formats, is used to extract the relevant information from USGS DEM data that is needed for transmitter-receiver path loss computation. Redundant information will be discarded in this process.

3.2. Terrain Mapping

The information extracted from DEM is then loaded and relocated to the CUDA texture memory on GPU. There are two reasons for using CUDA texture memory. First, the data reading time is faster since the CUDA texture memory is a cache memory. Second, the simulation achieves faster speed by exploiting the additional feature of the CUDA texture memory where the linear interpolation of data (which is needed in Path Profile Calculation) can be computed easily.

3.3. Path Profile Calculation

To calculate the path profile between a transmitter-receiver pair, coordinates of the transmitter and receiver with antenna height are required. Based on the coordinates given, the terrain profile between the two nodes can be extracted from the DEM data. However, to obtain the terrain height for a specific point along the path profile, the interpolation of its surrounding points needs to be computed. Accumulating the information for each point, the system is then able to complete the path profile between a transmitter and a receiver.

3.4. Fresnel Zone Calculation

After the path profile is calculated and formed, analysis of the terrain is performed to determine the obstacles that block the line of sight (LOS) between a transmitter and a receiver. As shown in Figure 2, visual LOS is the dotted line between the antennas, while radio frequency LOS requires an oval-shaped area to be free from any obstructions. This oval-shaped area is called the Fresnel zone. Obstacles, such as buildings, vegetation, and the ground, that are located inside the Fresnel zone will increase the path loss. When at least 60% of the Fresnel zone is unobstructed, this phenomenon is known as free space propagation.

The general equation for calculating the Fresnel zone radius at any point in between the transmitter (Tx) and receiver (Rx) is listed as follows: where is the th Fresnel zone radius, is the distance of from one end, is the distance of from the other end, and is the wavelength of the transmitted signal. Note that (2) is valid for ideal terrain height; that is, both antennas are 90 degrees perpendicular to the LOS.

One of the challenges faced in computing the path loss using (2) is that in most of the situations, both antennas are not located at the same terrain height. To solve this issue, our proposed simulation framework first performs the matrix rotation such that both antennas are virtually located at the same height. More precisely, as shown in Figure 3, we rotate the path profile in clockwise direction when the left node is with the lower terrain height and vice versa.

Subsequently, the simulation checks whether 60% of the Fresnel zone is blocked by terrains. If blocked, the simulation will proceed to Terrain Peak Calculation; else FSL calculation will be carried out for the free space phenomenon. There are path profiles that have clear LOS but with inadequate 60% clearance of the first Fresnel zone. The ground reflection in our proposed work is ignored in the Terrain Peak Calculation.

3.5. Terrain Peak Calculation

Generally, there exist many peaks (i.e., obstacles) between the transmitter and the receiver. However, not all the terrain peaks will affect the transmitter-receiver path loss computation. To determine whether a peak is a real obstacle, the following check is performed.

First, the function locates the highest peak from the obstacles in the transmitter-receiver path profile. By using the highest peak as the reference point, the function performs the search in both left and right directions to find out the other peaks that block the LOS between one of the antennas and the highest peak. If such a peak is found, then this peak will be considered as the new highest peak of that zone. This process is iterated until all the peaks that block the LOS propagation between the transmitter and the receiver are identified.

Finally, a smoothing function needs to be performed on all the stored terrain information to eliminate shallow irregularities where the peaks are much smaller than the wavelength of the radio frequency used.

3.6. Path Loss Calculation

The transmitter-receiver path loss computation is the addition of two different losses, that is, diffraction loss and free space loss. The diffraction loss is computed based on the Epstein-Peterson path geometry method which requires the coordinates to find the height of the relevant peaks located between the transmitter-receiver pair. For example, as shown in Figure 4, in order to obtain the height of for the loss of Hill 2, draw the line from (top of Hill 1) to (top of Hill 2). The information of and will then be used for diffraction loss computation between Tx and Rx [19].

Subsequently, the Fresnel-Kirchhoff diffraction parameter [19] can be computed as follows: where is the height of the obstruction (e.g., from Figure 4), is the distance of hill from one end, is the distance of hill from the other end, and is the wavelength of the transmitted signal. Subsequently, the diffraction loss is approximated using the Fresnel-Kirchhoff diffraction [10, 24] as follows:

Lastly, FSL can be computed using (1).

4. Experimental Results

4.1. Experimental Setup

To check the effectiveness of our proposed heterogeneous system based simulation network that makes use of CPU and GPU, we also construct a pure CPU based simulation framework. The CPU based simulation is developed using an Intel® Core™ i7-4500U CPU @ 1.80 GHz with 4 GB RAM, while the heterogeneous system based simulation uses a consumer grade GPU (GT 720 M) besides the aforementioned CPU.

The 7.5-minute DEM that has a vertical accuracy of 10-meter resolution is used as it is the most accurate data available from USGS, which covers an area measuring 7.5 minutes of latitude and 7.5 minutes of longitude (also known as 7.5-minute quadrangle maps). We select seven maps (i.e., DEM data that represents seven different areas) and categorize them into two categories based on terrain elevation difference. Four maps (i.e., Adelanto, Amboy Crater, Jersey City, and Amsterdam) belong to the first category with terrain elevation difference lesser than 500 meters. Meanwhile, the other three maps (i.e., Arrowhead Butte, Acton, and Caples Lake) belong to the second category with terrain elevation difference of more than 500 meters. The different maps in Category 1 and Category 2 are shown in Figures 5 and 6, respectively.

4.2. Terrain Profile Analysis

Different from the conventional random walk model, we exclude the speed parameter of the mobile nodes as we only focus on the terrain profile analysis to determine the percentage of free space between a transmitter and a receiver. The speed of mobile nodes will not affect the judgment whether a path between a transmitter and a receiver is free from obstacles.

We perform 100 simulations for nine different linear distances ranging from 1 km to 9 km. The summary of the terrain profile analysis is shown in Table 1.

For a graphical illustration purpose, as shown in Figure 7, we take a few examples of 8-kilometer long path profiles for Adelanto. A path between transmitter-receiver pair is considered as a free path if no obstacles are found in the Fresnel zone; otherwise, the path is treated as a blocked path. We ignore the path profiles for other maps as it follows the same analysis of path profiles for Adelanto.

4.3. Path Loss Prediction Using Terrain Model

We perform the heterogeneous based path loss simulation using terrain model and point-to-point model where we fix the location of a transmitter at the centre of a map and compute the path loss between the fixed transmitter with a receiver that is located in every possible location. For comparison, we also perform the CPU based path loss simulation using point-to-point and disk models. For terrain model, additional terrain profiles between a transmitter and a receiver are extracted from DEM data provided by USGS. Notice that the location of fixed transmitter can be easily reallocated to any other location.

Figure 8 shows the path loss simulation calculated based on the disk model in the form of two-dimensional visualized image. All path loss simulations calculated based on the disk model on seven different maps share the same result as the path loss simulation based on the disk model solely depends on the distance between a transmitter and a receiver without considering the terrain profile between these two nodes. This pattern can be easily spotted through the ring shapes where the path loss simulations from the transmitter to the receiver with the same distance are always the same regardless of the terrain profile between the transmitter and the receiver.

Figure 9 shows the path loss simulation calculated based on the terrain model in the form of two-dimensional visualized image. Notice that all path simulations calculated based on the terrain model on seven different maps are all different as the path loss simulation based on the Epstein-Peterson method depends on both distance and terrain profiles between a transmitter and a receiver. Notice that the dark red line indicates higher path loss between a transmitter located at the centre of a map with a selected receiver. Please note that the maximum path loss in Figure 9 is limited to 120 dB to present a clear view with standardized color bar for all seven maps due to there being only a few points in the maps that have path loss above 120 dB.

We present some study cases of path loss simulation based on the terrain model on different map to highlight some important observations as follows.

Observation 1. The path loss between two nodes on two different locations with same distance may vary.

Example. As shown in Figure 10, Zone 1 shows a region with high path loss while Zone 2 has a much lower path loss. Thus, taking terrain profiles into consideration, the path loss between transmitter-receiver pair will be greatly affected.

Observation 2. The path loss between two nodes mainly depends on the irregular terrain profile between these two nodes. To be precise, the path loss between two nodes depends on the number of obstacles (i.e., peaks) that blocks the Fresnel zone between these two nodes.

Example. As shown in Figure 11, Zone 3 shows a region without obstacles and thus the path loss computation follows the disk model. Meanwhile, Zone 4 shows a region full of obstacles and thus the path loss computation follows the terrain model.

Observation 3. The typical strategy that places a transmitter in the highest position may not always result in a lower path loss between the transmitter and other receivers.

Example. As shown in Figure 12, a transmitter can be placed in any location within Zone 5 regardless of the height of the transmitter as most of Zone 5 regions are clear of the obstacles.

4.4. Speed Analysis between CPU Based and Heterogeneous System Based Path Loss Simulations

Figure 13 shows the speed comparison between CPU-only based path loss simulation and a heterogeneous system architecture (HSA) based path loss simulation in two different categories. Both types of path loss simulation are performed based on the terrain model that uses actual DEM data. Notice that, in the conventional CPU architecture, the entire path loss simulation is performed using the CPU-only based path loss simulation. Meanwhile, in the heterogeneous system architecture, a portion of the path loss simulation is parallelized and offloaded to the GPU for parallel processing, to counter the higher time complexity after including terrain model in the simulation. Overall, a simulation speedup of 20x to 42x is achieved for all seven selected maps, by just porting two of the most compute intensive processes into GPU for parallel processing to form the required path profile.

5. Conclusion

We have proposed an improved path loss simulation that incorporates 3D terrain model and for accelerated computation, GPU. The results obtained suggest that a more accurate path loss between a transmitter and a receiver can be predicted after considering the obstacles that block the Fresnel zone between the two nodes. More importantly, the proposed simulation framework has been integrated as a module into NS-3 for realistic path loss simulation which considers the terrain profiles between the transmitter-receiver pair. A speedup of 20x to 42x is achieved by offloading the computationally intensive components to GPU where the CUDA texture memory and faster interpolation computation are exploited. This framework can also be exploited by radio frequency engineers for speeding up the planning and deployment of transmitters in radio network. In addition, the advantage of this framework allows future research in accelerated computation involving multiple mobile nodes. Lastly, our proposed framework allows researchers to easily implement different path loss simulation models on NS-3 depending on the terrains they want to simulate by varying the parameters since most of these models rely on similar computations.

Competing Interests

The authors declare that they have no competing interests.

Acknowledgments

This work was supported by Universiti Tunku Abdul Rahman under UTAR Research Fund (UTARRF/6200/C68) and MyBrain15 Scholarship. The Tesla K20 used for this research was donated by NVIDIA Corporation.