summaryrefslogtreecommitdiff
path: root/2414/CH13/EX13.9/Ex13_9.sce
blob: 5e8eb4a5c9cee0fa00e57716ffcecc6b3ef365a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
clc;
close();
clear();
//page no 456
//prob no. 13.9

//Data form ex13.8
Pe=10^-5;
R=2*10^6;  //bits/s  (changed)
k=1.38*10^-23;   //Boltzmann cons
Ti=475;  //K
Te=250;  //K
Tsys=Ti+Te;
nsys=k*Tsys;  //W/Hz  
function Eb=E(rhodb)    //function for Eb
    rho=10^(rhodb/10);
    Eb=nsys*rho;
endfunction
function Pr=P(E)      //function for Pr
    Pr=R*Eb;
endfunction

rhodb=9.6;
 Eb=E(rhodb);
 Pr=P(E);
mprintf('\nBit energy , Eb=%.2f*10^-21 J \n',Eb*10^21);
mprintf(' Required reciver carrier power , Pr=%.2f fW \n',Pr*10^15);