30
Coexistence of Overlapped MIMO Radar and Communication Systems using MATLAB by Ahmed Abdelhadi Review Article with MATLAB Instructions 2019 University of Houston

Coexistence of Overlapped MIMO Radar and Communication

  • Upload
    others

  • View
    12

  • Download
    0

Embed Size (px)

Citation preview

Coexistence of Overlapped MIMO Radar and

Communication Systems 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 and Communications Systems . . . . . . . . . . . . . . 3

Chapter 2. Overlapped MIMO Radar in Coexistence Scenarios 4

2.1 System Model . . . . . . . . . . . . . . . . . . . . . . . . . . . 4

2.1.1 Projection Algorithm . . . . . . . . . . . . . . . . . . . 5

Bibliography 10

ii

List of Tables

iii

List of Figures

2.1 System Model . . . . . . . . . . . . . . . . . . . . . . . . . . . 4

2.2 Overall Gain (dB) . . . . . . . . . . . . . . . . . . . . . . . . . 8

2.3 Overall Gain with NSP (dB) . . . . . . . . . . . . . . . . . . . 9

iv

Chapter 1

Introduction

This report is a MATLAB simulation tutorial for the plots in [1]. The report

starts with a background on the radar communications coexistence prior work

and the importance of coexistence scenarios on the performance of commu-

nication systems. Then, it provides a code tutorial for plotting the figures

in [1].

1.1 Motivation, Background, and Related Work

In our model, we utilize the advantages of Multiple input multiple output

(MIMO) radars. MIMO radars show better performance compared to phased-

array radar [2–4] due to inherent degrees of freedom in waveforms. In the

future, MIMO radars will replace phased array radars currently deployed by

the military [5–10]. Due to the waveform diversity of MIMO radars, they are

more suitable for coexistence scenarios over phased-array radar [11–22]. For

this report, we consider overlapped MIMO radar which is a hybrid between

MIMO radar and phased-array radar with detailed description of it presented

in [1].

In [23], the President Council of Advisers on Science and Technology (PCAST)

recommended the commercial mobile network service share the spectrum of

shipborne radar [24–26] as this will have significantly technological and eco-

nomical benefits to the United States. Similar statement from the Federal

Communications Commission (FCC) points to sharing of the shipborne radar

spectrum [27,28] with commercial wireless spectrum [29,30]. More studies on

the effects of radar and communications coexistence on interference was per-

formed by the National Telecommunications and Information Administration

(NTIA) [31–33] and by researcher in [34–37] and authors in [38–40] showed

1

simulation results.

Given the growing demand for wireless services, the need to a significant boost

to the throughput of wireless communication networks is increasing [41–44].

With MIMO communications systems [45–49], the exploitation of spatial di-

mension led to an increase of the wireless throughput [50–54]. However, there

is still growing demand that needs to be met with spectrum sharing of un-

derutilized radar spectrum to further improve quality of service (QoS) [55–57]

and quality of experience (QoE) [58,59]. Prior work on QoS of Open Systems

Interconnection (OSI) Model for network layer is in [60–63], for physical layer

is in [64, 65], and for application layer is in [66, 67]. Energy efficiency con-

siderations and game theory tools were presented in [68–70], and [71–74], re-

spectively, applied to Long Term Evolution (LTE) third generation partnership

project (3GPP) [75–77], Universal Mobile Terrestrial System (UMTS) [78–80],

Mobile Broadband [81,82], and Worldwide Interoperability for Microwave Ac-

cess (WiMAX) [83–85]. Enhancing QoS with cross-layer design was shown

in [86, 87], while battery life and embedded-based systems inclusion was pro-

vided in [88–92], and scheduling and shaping in [93–99].

Coexistence scenario benefits both radar and wireless communication systems.

On the wireless communication side, resource allocation algorithms with coex-

istence provide better throughput and overall QoE for delay-tolerant applica-

tions [100–103]. Some resource allocation techniques for delay-tolerant applica-

tions are proportional fairness [104–106], max-min fairness [107–110], and op-

timal allocation [111–114]. More importantly the bandwidth demanding real-

time applications [115–123] can significantly benefit from coexistence scenarios.

Prior resource allocation for real-time applications are either approximate so-

lutions such as the work in [124–126] or optimal solutions as in [127–134] using

optimization techniques [135–140]. Mergence of resource allocation with coex-

istence is emphasized in carrier aggregation techniques [141–145]. With opti-

mal performance can be achieved by convex optimization techniques [146–149].

Tools developed in this work can benefit other areas such as ad-hoc net-

works [150–153], multi-cast networks [154], machine to machine (M2M) com-

munications [155–157], and other wireless networks [158–162].

2

1.2 Radar and Communications Systems

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

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 M = 20;%

Total number of transmitting antennas4 M_r = 20;

%Total number of receiving antennas

5 %6 no_subarrays = [1 5 10 20]; % {1, 5, 10, 20}

corresponds to number of elements in Overlapped MIMOsubarray

7

8 %%%%%%%%%%%%%%%%%%%%%%%%%

3

Chapter 2

Overlapped MIMO Radar in Coexistence

Scenarios

2.1 System Model

Figure 2.1: System Model

In [1], we consider a coexistence scenario where the communication system

has MIMO antennas and the radar system has overlapped MIMO antennas.

The radar system is assumed to be shipborne on military ships on the east or

the west coasts of the US as shown in Figure 2.1. The radar uses null space

projection (NSP) as in [163–165] to avoid interference with the communication

system.

4

2.1.1 Projection Algorithm

We provide a MATLAB code for coexistence that utilizes the hybrid MIMO

radar introduced in [166] with MATLAB code in [167] and is extended in [1]

for overalpped MIMO coexistence.

• Implement singular value decomposition (SVD) on the channel between

radar and communications systems followed by null space projection to

mitigate harmful interference.

In MATLAB

1 %%%%%%%%%%%%%%%%%%2

3 %%%%%%%%%%%%%%%%%%%%%%%%%%%4

5 N_R = 5; % No of receiveAntennas

6

7 %%%%%%%%%%%%%%%%%%%%%%%%%%% VIRTUAL ARRAY W/O A_R%%%%%%%%%%%%%%%%%%%%%%%%%

8 P = [];9 H = randn(N_R, no_subarrays * M_sub) + j * randn(

N_R, no_subarrays * M_sub);10 P = null(H) * ctranspose(null(H));11

12 v_sv2 = [];13

14 for kk = 1:no_subarrays15 for mm = 1:M_sub16 v_temp2 = [];17 w_u = W_u(mm,kk);18 for jj = 1:length(Theta)19 v_temp2 = [v_temp2, (w_u’ * Tx_sv(kk +

mm -1, jj))];20 end21 v_sv2 = [v_sv2; v_temp2];22 end23 end

5

24

25 v_sv2_P = P * v_sv2;26

27 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

28

29 v_sv3 = [];30 for vv = 1:no_subarrays * M_sub31 v_temp3 = [];32 for jj = 1:length(Theta)33 v_temp3 = [v_temp3, (v_sv2_P(vv, jj)) *

Rx_sv(:,jj)];34 end35 v_sv3 = [v_sv3; v_temp3];36 end37

38 %%%%% For Projection case uncomment %%%%%%39 v_sv = v_sv3;40

41 %%%%%%%%%%%%%%%%%%

• Code for plotting of Overall Gain without NSP is shown below and

plotted in Figure 2.2.

In MATLAB:

1 %%%%%%%%%%%%%%%%%%2 %%%%%%%% PLOTING %%%%%%%3 Theta = Theta_grid;4 plot(Theta*180/pi,1.02*Rx_pattern_conv(2,:),’g’,

Theta*180/pi,Rx_pattern_conv(3,:),’b’,Theta*180/pi,Rx_pattern_conv(4,:),’k--’,’linewidth’,2),grid

5 axis([-40 40 -100 30])6 xlabel(’Angle (deg)’)7 ylabel(’Overall Gain (dB)’)

6

8 legend(’Overlapped-MIMO Radar (K=5)’,’Overlapped-MIMO Radar (K=10)’,’MIMO Radar (K=20)’)

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

• Code for plotting of Overall Gain with NSP is shown below and plotted

in Figure 2.3.

In MATLAB:

1 %%%%%%%%%%%%%%%%%%2 figure;3 Theta = Theta_grid;4 plot(Theta*180/pi,1.02*Rx_pattern_conv_proj(2,:),’g

’,Theta*180/pi,Rx_pattern_conv_proj(3,:),’b’,Theta*180/pi,Rx_pattern_conv_proj(4,:),’k--’,’linewidth’,2),grid

5 axis([-40 40 -100 30])6 xlabel(’Angle (deg)’)7 ylabel(’Overall Gain (dB)’)8 legend(’Overlapped-MIMO Radar w/ NSP (K=5)’,’

Overlapped-MIMO Radar w/ NSP (K=10)’,’MIMO Radarw/ NSP (K=20)’)

9 %%%%%%%%%% END %%%%%%%%%%%%%%%10 %%%%%%%%%%%%%%%%%%

7

−80 −60 −40 −20 0 20 40 60 80−120

−100

−80

−60

−40

−20

0

20

Angle (deg)

Ove

rall

Gai

n (d

B)

Overlapped−MIMO Radar (K=1)Overlapped−MIMO Radar (K=5)Overlapped−MIMO Radar (K=10)MIMO Radar (K=20)

Figure 2.2: Overall Gain (dB)

8

−80 −60 −40 −20 0 20 40 60 80−120

−100

−80

−60

−40

−20

0

20

Angle (deg)

Ove

rall

Gai

n (d

B)

Overlapped−MIMO Radar w/ NSP (K=1)Overlapped−MIMO Radar w/ NSP (K=5)Overlapped−MIMO Radar w/ NSP (K=10)MIMO Radar w/ NSP (K=20)

Figure 2.3: Overall Gain with NSP (dB)

9

Bibliography

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

waveform design for coexistence with communication systems,” CoRR,

vol. abs/1502.04117, 2015.

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

2008.

[3] 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.

[4] 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.

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

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

2014 IEEE International Symposium on Dynamic Spectrum Access Net-

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

(McLean, USA), Apr. 2014.

[6] 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.

[7] 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.

10

[8] 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.

[9] 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.

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

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

2015.

[11] 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.

[12] 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] 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.

[14] 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.

[15] 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.

11

[16] 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.

[17] 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.

[18] 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.

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

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

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

8, April 2014.

[20] 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.

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

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

2014.

[22] 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.

[23] 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.

[24] 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.

12

[25] 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.

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

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

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

2010.

[28] 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.

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

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

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

national broadband plan.” Online, 2010.

[31] 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.

[32] 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.

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

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

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

igation techniques between wimax networks and ground based radar,”

2011.

13

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

ference on lte base station receiver performance,” 2013.

[36] 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.

[37] 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.

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

Fairness Bandwidth Allocation in Radar-Coexistent Cellular Networks,”

in Military Communications Conference (MILCOM), 2014.

[39] 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.

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

source allocation,” in Cellular Communications Systems in Congested

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

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

VoLTE still a long way off,” 2010.

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

times more capacity by 2020,” 2013.

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

than voice calls or web browsing,” 2011.

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

2011.

14

[45] 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.

[46] 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.

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

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

[48] 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.

[49] 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.

[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.

[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

15

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

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

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

[56] 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.

[57] 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.

[58] 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.

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

[60] 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.

[61] 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.

[62] 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.

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

nology,” in IEEE Sarnoff Symposium, 2006.

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

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

16

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

in Wireless Conference (EW), 2010.

[66] 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.

[67] 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.

[68] 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.

[69] 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.

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

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

nology (EIT), 2010.

[71] 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.

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

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

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

mise Mechanism for Opportunistic Mobile Networks,” in SIGMETRICS

Performance Evaluation, 2011.

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

Equilibrium and Efficiency,” 2011.

17

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

2012.

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

www.3gpp.org.

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

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

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

1: Conformance test specification,” 2012.

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

eral description; Stage 2,” 2016.

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

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

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

fits of Additional Spectrum,” 2010.

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

Data Networks,” 2010.

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

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

2010.

[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] C. Dovrolis, D. Stiliadis, and P. Ramanathan, “Proportional differenti-

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

18

[87] 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.

[88] 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.

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

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

ing neural network and simulated annealing,” in Mathematical Problems

in Engineering, 2004.

[91] 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.

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

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

Mobile Computing Conference (IWCMC), 2011.

[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.

[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.

19

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

1994.

[100] 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.

[101] 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.

[102] 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.

[103] 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.

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

algorithms under general conditions,” 2004.

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

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

link,” 2001.

[106] 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.

[107] 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.

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

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

nications (ICC), 2010.

20

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

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

[110] 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.

[111] 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.

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

and convergence,” 1999.

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

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

1993.

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

fair queueing algorithm,” 1989.

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

for Commercial Application of Video Telephony,” 1993.

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

allocation,” in Cellular Communications Systems in Congested Environ-

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

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

[118] 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.

[119] 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.

21

[120] 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.

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

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

2016.

[122] 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.

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

allocation,” in Cellular Communications Systems in Congested Environ-

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

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

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

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

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

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

multi-class wireless systems,” 2005.

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

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

14, 2015.

[128] 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.

[129] 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.

22

[130] 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.

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

allocation,” in Cellular Communications Systems in Congested Environ-

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

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

munications Systems in Congested Environments, ch. Book Summary,

pp. 179–240, Springer, 2017.

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

modeling,” in Cellular Communications Systems in Congested Environ-

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

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

Phones with Multiple Applications with MATLAB Instructions,” 2016.

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

engineering applications. Cambridge University Press, 2004.

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

and computation series, Athena Scientific, 2016.

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

Athena Scientific, 1st ed., 1997.

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

tion. Athena Scientific optimization and computation series, Athena

Scientific, 2003.

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

Company, Incorporated, 2nd ed., 2016.

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

Athena Scientific, 2015.

23

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

timization Framework for Hybrid Adhoc Networks,” in GLOBECOM

Workshops, 2011.

[142] 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.

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

tiple access fundamentals and applications,” in Auerbach Publications,

2010.

[144] 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.

[145] 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.

[146] 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.

[147] 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.

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

with Carrier Aggregation using MATLAB,” 2016.

[149] 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.

24

[150] 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.

[151] 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.

[152] 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.

[153] 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.

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

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

(ITW 2010), 2010.

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

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

[156] 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.

[157] 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.

[158] 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.

25

[159] 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.

[160] 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.

[161] 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.

[162] 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.

[163] 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.

[164] 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.

[165] 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.

[166] 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.

[167] A. Hassanien and S. Vorobyov, phasedMIMOradar: Matlab Code for the

Phased MIMO Radar, 2009.

26