l***s 发帖数: 139 | 1 这学期选了门课是关于wireless network的,但是之前从来没有接触过相关的内容,所
以希望有经验的大侠可以帮忙看看下面这个问题,不胜感激
我看到说修改rxthresh可以更改transmission range
但是这两者之间的具体关系是什么呢?
而且我改了rxthresh之后,重新run .tcl文件,然后用threshold进行测试,发现返回
结果并没有变化。。。请问这是什么原因呢? |
z*****n 发帖数: 7639 | 2 rxthresh 指的是接收灵敏度阀值。如果这个参数改小,
说明灵敏度变高,接收机可以收到更微弱的信号。
transmission range in NS2 can be controlled by
both txpower and rxthresh. The signal propagation
model by default is set as 2-way ground. So once
the txpower and rxthreshold are set, the range is
determined.
【在 l***s 的大作中提到】 : 这学期选了门课是关于wireless network的,但是之前从来没有接触过相关的内容,所 : 以希望有经验的大侠可以帮忙看看下面这个问题,不胜感激 : 我看到说修改rxthresh可以更改transmission range : 但是这两者之间的具体关系是什么呢? : 而且我改了rxthresh之后,重新run .tcl文件,然后用threshold进行测试,发现返回 : 结果并没有变化。。。请问这是什么原因呢?
|
l***s 发帖数: 139 | 3 thx a lot :-)
but any formula to describe the relation among the three variables?
【在 z*****n 的大作中提到】 : rxthresh 指的是接收灵敏度阀值。如果这个参数改小, : 说明灵敏度变高,接收机可以收到更微弱的信号。 : transmission range in NS2 can be controlled by : both txpower and rxthresh. The signal propagation : model by default is set as 2-way ground. So once : the txpower and rxthreshold are set, the range is : determined.
|
z*****n 发帖数: 7639 | 4 you need to read ns-2 manual. google it.
【在 l***s 的大作中提到】 : thx a lot :-) : but any formula to describe the relation among the three variables?
|
o*******i 发帖数: 396 | 5 depends on ur prop model.
不同的model又不同的衰减特性
最奸蛋的例子,就是自由衰落。
eg, free space, in \ns-allinone-2.29\ns-2.29\mobile\propagation.cc
你能看到这个函数。自己打printf试试看啊。
这事进入ns2里面搞清wirelessnetwork传输的必经之路
double
Propagation::Friis(double Pt, double Gt, double Gr, double lambda, double L,
double d)
{
/*
* Friis free space equation:
*
* Pt * Gt * Gr * (lambda^2)
* P = --------------------------
* (4 * pi * d)^2 * L
*/
if (d == 0.0) //XXX pr
【在 l***s 的大作中提到】 : thx a lot :-) : but any formula to describe the relation among the three variables?
|
l***s 发帖数: 139 | 6 感谢您,衷心谢谢您
L,
【在 o*******i 的大作中提到】 : depends on ur prop model. : 不同的model又不同的衰减特性 : 最奸蛋的例子,就是自由衰落。 : eg, free space, in \ns-allinone-2.29\ns-2.29\mobile\propagation.cc : 你能看到这个函数。自己打printf试试看啊。 : 这事进入ns2里面搞清wirelessnetwork传输的必经之路 : double : Propagation::Friis(double Pt, double Gt, double Gr, double lambda, double L, : double d) : {
|