Document the friis propagation model.

This commit is contained in:
Mathieu Lacage
2007-11-05 14:54:40 +01:00
parent 745412ffb8
commit 9041f3ed1f
2 changed files with 38 additions and 1 deletions

View File

@@ -52,6 +52,10 @@ static NumericDefaultValue<double> g_friisSystemLoss
("FriisPropagationLossSystemLoss",
"The system loss to use by default for every FriisPropagationLossModel",
1.0);
static NumericDefaultValue<double> g_friisPropagationLossMinDistance
("FriisPropagationLossMinDistance",
"The distance under which the propagation model refuses to give results (m)",
0.5);
static RandomVariableDefaultValue g_random
("RandomPropagationLossDistribution",
@@ -198,6 +202,11 @@ FriisPropagationLossModel::GetRxPower (double txPowerDbm,
* lambda: wavelength (m)
*/
double distance = a->GetDistanceFrom (b);
if (distance <= g_friisPropagationLossMinDistance.GetValue ())
{
NS_FATAL_ERROR ("The friis propagation loss model is invalid when d="<<
distance<<"m << "<<g_friisPropagationLossMinDistance.GetValue ()<<"m");
}
double numerator = m_lambda * m_lambda;
double denominator = 16 * PI * PI * distance * distance * m_systemLoss;
double pr = log (numerator / denominator) * 10 / log (10);

View File

@@ -82,7 +82,35 @@ private:
/**
* \brief a Friis propagation loss model
*
* XXX: link to model description.
* The Friis propagation loss model was first described in
* "A Note on a Simple Transmission Formula", by
* "Harald T. Friis".
*
* The original equation was described as:
* \f$ \frac{P_r}{P_t} = \frac{A_r A_t}{d^2\lambda^2} \f$
* with the following equation for the case of an
* isotropic antenna with no heat loss:
* \f$ A_{isotr.} = \frac{\lambda^2}{4\pi} \f$
*
* The final equation becomes:
* \f$ \frac{P_r}{P_t} = \frac{\lambda^2}{(4 \pi d)^2} \f$
*
* Modern extensions to this original equation are:
* \f$ P_r = \frac{P_t G_t G_r \lambda^2}{(4 \pi d)^2 L}\f$
*
* With:
* - \f$ P_r \f$ : reception power (W)
* - \f$ P_t \f$ : transmission power (W)
* - \f$ G_t \f$ : transmission gain (unit-less)
* - \f$ G_r \f$ : reception gain (unit-less)
* - \f$ \lambda \f$ : wavelength (m)
* - \f$ d \f$ : distance (m)
* - \f$ L \f$ : system loss (unit-less)
*
* This model is obviously valid only when \f$ d \gg \frac{2 a^2}{\lambda} \f$
* which means that the model is invalid for small distance values.
* The current implementation rejects any distance smaller than
* \valueref{FriisPropagationLossMinDistance}.
*/
class FriisPropagationLossModel : public PropagationLossModel
{