Working on...

your queries, use contact form

11 Oct 2022

Mobile and wireless communication practicals (22533)

 

***Following practicals are performed on SciLab software***

 Scilab Download 


//Mobile and wireless communication (22533)

//Practical No. 11

//Determine the channel capacity of cellular system

 

clc;

clear all;

M=input("enter the number if cluster:");

k=input("enter the number of channels per cell:");

N=input("enter the number of cells in a cluster:");

y=k*M*N;

disp(y);

 

 

//Mobile and wireless communication (22533)

//Practical No. 12

//Effect of cell splitting on channel capacity

 

clc;

clear all;

M=input("enter the number of cluster                        :");

k=input("enter the number of channels per cell              :");

N=input("enter the number of cells in a cluster             :");

a=input("enter the number of micro cells per macro cells    :");

b=input("enter the number of pico cells per micro cells     :");

y=k*M*N*a;

disp('channel capacity considerting micro cells          :');

disp(y);

z=y*b;

disp('channel capacity considerting pico cells           :');

disp(z);

 

//Mobile and wireless communication (22533)

//Practical No. 13

//Fixed assignment of voice channels

 

clc;

clear all;

//M=input("enter the number of cluster                :");

k=input("enter the number of channels per cell      :");

N=input("enter the number of cells in a cluster     :");

y=k/N;

disp('number of voice channels available in a cell when omnidirectional antenna is used');

disp(y);

 

//Mobile and wireless communication (22533)

//Practical No. 14

//To assign voice channel in cell sectoring

 

clc;

clear all;

k=input("enter the number of channels per cell      :");

N=input("enter the number of cells in a cluster     :");

a=input("enter the number of sector cells           :");

y=N*a;

disp('the total sectors in the given region are     :');

disp(y);

z=k/y;

disp('number of voice channels available in the cells when directional antenna is used');

disp(z);

No comments:

Post a Comment