+ All Categories
Home > Documents > Coexistence of Radar andCommunication Systems ...

Coexistence of Radar andCommunication Systems ...

Date post: 16-Oct-2021
Category:
Upload: others
View: 2 times
Download: 0 times
Share this document with a friend
31
Coexistence of Radar and Communication Systems Channel Modeling using MATLAB by Ahmed Abdelhadi Review Article with MATLAB Instructions 2019 University of Houston
Transcript

Coexistence of Radar and Communication Systems

Channel Modeling using MATLAB

by

Ahmed Abdelhadi

Review Article with MATLAB Instructions

2019

University of Houston

Table of Contents

List of Tables iii

List of Figures iv

Chapter 1. Introduction 1

1.1 Motivation, Background, and Related Work . . . . . . . . . . . 1

1.2 Radar Communications Model . . . . . . . . . . . . . . . . . . 2

Chapter 2. Interference Mitigation 5

2.1 Interference Channel Azimuth Angles . . . . . . . . . . . . . . 5

2.1.1 Used Algorithm for Projection . . . . . . . . . . . . . . 6

Bibliography 10

ii

List of Tables

iii

List of Figures

2.1 System Model . . . . . . . . . . . . . . . . . . . . . . . . . . . 5

2.2 Output simulation using MATLAB Code . . . . . . . . . . . . 9

iv

Chapter 1

Introduction

This article provides a MATLAB simulation tutorial for the paper in [1]. The

article starts with a brief background on the problem of radar and commu-

nications coexistence with the relevant literature review of this topic. Later,

this article presents the MATLAB code for plotting the figures in [1].

1.1 Motivation, Background, and Related Work

On the radar side, the President Council of Advisers on Science and Tech-

nology (PCAST) [2] stated that the sharing of underutilized shipborne radar

spectrum for commercial use [3–5] will have significant benefits to the United

States both on technological and economical levels. The Federal Communi-

cations Commission (FCC) mentioned that shipborne radar spectrum [6, 7]

can be shared with commercial mobile network spectrum [8, 9]. The National

Telecommunications and Information Administration (NTIA) [10–12] studied

effects of radar and communications coexistence with respect to interference.

Radar and communications coexistence problem is further studied in [13–16]

and simulation results are presented in [17–19].

Multiple input multiple output (MIMO) radar has many advantages with re-

spect to phased-array radar [20–25] due to waveform diversity. It is anticipated

to replace phased-array radar for civil and military applications [26–31]. Addi-

tionally, it is a suitable model for coexistence as it represent higher degrees of

freedom over phased-array radar [15,32–43]. Furthermore, an extended MIMO

model, a.k.a. overlapped MIMO radar, is introduced in [44, 45].

On the communications side, the need for throughput increase can be strongly

witnessed for wireless communications [46–49]. Multiple access schemes have

played an important role in increasing the spectrum usage [50–54] specially

1

with exploiting the spatial dimension of the MIMO communication systems

[55–59]. These advancements and needs are also accompanied with the users

demands and expectations for enhancement of quality of service (QoS) [60–62]

and quality of experience (QoE) [63,64]. Some examples are in [65–68] for QoS

of Open Systems Interconnection (OSI) Model for network layer and others

are addressed in [69,70] for physical layer, while in [71,72] authors focused on

application layer.

Game theory utilization and energy efficiency considerations were presented

in [73–76] and [77–79], respectively, for LTE third generation partnership

project (3GPP) [80–82], Worldwide Interoperability for Microwave Access

(WiMAX) [83–85], Mobile Broadband [86, 87], and Universal Mobile Terres-

trial System (UMTS) [88–90]. Authors included cross-layer design benefits for

enhancing QoS in [91, 92], scheduling and shaping in [93–99] with battery life

and embedded-based systems in [100–104].

For wireless communications, the coexistence scenario benefits wireless re-

source allocation algorithms for applications such as delay-tolerant applica-

tions [74, 105]. These applications use resource allocation algorithms such

as proportional fairness in [106–108], max-min fairness in [109–112], and op-

timal allocation in [113–116]. Other applications are the real-time applica-

tions [117–126] with resource allocation algorithms such as approximate so-

lutions in [127–129] and optimal solutions in [130–137] using convex opti-

mization techniques [138–143]. Developed carrier aggregation methods for

resource allocation are essential to coexistence and utilizing the radar band.

For instance, some non-convex carrier aggregation optimization techniques are

shown in [144–148] while convex optimal techniques are presented in [149–154].

Extension of this work to other fields with utilization of the simulation tools

presented here is relevant to topics such as multi-cast networks [155], ad-hoc

networks [156–159], machine to machine (M2M) communications [160–162],

and other wireless networks [163–167].

1.2 Radar Communications Model

In the simulation of results in [1], uses the following system model

2

We start the MATLAB code by clearing and closing other programs using.

In MATLAB:

1 %%%%%%%%%%%%%%%%%%%%%%%%%

2

3 close all;

4 clear all;

5

6 %%%%%%%%%%%%%%%%%%%%%%%%%

The simulation parameters for our model are:

In MATLAB:

1 %%%%%%%%%%%%%%%%%%%%%%%%%

2

3 %% Define Parameters

4 c = 3*10ˆ8; % Speed of

light

5 Nr=20; % Comm Antennas

6 Mt=100; % Mr Radar

Transmitters

7 Mr=Mt; % Mr Radar

Receivers

8 SNR = 10ˆ(20/10); % SNR

9 v_r = 2000; % Radial

velocity of 2000 m/s

10 r_0 = 5000; % (m) Radar

reference point distance (target range)

11 f_c = 3.5*10ˆ9; % Carrier

frequency 3.5GHz

12 omega_c=2*pi*f_c; % Angular

carrier frequency

13 lambda = (2*pi*c)/omega_c;

14 omega_d= (2*omega_c*v_r)/c; % Doppler

angular frequency

15 Tau_r = 2*r_0/c; % Two way

propagation delay

3

16 alpha = 0.5*exp(-1i*omega_c*Tau_r); % Path loss to

target

17 distance = 10000; % Communication

/Radar distance

18 a = exp(-1i*omega_c*distance/c); % Path loss to

target

19 delta_comm = 1/2; % Communication

antennas interspacing coeff.

20 delta_radar = 1/2; % Radar

antennas interspacing coeff.

21 G_null=zeros(5000,1);

22 theta = pi/180*(-45:.1:45);

23 G = zeros(1,length(theta));

24 thetaD = pi/180*([0]); % Target angle

25

26 %%%%%%%%%%%%%%%%%%%%%%%%%

The antenna spacing calculation are as:

In MATLAB:

1 %%%%%%%%%%%%%%%%%%%%%%%%%

2

3 % Antenna spacing calculation

4 AntSpacing = 1*lambda/2;

5 Rs = eye(Mt);

6 Tx_array=[AntSpacing*(0:1:Mt-1)];

7 Rx_array=[AntSpacing*(0:1:Mr-1)];

8

9 %%%%%%%%%%%%%%%%%%%%%%%%%

4

Chapter 2

Interference Mitigation

2.1 Interference Channel Azimuth Angles

Figure 2.1: System Model

In [1] simulation, we consider two systems one is MIMO radar and the other

is MIMO communications system as shown in Figure 2.1. The parameters

of both models are shown in Chapter 1. The below parameters show the

interference channel and azimuth angles between radar and communications

systems.

In MATLAB:

1 %%%%%%%%%%%%%%%%%%%%%%%%%

2

3 % Interference Channel Angles

4 azimuth_blocked = [-7:0.5:-6];

5

6 % Interference Channel Azimuth Angles

5

7 thetaComm = pi/180*(90 - azimuth_blocked); %

Communication/Radar angle

8 Dir_cosine = cos(thetaComm); %

Directional cosine

9 for b=1:length(Dir_cosine)

10 % Channel model

11 Hr = 1/sqrt(Nr)*[exp(-1i * 2 * pi * (0:Nr-1) *delta_comm * Dir_cosine(b))];

12 Ht = 1/sqrt(Mt)*[exp(-1i * 2 * pi * (0:Mt-1) *delta_radar * Dir_cosine(b))];

13 H = a * Hr’ * Ht;

14 end

15

16 %%%%%%%%%%%%%%%%%%%%%%%%%

2.1.1 Used Algorithm for Projection

The MATLAB code below shows the steps to implement singular value decom-

position (SVD) on the channel between radar and communications systems

followed by null space projection to mitigate harmful interference.

In MATLAB:

1 %%%%%%%%%%%%%%%%%%

2

3 for kk=1:length(thetaD)

4 omega_tau_t = (2*pi)/lambda*thetaD(kk)*Tx_array;

5 omega_tau_r = (2*pi)/lambda*thetaD(kk)*Rx_array;

6 a_T_thetaD = transpose(exp(-1i*omega_tau_t));

% Transmit

steering matrix

7 a_R_thetaD = transpose(exp(-1i*omega_tau_r));

% Receive steering

matrix

8

9 for ii=1:length(theta)

10 omega_tau_t = (2*pi)/lambda*(theta(ii))*Tx_array;

6

11 omega_tau_r = (2*pi)/lambda*(theta(ii))*Rx_array;

12 a_T_theta = transpose(exp(-1i*omega_tau_t));

% Transmit

steering matrix

13 a_R_theta = transpose(exp(-1i*omega_tau_r));

% Receive

steering matrix

14 G(ii) =abs(ctranspose(a_T_theta)*transpose(

Rs)*a_T_thetaD);

15

16 for ll=1:1

17 [U,S,V] = svd(H);

% SVD of H

18 P_v = null(H) * ctranspose(null(H));

19 Rs_null = P_v * eye(Mt) * ctranspose(

P_v);

20 G_null(ll,:) = abs(ctranspose(a_T_theta

)*transpose(Rs_null)*a_T_thetaD);

21 end

22

23 G_null_mean(ii) = mean(G_null);

24 G_norm_null = G_null_mean/max(G_null_mean);

% normalized

25 G_norm_no_proj = G/max(G);

% normalized

26

27 end

28 G_total_null(kk,:) = G_norm_null;

29

30 end

31

32 %%%%%%%%%%%%%%%%%%

• The beamform without projection.

In MATLAB

7

1 %%%%%%%%%%%%%%%%%%

2

3 G_dB_no_proj = mag2db(G_norm_no_proj);

4

5 %%%%%%%%%%%%%%%%%%

• The beamform with projection.

In MATLAB

1 %%%%%%%%%%%%%%%%%%

2

3 G_dB_null(b,:) = mag2db(G_total_null);

4

5 %%%%%%%%%%%%%%%%%%

• Plotting both beamforms with and without projection. The plot is shown

in Figure 2.2.

In MATLAB:

1 %%%%%%%%%%%%%%%%%%

2

3 % Figure

4 grid on

5

6 hold on

7 plot(180/pi*(theta),G_dB_no_proj,’-r’,’LineWidth’

,2)

8 plot(180/pi*(theta),G_dB_null(length(thetaComm),:),

’-’,’LineWidth’,2)

9 hold off

10

11 xlim([-20 15])

12 xlabel(’\theta (degree)’,’fontsize’,14)

13 ylabel(’Power (dB)’,’fontsize’,14)

14 legend(’Not Projected’,’Projected’)

15 title(’Null Projected Radar Waveform’,’fontsize’

,14)

8

-20 -15 -10 -5 0 5 10 15

(degree)

-80

-70

-60

-50

-40

-30

-20

-10

0

Po

we

r (d

B)

Null Projected Radar Waveform

Not Projected

Projected

Figure 2.2: Output simulation using MATLAB Code

16

17 %%%%%%%%%%%%%%%%%%

9

Bibliography

[1] A. Khawar, A. Abdel-Hadi, and T. C. Clancy, “Channel modeling be-

tween seaborne MIMO radar and MIMO cellular system,” CoRR, vol. abs/1504.04325,

2015.

[2] P. C. o. A. o. S. Executive Office of the President and T. (PCAST), “Re-

alizing the full potential of government-held spectrum to spur economic

growth,” 2012.

[3] H. Shajaiah, A. Abdelhadi, and C. Clancy, “A price selective centralized

algorithm for resource allocation with carrier aggregation in lte cellu-

lar networks,” in 2015 IEEE Wireless Communications and Networking

Conference (WCNC), pp. 813–818, March 2015.

[4] H. Shajaiah, A. Abdelhadi, and C. Clancy, “Spectrum sharing approach

between radar and communication systems and its impact on radar’s de-

tectable target parameters,” in Vehicular Technology Conference (VTC

Spring), 2015 IEEE 81st, pp. 1–6, May 2015.

[5] S. Wilson and T. Fischetto, “Coastline population trends in the united

states: 1960 to 2008,” in U.S. Dept. of Commerce, 2010.

[6] M. Richards, J. Scheer, and W. Holm, “Principles of Modern Radar,”

2010.

[7] Federal Communications Commission (FCC), “In the matter of revision

of parts 2 and 15 of the commission’s rules to permit unlicensed national

information infrastructure (u-nii) devices in the 5 GHz band.” MOO,

ET Docket No. 03-122, June 2006.

[8] Federal Communications Commission, “Proposal to Create a Citizen’s

Broadband Service in the 3550-3650 MHz band,” 2012.

10

[9] Federal Communications Commission (FCC), “Connecting America: The

national broadband plan.” Online, 2010.

[10] NTIA, “An assessment of the near-term viability of accommodating wire-

less broadband systems in the 1675-1710 mhz, 1755-1780 mhz, 3500-3650

mhz, 4200-4220 mhz and 4380-4400 mhz bands,” 2010.

[11] National Telecommunications and Information Administration (NTIA),

“Analysis and resolution of RF interference to radars operating in the

band 2700-2900 MHz from broadband communication transmitters.”

Online, October 2012.

[12] C. M. and D. R., “Spectrum occupancy measurements of the 3550-3650

megahertz maritime radar band near san diego, california,” 2014.

[13] A. Lackpour, M. Luddy, and J. Winters, “Overview of interference mit-

igation techniques between wimax networks and ground based radar,”

2011.

[14] F. Sanders, J. Carrol, G. Sanders, and R. Sole, “Effects of radar inter-

ference on lte base station receiver performance,” 2013.

[15] M. P. Fitz, T. R. Halford, I. Hossain, and S. W. Enserink, “Towards

Simultaneous Radar and Spectral Sensing,” in IEEE International Sym-

posium on Dynamic Spectrum Access Networks (DYSPAN), pp. 15–19,

April 2014.

[16] Z. Khan, J. J. Lehtomaki, R. Vuohtoniemi, E. Hossain, and L. A. Dasilva,

“On opportunistic spectrum access in radar bands: Lessons learned

from measurement of weather radar signals,” IEEE Wireless Commu-

nications, vol. 23, pp. 40–48, June 2016.

[17] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “A Utility Proportional

Fairness Bandwidth Allocation in Radar-Coexistent Cellular Networks,”

in Military Communications Conference (MILCOM), 2014.

11

[18] A. Abdelhadi and T. C. Clancy, “Network MIMO with partial coopera-

tion between radar and cellular systems,” in 2016 International Confer-

ence on Computing, Networking and Communications (ICNC), pp. 1–5,

Feb 2016.

[19] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “Spectrum-shared re-

source allocation,” in Cellular Communications Systems in Congested

Environments, pp. 147–178, Springer, 2017.

[20] J. Li and P. Stoica, MIMO Radar Signal Processing. Wiley-IEEE Press,

2008.

[21] A. Khawar, A. Abdelhadi, and T. C. Clancy, “On The Impact of Time-

Varying Interference-Channel on the Spatial Approach of Spectrum Shar-

ing between S-band Radar and Communication System,” in Military

Communications Conference (MILCOM), 2014.

[22] H. Shajaiah, A. Khawar, A. Abdel-Hadi, and T. Clancy, “Resource al-

location with carrier aggregation in lte advanced cellular system sharing

spectrum with s-band radar,” in Dynamic Spectrum Access Networks

(DYSPAN), 2014 IEEE International Symposium on, pp. 34–37, April

2014.

[23] A. Khawar, A. Abdelhadi, and C. Clancy, “Target detection performance

of spectrum sharing mimo radars,” Sensors Journal, IEEE, vol. 15,

pp. 4928–4940, Sept 2015.

[24] A. Khawar, A. Abdelhadi, and T. C. Clancy, “Coexistence Analysis be-

tween Radar and Cellular System in LoS Channel,” CoRR, vol. abs/1506.07468,

2015.

[25] A. Khawar, A. Abdelhadi, and T. C. Clancy, “3d channel modeling

between seaborne MIMO radar and MIMO cellular system,” CoRR,

vol. abs/1504.04333, 2015.

[26] A. Khawar, A. Abdel-Hadi, and T. C. Clancy, “Spectrum sharing be-

tween S-band radar and LTE cellular system: A spatial approach,” in

12

2014 IEEE International Symposium on Dynamic Spectrum Access Net-

works: SSPARC Workshop (IEEE DySPAN 2014 - SSPARC Workshop),

(McLean, USA), Apr. 2014.

[27] A. Khawar, A. Abdel-Hadi, and T. C. Clancy, “MIMO radar waveform

design for coexistence with cellular systems,” in IEEE International

Symposium on Dynamic Spectrum Access Networks: SSPARC Work-

shop (IEEE DySPAN 2014 - SSPARC Workshop), (McLean, USA), Apr.

2014.

[28] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “A utility proportional

fairness resource allocation in spectrally radar-coexistent cellular net-

works,” in Military Communications Conference (MILCOM), 2014.

[29] F. Paisana, J. P. Miranda, N. Marchetti, and L. A. DaSilva, “Database-

aided sensing for radar bands,” in IEEE International Symposium on

Dynamic Spectrum Access Networks (DYSPAN), pp. 1–6, April 2014.

[30] H. Deng and B. Himed, “Interference mitigation processing for spectrum-

sharing between radar and wireless communications systems,” IEEE

Transactions on Aerospace and Electronic Systems, vol. 49, no. 3, pp. 1911–

1919, 2013.

[31] A. Khawar, A. Abdelhadi, and T. C. Clancy, “Channel modeling between

seaborne MIMO radar andMIMO cellular system,” CoRR, vol. abs/1504.04325,

2015.

[32] B. Bahrak, S. Bhattarai, A. Ullah, J.-M. Park, J. Reed, and D. Gurney,

“Protecting the primary users’ operational privacy in spectrum sharing,”

in Dynamic Spectrum Access Networks (DYSPAN), 2014 IEEE Interna-

tional Symposium on, 2014.

[33] L. S. Wang, J. P. McGeehan, C. Williams, and A. Doufexi, “Applica-

tion of cooperative sensing in radar-communications coexistence,” IET

Communications, vol. 2, pp. 856–868, 2008.

13

[34] S. S. Bhat, R. M. Narayanan, and M. Rangaswamy, “Bandwidth sharing

and scheduling for multimodal radar with communications and track-

ing,” in IEEE Sensor Array and Multichannel Signal Processing Work-

shop, pp. 233–236, 2012.

[35] R. Saruthirathanaworakun, J. Peha, and L. Correia, “Performance of

data services in cellular networks sharing spectrum with a single rotat-

ing radar,” in IEEE International Symposium on a World of Wireless,

Mobile and Multimedia Networks (WoWMoM), pp. 1–6, 2012.

[36] C. Rossler, E. Ertin, and R. Moses, “A software defined radar sys-

tem for joint communication and sensing,” in IEEE Radar Conference

(RADAR), pp. 1050–1055, May 2011.

[37] R. Y. X. Li, Z. Zhang, and W. Cheng, “Research of constructing method

of complete complementary sequence in integrated radar and communi-

cation,” in IEEE Conference on Signal Processing, vol. 3, pp. 1729–1732,

2012.

[38] C. Sturm and W. Wiesbeck, “Waveform design and signal processing

aspects for fusion of wireless communications and radar sensing,” Pro-

ceedings of the IEEE, vol. 99, pp. 1236–1259, July 2011.

[39] X. Chen, X. Wang, S. Xu, and J. Zhang, “A novel radar waveform

compatible with communication,” in International Conference on Com-

putational Problem-Solving (ICCP), pp. 177–181, 2011.

[40] A. Khawar, A. Abdelhadi, and T. Clancy, “A mathematical analysis

of cellular interference on the performance of s-band military radar sys-

tems,” inWireless Telecommunications Symposium (WTS), 2014, pp. 1–

8, April 2014.

[41] A. Khawar, A. Abdel-Hadi, T. Clancy, and R. McGwier, “Beampattern

analysis for mimo radar and telecommunication system coexistence,”

in Computing, Networking and Communications (ICNC), 2014 Interna-

tional Conference on, pp. 534–539, Feb 2014.

14

[42] A. Khawar, A. Abdelhadi, and T. C. Clancy, “QPSK waveform for

MIMO radar with spectrum sharing constraints,” CoRR, vol. abs/1407.8510,

2014.

[43] J. A. Mahal, A. Khawar, A. Abdel-Hadi, and T. C. Clancy, “Radar

precoder design for spectral coexistence with coordinated multi-point

(comp) system,” CoRR, vol. abs/1503.04256, 2015.

[44] A. Hassanien and S. Vorobyov, “Phased-MIMO radar: A tradeoff be-

tween phased-array and MIMO radars,” Signal Processing, IEEE Trans-

actions on, vol. 58, pp. 3137–3151, June 2010.

[45] C. Shahriar, A. Abdelhadi, and T. C. Clancy, “Overlapped-mimo radar

waveform design for coexistence with communication systems,” CoRR,

vol. abs/1502.04117, 2015.

[46] I. Research, “Mobile VoIP subscribers will near 410 million by 2015;

VoLTE still a long way off,” 2010.

[47] N. Solutions and Networks, “Enhance mobile networks to deliver 1000

times more capacity by 2020,” 2013.

[48] G. Intelligence, “Smartphone users spending more ’face time’ on apps

than voice calls or web browsing,” 2011.

[49] N. S. Networks, “Understanding Smartphone Behavior in the Network,”

2011.

[50] A. Best and B. Natarajan, “The effect of jamming on the performance

of carrier interferometry/OFDM,” in Wireless And Mobile Computing,

Networking And Communications. IEEE Int. Conf. on, Aug. 2005.

[51] J. Kim, D. G. An, H.-G. Ryu, and J. up Kim, “Analysis and design

of SLM based DFT spreading OFDM system for active anti-jamming

system,” in Radio and Wireless Symp. IEEE, Jan. 2011.

[52] L. Lightfoot, L. Zhang, and T. Li, “Performance of QO-STBC-OFDM

in partial-band noise jamming,” in Information Sciences and Systems,

44th Annu. Conf. on, pp. 1 –6, Mar. 2010.

15

[53] M. Han, T. Yu, J. Kim, K. Kwak, S. Han, and D. Hong, “An efficient

channel estimation algorithm under narrow-band jamming for OFDM

systems,” in Military Communications Conference. IEEE, Oct. 2006.

[54] K. C. Beh, A. Doufexi, and S. Armour, “Performance Evaluation of Hy-

brid ARQ Schemes of 3GPPLTE OFDMA System,” in Personal, Indoor

and Mobile Radio Communications, 2007. PIMRC 2007. IEEE 18th

International Symposium on, pp. 1–5, Sept.

[55] M. Brady, M. Mohseni, and J. Cioffi, “Spatially-correlated jamming in

gaussian multiple access and broadcast channels,” in Information Sci-

ences and Systems, 40th Annu. Conf. on, Mar. 2006.

[56] D. Chi and P. Das, “Effects of jammer and nonlinear amplifiers in

MIMO-OFDM with application to 802.11n WLAN,” in Military Com-

munications Conference. IEEE, Nov. 2008.

[57] Y. Cho, J. Kim, W. Yang, and C. Kang, “Mimo-ofdm wireless commu-

nications with matlab,” John Wiley & Sons, 2010.

[58] E. Jorswieck, H. Boche, and M. Weckerle, “Optimal transmitter and

jamming strategies in gaussian mimo channels,” in Vehicular Technology

Conf. VTC 2005-Spring. IEEE 61st, vol. 2, pp. 978 – 982, May 2005.

[59] D. Peng, L. Peng, C. Yin, and G. Yue, “The spatial diversity algorithms

of carrier frequency offset synchronization for MIMO-OFDM systems,”

in Wireless, Mobile and Multimedia Networks, 2006 IET International

Conference on, November 2006.

[60] H. Ekstrom, “QoS control in the 3GPP evolved packet system,” 2009.

[61] H. Ekstrom, A. Furuskar, J. Karlsson, M. Meyer, S. Parkvall, J. Torsner,

and M. Wahlqvist, “Technical solutions for the 3G long-term evolution,”

vol. 44, pp. 38 – 45, Mar. 2006.

[62] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “Quality of service in

communication systems,” in Cellular Communications Systems in Con-

gested Environments, pp. 1–20, Springer, 2017.

16

[63] S. Qaiyum, I. A. Aziz, and J. B. Jaafar, “Analysis of big data and quality-

of-experience in high-density wireless network,” in 2016 3rd Interna-

tional Conference on Computer and Information Sciences (ICCOINS),

pp. 287–292, Aug 2016.

[64] A. Ghosh and R. Ratasuk, “Essentials of LTE and LTE-A,” 2011.

[65] G. Piro, L. Grieco, G. Boggia, and P. Camarda, “A two-level scheduling

algorithm for QoS support in the downlink of LTE cellular networks,”

in Wireless Conference (EW), 2010.

[66] G. Monghal, K. Pedersen, I. Kovacs, and P. Mogensen, “QoS Oriented

Time and Frequency Domain Packet Schedulers for The UTRAN Long

Term Evolution,” in IEEE Vehicular Technology Conference (VTC),

2008.

[67] D. Soldani, H. X. Jun, and B. Luck, “Strategies for Mobile Broad-

band Growth: Traffic Segmentation for Better Customer Experience,”

in IEEE Vehicular Technology Conference (VTC), 2011.

[68] H. Y. and S. Alamouti, “OFDMA: A Broadband Wireless Access Tech-

nology,” in IEEE Sarnoff Symposium, 2006.

[69] A. Larmo, M. Lindstrom, M. Meyer, G. Pelletier, J. Torsner, and H. Wie-

mann, “The LTE link-layer design,” 2009.

[70] C. Ciochina and H. Sari, “A review of OFDMA and single-carrier FDMA,”

in Wireless Conference (EW), 2010.

[71] Z. Kbah and A. Abdelhadi, “Resource allocation in cellular systems for

applications with random parameters,” in 2016 International Conference

on Computing, Networking and Communications (ICNC), pp. 1–5, Feb

2016.

[72] T. Erpek, A. Abdelhadi, and T. C. Clancy, “Application-aware resource

block and power allocation for LTE,” in 2016 Annual IEEE Systems

Conference (SysCon), pp. 1–5, April 2016.

17

[73] S. Ali and M. Zeeshan, “A Delay-Scheduler Coupled Game Theoretic

Resource Allocation Scheme for LTE Networks,” in Frontiers of Infor-

mation Technology (FIT), 2011.

[74] D. Fudenberg and J. Tirole, “Nash equilibrium: multiple Nash equilibria,

focal points, and Pareto optimality,” in MIT Press, 1991.

[75] P. Ranjan, K. Sokol, and H. Pan, “Settling for Less - a QoS Compro-

mise Mechanism for Opportunistic Mobile Networks,” in SIGMETRICS

Performance Evaluation, 2011.

[76] R. Johari and J. Tsitsiklis, “Parameterized Supply Function Bidding:

Equilibrium and Efficiency,” 2011.

[77] L. B. Le, E. Hossain, D. Niyato, and D. I. Kim, “Mobility-aware admis-

sion control with qos guarantees in ofdma femtocell networks,” in 2013

IEEE International Conference on Communications (ICC), pp. 2217–

2222, June 2013.

[78] L. B. Le, D. Niyato, E. Hossain, D. I. Kim, and D. T. Hoang, “QoS-

Aware and Energy-Efficient Resource Management in OFDMA Femto-

cells,” IEEE Transactions on Wireless Communications, vol. 12, pp. 180–

194, January 2013.

[79] L. Chung, “Energy efficiency of qos routing in multi-hop wireless net-

works,” in IEEE International Conference on Electro/Information Tech-

nology (EIT), 2010.

[80] G. T. . V9.0.0, “Further advancements for e-utra physical layer aspects,”

2012.

[81] 3GPP Technical Report 36.211, ‘Physical Channels and Modulation’,

www.3gpp.org.

[82] 3GPP Technical Report 36.213, ‘Physical Layer Procedures’, www.3gpp.org.

[83] M. Alasti, B. Neekzad, J. H., and R. Vannithamby, “Quality of service

in WiMAX and LTE networks [Topics in Wireless Communications],”

2010.

18

[84] D. Niyato and E. Hossain, “WIRELESS BROADBAND ACCESS: WIMAX

AND BEYOND - Integration of WiMAX and WiFi: Optimal Pricing for

Bandwidth Sharing,” IEEE Communications Magazine, vol. 45, pp. 140–

146, May 2007.

[85] J. Andrews, A. Ghosh, and R. Muhamed, “Fundamenytals of wimax:

Understanding broadband wireless netwroking,” 2007.

[86] Federal Communications Commission, “Mobile Broadband: The Bene-

fits of Additional Spectrum,” 2010.

[87] IXIACOM, “Quality of Service (QoS) and Policy Management in Mobile

Data Networks,” 2010.

[88] European Telecommunications Standards Institute, “UMTS; LTE; UTRA;

E-UTRA;EPC; UE conformance specification for UE positioning; Part

1: Conformance test specification,” 2012.

[89] European Telecommunications Standards Institute, “UMTS; UTRA; Gen-

eral description; Stage 2,” 2016.

[90] F. Li, “Quality of Service, Traffic Conditioning, and Resource Manage-

ment in Universal Mobile Teleccomunication System (UMTS),” 2003.

[91] C. Dovrolis, D. Stiliadis, and P. Ramanathan, “Proportional differenti-

ated services: delay differentiation and packet scheduling,” 2002.

[92] A. Sali, A. Widiawan, S. Thilakawardana, R. Tafazolli, and B. Evans,

“Cross-layer design approach for multicast scheduling over satellite net-

works,” in Wireless Communication Systems, 2005. 2nd International

Symposium on, 2005.

[93] R. Braden, “Integrated Services in the Internet Architecture: an Overview,”

1994.

[94] R. Braden, “Resource ReSerVation Protocol (RSVP) - Version 1 Func-

tional Specification,” 1997.

[95] S. Blake, “An Architecture for Differentiated Services,” 1998.

19

[96] K. Nichols, “A Two-Bit Differentiated Services Architecture for the In-

ternet,” 1999.

[97] K. Nahrstedt, “The QoS Broker,” 1995.

[98] E. Lutz, D. Cygan, M. Dippold, F. Dolainsky, and W. Papke, “The

land mobile satellite communication channel-recording, statistics, and

channel model,” 1991.

[99] H. Perros and K. Elsayed, “Call admission control schemes: A review,”

1994.

[100] I. Jung, I. J., Y. Y., H. E., and H. Yeom, “Enhancing QoS and En-

ergy Efficiency of Realtime Network Application on Smartphone Using

Cloud Computing,” in IEEE Asia-Pacific Services Computing Confer-

ence (APSCC), 2011.

[101] Tellabs, “Quality of Service in the Wireless Backhaul,” 2012.

[102] N. Ahmed and H. Yan, “Access control for MPEG video applications us-

ing neural network and simulated annealing,” in Mathematical Problems

in Engineering, 2004.

[103] J. Tournier, J. Babau, and V. Olive, “Qinna, a Component-based QoS

Architecture,” in Proceedings of the 8th International Conference on

Component-Based Software Engineering, 2005.

[104] G. Gorbil and I. Korpeoglu, “Supporting QoS traffic at the network layer

in multi-hop wireless mobile networks,” inWireless Communications and

Mobile Computing Conference (IWCMC), 2011.

[105] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “Utility functions and

radio resource allocation,” in Cellular Communications Systems in Con-

gested Environments, pp. 21–36, Springer, 2017.

[106] H. Kushner and P. Whiting, “Convergence of proportional-fair sharing

algorithms under general conditions,” 2004.

20

[107] M. Andrews, K. Kumaran, K. Ramanan, A. Stolyar, P. Whiting, and

R. Vijayakumar, “Providing quality of service over a shared wireless

link,” 2001.

[108] G. Tychogiorgos, A. Gkelias, and K. Leung, “Utility proportional fair-

ness in wireless networks,” IEEE International Symposium on Personal,

Indoor, and Mobile Radio Communications (PIMRC), 2012.

[109] M. Li, Z. Chen, and Y. Tan, “A maxmin resource allocation approach

for scalable video delivery over multiuser mimo-ofdm systems,” in IEEE

International Symposium on Circuits and Systems (ISCAS), 2011.

[110] R. Prabhu and B. Daneshrad, “An energy-efficient water-filling algo-

rithm for ofdm systems,” in IEEE International Conference on Commu-

nications (ICC), 2010.

[111] T. Harks, “Utility proportional fair bandwidth allocation: An optimiza-

tion oriented approach,” in QoS-IP, 2005.

[112] T. Nandagopal, T. Kim, X. Gao, and V. Bharghavan, “Achieving mac

layer fairness in wireless packet networks,” in Proceedings of the 6th

annual International Conference on Mobile Computing and Networking

(Mobicom), 2000.

[113] F. Kelly, A. Maulloo, and D. Tan, “Rate control in communication net-

works: shadow prices, proportional fairness and stability,” in Journal of

the Operational Research Society, 1998.

[114] S. Low and D. Lapsley, “Optimization flow control, i: Basic algorithm

and convergence,” 1999.

[115] A. Parekh and R. Gallager, “A generalized processor sharing approach

to flow control in integrated services networks: the single-node case,”

1993.

[116] A. Demers, S. Keshav, and S. Shenker, “Analysis and simulation of a

fair queueing algorithm,” 1989.

21

[117] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “Distributed resource

allocation,” in Cellular Communications Systems in Congested Environ-

ments, pp. 61–91, Springer, 2017.

[118] F. Wilson, I. Wakeman, and W. Smith, “Quality of Service Parameters

for Commercial Application of Video Telephony,” 1993.

[119] S. Shenker, “Fundamental design issues for the future internet,” 1995.

[120] A. Abdelhadi and C. Clancy, “A Utility Proportional Fairness Approach

for Resource Allocation in 4G-LTE,” in IEEE International Conference

on Computing, Networking, and Communications (ICNC), CNC Work-

shop, 2014.

[121] A. Abdelhadi and C. Clancy, “A Robust Optimal Rate Allocation Al-

gorithm and Pricing Policy for Hybrid Traffic in 4G-LTE,” in IEEE

nternational Symposium on Personal, Indoor, and Mobile Radio Com-

munications (PIMRC), 2013.

[122] Y. Wang and A. Abdelhadi, “A QoS-based power allocation for cellu-

lar users with different modulations,” in 2016 International Conference

on Computing, Networking and Communications (ICNC), pp. 1–5, Feb

2016.

[123] A. Abdelhadi and H. Shajaiah, “Optimal Resource Allocation for Cellu-

lar Networks with MATLAB Instructions,” CoRR, vol. abs/1612.07862,

2016.

[124] M. Ghorbanzadeh, A. Abdelhadi, A. Amanna, J. Dwyer, and T. Clancy,

“Implementing an optimal rate allocation tuned to the user quality of

experience,” in Computing, Networking and Communications (ICNC),

2015 International Conference on, pp. 292–297, Feb 2015.

[125] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “Centralized resource

allocation,” in Cellular Communications Systems in Congested Environ-

ments, pp. 37–60, Springer, 2017.

22

[126] A. Abdelhadi and T. C. Clancy, “Optimal context-aware resource allo-

cation in cellular networks,” in 2016 International Conference on Com-

puting, Networking and Communications (ICNC), pp. 1–5, Feb 2016.

[127] R. Kurrle, “Resource allocation for smart phones in 4g lte advanced

carrier aggregation,” Master Thesis, Virginia Tech, 2012.

[128] J. Lee, R. Mazumdar, and N. Shroff, “Non-convex optimization and rate

control for multi-class services in the internet,” 2005.

[129] J. Lee, R. Mazumdar, and N. Shroff, “Downlink power allocation for

multi-class wireless systems,” 2005.

[130] A. Abdelhadi, A. Khawar, and T. C. Clancy, “Optimal downlink power

allocation in cellular networks,” Physical Communication, vol. 17, pp. 1–

14, 2015.

[131] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “Resource allocation

architectures traffic and sensitivity analysis,” in Cellular Communica-

tions Systems in Congested Environments, pp. 93–116, Springer, 2017.

[132] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “A Utility Proportional

Fairness Approach for Resource Block Allocation in Cellular Networks,”

in IEEE International Conference on Computing, Networking and Com-

munications (ICNC), 2015.

[133] T. Erpek, A. Abdelhadi, and C. Clancy, “An Optimal Application-

Aware Resource Block Scheduling in LTE,” in IEEE International Con-

ference on Computing, Networking and Communications (ICNC) Wor-

shop CCS), 2015.

[134] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “Radio resource block

allocation,” in Cellular Communications Systems in Congested Environ-

ments, pp. 117–146, Springer, 2017.

[135] M. Ghorbonzadeh, A. Abdelhadi, and T. C. Clancy in Cellular Com-

munications Systems in Congested Environments, ch. Book Summary,

pp. 179–240, Springer, 2017.

23

[136] M. Ghorbanzadeh, A. Abdelhadi, and C. Clancy, “Delay-based backhaul

modeling,” in Cellular Communications Systems in Congested Environ-

ments, pp. 179–240, Springer, 2017.

[137] A. Abdelhadi and H. Shajaiah, “Optimal Resource Allocation for Smart

Phones with Multiple Applications with MATLAB Instructions,” 2016.

[138] S. Boyd and L. Vandenberghe, Introduction to convex optimization with

engineering applications. Cambridge University Press, 2004.

[139] D. Bertsekas, Nonlinear Programming. Athena scientific optimization

and computation series, Athena Scientific, 2016.

[140] D. Bertsimas and J. Tsitsiklis, Introduction to Linear Optimization.

Athena Scientific, 1st ed., 1997.

[141] D. Bertsekas, A. Nedic, and A. Ozdaglar, Convex Analysis and Optimiza-

tion. Athena Scientific optimization and computation series, Athena

Scientific, 2003.

[142] H. Tuy, Convex Analysis and Global Optimization. Springer Publishing

Company, Incorporated, 2nd ed., 2016.

[143] D. Bertsekas and M. I. of Technology, Convex Optimization Algorithms.

Athena Scientific, 2015.

[144] G. Tychogiorgos, A. Gkelias, and K. Leung, “A New Distributed Op-

timization Framework for Hybrid Adhoc Networks,” in GLOBECOM

Workshops, 2011.

[145] G. Tychogiorgos, A. Gkelias, and K. Leung, “Towards a Fair Non-

convex Resource Allocation in Wireless Networks,” in IEEE Interna-

tional Symposium on Personal, Indoor, and Mobile Radio Communica-

tions (PIMRC), 2011.

[146] T. Jiang, L. Song, and Y. Zhang, “Orthogonal frequency division mul-

tiple access fundamentals and applications,” in Auerbach Publications,

2010.

24

[147] G. Yuan, X. Zhang, W. Wang, and Y. Yang, “Carrier aggregation for

LTE-advanced mobile communication systems,” in Communications Mag-

azine, IEEE, vol. 48, pp. 88–93, 2010.

[148] Y. Wang, K. Pedersen, P. Mogensen, and T. Sorensen, “Resource al-

location considerations for multi-carrier lte-advanced systems operat-

ing in backward compatible mode,” in Personal, Indoor and Mobile

Radio Communications, 2009 IEEE 20th International Symposium on,

pp. 370–374, 2009.

[149] H. Shajaiah, A. Abdelhadi, and C. Clancy, “Utility proportional fairness

resource allocation with carrier aggregation in 4g-lte,” in IEEE Military

Communications Conference (MILCOM), 2013.

[150] H. Shajaiah, A. Abdelhadi, and C. Clancy, “Multi-application resource

allocation with users discrimination in cellular networks,” in IEEE nter-

national Symposium on Personal, Indoor and Mobile Radio Communi-

cations (PIMRC), 2014.

[151] A. Abdelhadi and C. Clancy, “An optimal resource allocation with joint

carrier aggregation in 4G-LTE,” in Computing, Networking and Com-

munications (ICNC), 2015 International Conference on, pp. 138–142,

Feb 2015.

[152] H. Shajaiah, A. Abdelhadi, and T. C. Clancy, “An efficient multi-carrier

resource allocation with user discrimination framework for 5g wireless

systems,” Springer International Journal of Wireless Information Net-

works, vol. 22, no. 4, pp. 345–356, 2015.

[153] A. Abdelhadi and H. Shajaiah, “Application-Aware Resource Allocation

with Carrier Aggregation using MATLAB,” 2016.

[154] Y. Wang, A. Abdelhadi, and T. C. Clancy, “Optimal power allocation

for lte users with different modulations,” in 2016 Annual IEEE Systems

Conference (SysCon), pp. 1–5, April 2016.

[155] A. Abdel-Hadi and S. Vishwanath, “On multicast interference align-

ment in multihop systems,” in IEEE Information Theory Workshop 2010

(ITW 2010), 2010.

25

[156] H. Zhou, X. Wang, Z. Liu, X. Zhao, Y. Ji, and S. Yamada, “Qos-aware

resource allocation for multicast service over vehicular networks,” in 2016

8th International Conference on Wireless Communications Signal Pro-

cessing (WCSP), pp. 1–5, Oct 2016.

[157] Z. Fan, Y. Li, G. Shen, and C. C. K. Chan, “Dynamic resource alloca-

tion for all-optical multicast based on sub-tree scheme in elastic optical

networks,” in 2016 Optical Fiber Communications Conference and Ex-

hibition (OFC), pp. 1–3, March 2016.

[158] J. Jose, A. Abdel-Hadi, P. Gupta, and S. Vishwanath, “On the impact

of mobility on multicast capacity of wireless networks,” in INFOCOM,

2010 Proceedings IEEE, pp. 1–5, March 2010.

[159] S. Gao and M. Tao, “Energy-efficient resource allocation for multiple

description coding based multicast services in ofdma networks,” in 2016

IEEE/CIC International Conference on Communications in China (ICCC),

pp. 1–6, July 2016.

[160] A. Kumar, A. Abdelhadi, and T. C. Clancy, “A delay efficient multiclass

packet scheduler for heterogeneous M2M uplink,” IEEE MILCOM, 2016.

[161] A. Kumar, A. Abdelhadi, and T. C. Clancy, “An online delay efficient

packet scheduler for M2M traffic in industrial automation,” IEEE Sys-

tems Conference, 2016.

[162] A. Kumar, A. Abdelhadi, and T. C. Clancy, “A delay optimal MAC and

packet scheduler for heterogeneous M2M uplink,” CoRR, vol. abs/1606.06692,

2016.

[163] S. Chieochan and E. Hossain, “Downlink Media Streaming with Wire-

less Fountain Coding in wireline-cum-WiFi Networks,” Wirel. Commun.

Mob. Comput., vol. 12, pp. 1567–1579, Dec. 2012.

[164] A. Abdelhadi, F. Rechia, A. Narayanan, T. Teixeira, R. Lent, D. Ben-

haddou, H. Lee, and T. C. Clancy, “Position Estimation of Robotic Mo-

bile Nodes in Wireless Testbed using GENI,” CoRR, vol. abs/1511.08936,

2015.

26

[165] S. Chieochan and E. Hossain, “Wireless Fountain Coding with IEEE

802.11e Block ACK for Media Streaming in Wireline-cum-WiFi Net-

works: A Performance Study,” IEEE Transactions on Mobile Comput-

ing, vol. 10, pp. 1416–1433, Oct 2011.

[166] S. Chieochan and E. Hossain, “Network Coding for Unicast in a WiFi

Hotspot: Promises, Challenges, and Testbed Implementation,” Comput.

Netw., vol. 56, pp. 2963–2980, Aug. 2012.

[167] J. Chen, S. Olafsson, and X. Gu, “Observations on using simulated an-

nealing for dynamic channel allocation in 802.11 wlans,” in IEEE Vehic-

ular Technology Conference (VTC), 2008.

27


Recommended