building: doxygen tweaks

This commit is contained in:
Tommaso Pecorella
2022-01-07 23:58:20 -06:00
parent 762494924e
commit 8853f7ee14
2 changed files with 11 additions and 16 deletions

View File

@@ -137,18 +137,18 @@ protected:
/// Map of the shadowng loss
mutable std::map<Ptr<MobilityModel>, std::map<Ptr<MobilityModel>, ShadowingLoss> > m_shadowingLossMap;
/**
* Caluculate the Standard deviation of the normal distribution used for calculate the shadowing
* Calculate the Standard deviation of the normal distribution used to calculate the shadowing
* \param a Room A data
* \param b Room B data
* \return the Standard deviation of the normal distribution
*/
double EvaluateSigma (Ptr<MobilityBuildingInfo> a, Ptr<MobilityBuildingInfo> b) const;
/// Standard deviation of the normal distribution used for calculate the shadowing due to ext walls
/// Standard deviation of the normal distribution used to calculate the shadowing due to ext walls
double m_shadowingSigmaExtWalls;
/// Standard deviation of the normal distribution used for calculate the shadowing for outdoor nodes
/// Standard deviation of the normal distribution used to calculate the shadowing for outdoor nodes
double m_shadowingSigmaOutdoor;
/// Standard deviation of the normal distribution used for calculate the shadowing for indoor nodes
/// Standard deviation of the normal distribution used to calculate the shadowing for indoor nodes
double m_shadowingSigmaIndoor;
Ptr<NormalRandomVariable> m_randVariable; //!< Random variable

View File

@@ -107,31 +107,26 @@ public:
private:
/**
* Compute the path loss using either OkumuraHataPropagationLossModel
* or Kun2600MhzPropagationLossModel
*
* @{
* \param a the mobility model of the source
* \param b the mobility model of the destination
* \returns the propagation loss (in dBm)
*/
/**
* Compute the path loss using either OkumuraHataPropagationLossModel
* or Kun2600MhzPropagationLossModel
*/
double OkumuraHata (Ptr<MobilityModel> a, Ptr<MobilityModel> b) const;
/**
* Compute the path loss using either ItuR1411LosPropagationLossModelor
* Compute the path loss using either ItuR1411LosPropagationLossModel or
* ItuR1411NlosOverRooftopPropagationLossModel
*
* \param a the mobility model of the source
* \param b the mobility model of the destination
* \returns the propagation loss (in dBm)
*/
double ItuR1411 (Ptr<MobilityModel> a, Ptr<MobilityModel> b) const;
/**
* Compute the path loss using ItuR1238PropagationLossModel
*
* \param a the mobility model of the source
* \param b the mobility model of the destination
* \returns the propagation loss (in dBm)
*/
double ItuR1238 (Ptr<MobilityModel> a, Ptr<MobilityModel> b) const;
/** @} */
/// OkumuraHataPropagationLossModel
Ptr<OkumuraHataPropagationLossModel> m_okumuraHata;