Task 1: Free Space Propagation and Path Loss (10%) In a free space wireless propagation environment, transmit power between a transmitter and receiver usually decreases due to free space path loss...

1 answer below »



Task 1: Free Space Propagation and Path Loss (10%)


In a free space wireless propagation environment, transmit power between a transmitter and receiver usually decreases due to free space path loss denoted asL subscript f space(dB) and can be expressed as a function of distancedbetween transmitter and receiver. Your task is calculate and plot the path lossL subscript f space(dB) for a distanced space equals space 0 space t o space 30 space k mand carrier frequencyf subscript c space= 150, 400 and 1000 MHz. Assuming that the transmit powerP subscript t spaceis 100 watts, you can calculate and plot the received powerP subscript r spaceas a function of distanced(as given above) for the carrier frequencies given above. You can assume transmit and receive antennas gains are the same, i.e.G subscript t space equals space G subscript r space equals space 0 space d B.



Deliverable:You are required to plot path lossL subscript f space(dB) as a function of distance for each carrier frequency, so you will have three curves in the plot. You also need to plot received powerP subscript r spaceas a function of distancedfor each carrier frequency, so you will have three curves of the received power. You need to submit your executable GNU Octave code along with the plots in a single Word file.






Task 2:Research Project (10%)



  1. You are working as Network Design Engineer with local service provider and your manager has asked you to propose the design for the below cellular architecture shown in Figure 1. In your design provide the following information with reasons; Base station sites locations, Antenna specification (such as antenna shape, height, gains etc), mention the type of the area considering the cell size (such as suburban, metropolitan, rural etc) and justify you design. Note that the numbers within each cell are representing the traffic density in Erlang. (8 marks)

  2. Looking at the Figure 1 below, justify the design of this cellular network with appropriate reasoning? (2marks)









Figure 1: Cellular Architecture





Answered Same DaySep 06, 2021

Answer To: Task 1: Free Space Propagation and Path Loss (10%) In a free space wireless propagation environment,...

Kshitij answered on Sep 08 2021
144 Votes
clc
clear all
GT=1;
GR=1;
L=3*10^8
PT=100;
LMD=L/Fr;
Pie=3.141;
F=150*10^6
for D=3:33
Rece
ivPower(D)=(PT*GT*GR)/((4*PIE*D-1)/LMD)^2;
PathLoss(D)=((4*PIE*(D-1))/LMD)^2;
PathLossIndB(D)=10*log(PathLoss(D));
end
subplot(2,2,1)
plot(ReceivPower)
title (' Total Power Received')
xlabel...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here