Hi all,
I am trying to use wifi for longer range communication and as a part of it, I want to increase its transmission power.
I used below part of code
YansWifiPhyHelper wifiInternetPhy = YansWifiPhyHelper::Default ();
wifiInternetPhy.Set ("TxPowerStart", DoubleValue(1600.0206));
wifiInternetPhy.Set ("TxPowerEnd", DoubleValue(160.0206));
wifiInternetPhy.Set ("TxPowerLevels", UintegerValue(1));
wifiInternetPhy.Set ("TxGain", DoubleValue(15) );
wifiInternetPhy.Set ("RxGain", DoubleValue (5) );
But still the radiation range is still the same. Am I making any mistake? Is there any problem if I use default while object creation and then assign other values like I have done?
Regards,
RK