|
|
| 87 |
*/ |
87 |
*/ |
| 88 |
void SetTxPower (double value); |
88 |
void SetTxPower (double value); |
| 89 |
/** |
89 |
/** |
| 90 |
* \brief Configure reference signal power function |
90 |
* \brief Configure reference signal power (dBm) function |
| 91 |
* |
91 |
* |
| 92 |
* \param referenceSignalPower the reference signal power |
92 |
* \param referenceSignalPower the reference signal power |
| 93 |
*/ |
93 |
*/ |
|
|
| 128 |
/** |
128 |
/** |
| 129 |
* \brief Set RSRP function |
129 |
* \brief Set RSRP function |
| 130 |
* |
130 |
* |
| 131 |
* \param value the RSRP value to set |
131 |
* \param value the RSRP (dBm) value to set |
| 132 |
*/ |
132 |
*/ |
| 133 |
void SetRsrp (double value); |
133 |
void SetRsrp (double value); |
| 134 |
/** |
134 |
/** |
| 135 |
* \brief Set RSRP function |
135 |
* \brief Set RSRP function |
| 136 |
* |
136 |
* |
|
|
137 |
* \param rsrpFilterCoefficient value. Determines the strength of |
| 138 |
* smoothing effect induced by layer 3 filtering of RSRP |
| 139 |
* used for uplink power control in all attached UE. |
| 140 |
* If equals to 0, no layer 3 filtering is applicable. |
| 141 |
*/ |
| 142 |
void SetRsrpFilterCoefficient (uint8_t rsrpFilterCoefficient); |
| 143 |
/** |
| 144 |
* \brief Set RSRP function |
| 145 |
* |
| 137 |
* \param tpc the TPC to report |
146 |
* \param tpc the TPC to report |
| 138 |
*/ |
147 |
*/ |
| 139 |
void ReportTpc (uint8_t tpc); |
148 |
void ReportTpc (uint8_t tpc); |
|
|
| 193 |
double m_curPucchTxPower; ///< current PUCCH transmit power |
202 |
double m_curPucchTxPower; ///< current PUCCH transmit power |
| 194 |
double m_curSrsTxPower; ///< current SRS transmit power |
203 |
double m_curSrsTxPower; ///< current SRS transmit power |
| 195 |
|
204 |
|
| 196 |
double m_referenceSignalPower; ///< reference signal power |
205 |
double m_referenceSignalPower; ///< reference signal power in dBm |
| 197 |
bool m_rsrpSet; ///< is RSRP set? |
206 |
bool m_rsrpSet; ///< is RSRP set? |
| 198 |
double m_rsrp; ///< RSRP value |
207 |
double m_rsrp; ///< RSRP value in dBm |
| 199 |
|
208 |
|
| 200 |
std::vector<int16_t> m_PoNominalPusch; ///< PO nominal PUSCH |
209 |
std::vector<int16_t> m_PoNominalPusch; ///< PO nominal PUSCH |
| 201 |
std::vector<int16_t> m_PoUePusch; ///< PO US PUSCH |
210 |
std::vector<int16_t> m_PoUePusch; ///< PO US PUSCH |
|
|
| 204 |
|
213 |
|
| 205 |
uint16_t m_M_Pusch; ///< size of DL RB list |
214 |
uint16_t m_M_Pusch; ///< size of DL RB list |
| 206 |
std::vector<double> m_alpha; ///< alpha values |
215 |
std::vector<double> m_alpha; ///< alpha values |
| 207 |
double m_pathLoss; ///< path loss value |
216 |
double m_pathLoss; ///< path loss value in dB |
| 208 |
double m_deltaTF; ///< delta TF |
217 |
double m_deltaTF; ///< delta TF |
| 209 |
|
218 |
|
| 210 |
std::vector<int8_t> m_deltaPusch; ///< delta PUSCH |
219 |
std::vector<int8_t> m_deltaPusch; ///< delta PUSCH |
|
|
| 218 |
uint16_t m_cellId; ///< cell ID |
227 |
uint16_t m_cellId; ///< cell ID |
| 219 |
uint16_t m_rnti; ///< RNTI |
228 |
uint16_t m_rnti; ///< RNTI |
| 220 |
/** |
229 |
/** |
|
|
230 |
* The `RsrpFilterCoefficient` attribute. Determines the strength of |
| 231 |
* smoothing effect induced by layer 3 filtering of RSRP in all attached UE. |
| 232 |
* If equals to 0, no layer 3 filtering is applicable. |
| 233 |
*/ |
| 234 |
uint8_t m_pcRsrpFilterCoefficient; |
| 235 |
/** |
| 221 |
* Trace information regarding Uplink TxPower |
236 |
* Trace information regarding Uplink TxPower |
| 222 |
* uint16_t cellId, uint16_t rnti, double txPower |
237 |
* uint16_t cellId, uint16_t rnti, double txPower |
| 223 |
*/ |
238 |
*/ |