资源描述:
《okumura-hata模型的计算机仿真》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、实验基本原理及公式移动通信中电波传播的实际情况是复杂多变的。实践证明,任何试图使用一个或几个理论公式计算的结果,都将引入较大误差。甚至与实测结果相差甚远。为此,人们通过大量的实地测量和分析,总结归纳了多种经验模型。通常在一定情况下,使用这些模型对移动通信电波传播特性进行估算,都能获得比较准确的预测结果。目前应用较为广泛的是OM模型(Okumura模型),为了在系统设计时,使Okumura模型能采用计算机进行预测,Hata对Okumura模型的基本中值场强曲线进行了公式化处理,所得基本传输损耗的计算公式如下:式中,d为收发天线之间的距
2、离,km;f为工作频率,MHz;hb为基站天线有效高度,m;α(hm)为移动台天线高度校正因子,hm为移动台天线高度(m)。α(hm)由下式计算:此公式适用范围为:150MHz≤f≤1920MHz30m≤hb≤200m,1m≤hm≤10m,1km≤d≤20km,准平滑地形。实验内容1、比较不同地形下的衰减情况:针对市区、郊区和开阔区,比较在相同条件(基站天线高度、移动台天线高度、传播距离)下,随着频率的改变,电波传播衰减的情况。2、比较相同地形不同城市类型下的衰减情况:针对市区、郊区或者开阔区任一种地形,比较在相同条件(基站天线高度
3、、移动台天线高度、传播距离)下,不同城市类型(大城市或者中、小城市),随着频率的改变,电波传播衰减的情况。实现代码:#include#includefloatcomputer1(float*p,float*q,floath1,floath2);floatcomputer2(float*p,float*q,floath1,floath2);floatcomputer3(float*p,float*q,floath1,floath2);floatcomputer5(float*p,float*q,flo
4、ath1,floath2);floatcomputer4(float*p,float*q,floath1,floath2);floatcomputer6(float*p,float*q,floath1,floath2);voidmain(){ floatfrequency,distan,height1,height2; inteara,type; for(;;) { printf("chooseyoureara:t1.cityearat2.suburbant3.openeara"); scanf("%d",
5、&eara); if(eara==1) { printf("chooseyourcity:t1.bigt2.smallandmidd"); scanf("%d",&type); } printf("inputthefrequency"); scanf("%f",&frequency); printf("inputyourdistance"); scanf("%f",&distan); printf("inputyourheightofjizhan"); scanf("%f",&h
6、eight1); printf("inputyourheightofmobile"); scanf("%f",&height2); if(frequency>1920
7、
8、frequency<150) { printf("yourfrequencyisillegal"); continue; } elseif(height1>200
9、
10、height1<20) { printf("yourjizhanisillegal"); continue; } elseif(height2>10
11、
12、he
13、ight2<1) { printf("yourheightofmobileisillegal"); continue; } elseif(distan>20
14、
15、distan<1) { printf("yourdistanceisillegal"); continue; } switch(eara) { case1:{ if(type==1) printf("%.3f",computer1(&frequency,&distan,height1,height2));
16、 else printf("%.3f",computer4(&frequency,&distan,height1,height2)); }break; case2:printf("%.3f