Étudiante : Lati Hadil
Tp 1
Compte rendu tp1 :
[Link] Tp Pour une grande ville, en fonction de la distance:
clear all;close all;clc;
fc=8*10^8
A=46.3;B=33.9;
Cm=0.001;
hb=100;
hm=1;
a=3.2*(log10(11.75*hm))^2-4.97;
d=0:10000;
L=zeros(length(d),1);
for n=1:length(d)
L(n)=A+B*log10(fc)-13.82*log10(hb)-a+(44.9-6.55*log10(hb))*log10(d(n))+Cm;
end
plot(L)
[Link] TP Pour une petite ville et une grande ville en fonction de la
fréquence et pour une distance fixe d=1000 m.
Pour une petite ville :
clear all ;close all ;clc ;
hb=100 ;
hm=1;
Cm=0.001 ;
fc=8*10^8 ;
A=69.55 ;B=26.16 ;
a=1.1*(log10(fc)-0.7)*hm-(1.56*log10(fc)-0.8);
d=1000 ;
L=A+B*log10(fc)-13.82*log10(hb) -a+(44.9- 6.55*log10(hb))*log10(d(n))+Cm;
End
Pour une grande ville :
clear all ;close all ;clc ;
hb=100;
hm=1;
cm=0.001 ;
fc=8*10^8 ;
A=46.3 ;B=33.9;
a=3.2*(log10(11.75hm))^2-4.97;
d=1000 ;
L=A+B*log10(fc)-13.82*log10(hb)-a+(44.9-6.55*log10(hb))*log10(d(n))+Cm;
End