This question concerns fading channels in wireless communication, but its essence is still statistics and distributions, so I pose it here.
I want to generate (sample) complex-valued coefficients that model the wireless channel by taking into account a constant, a lognormal distribution (slow fading) and a Rayleigh distribution (fast fading).
I begin with a small example considering only the constant and Rayleigh fading. Let $P$ be the average received power representing the constant. Then, channel coefficients distribute as
$$A=\sqrt{\frac{P}{2}}(V+iW)$$
where $V,W\sim \mathcal{CN}(0,1)$. This means that the channel envelope $|A|$ is Rayleigh distributed since $\sqrt{V^2+W^2}$ is essentially a Rayleigh random variable. Note that the average received power is still $P$ since
$$\mathbb{E}\left[|A|^2\right]=\frac{P}{2}\mathbb{E}\left[(V^2+W^2)\right]=P$$
Now to the real question. I wish to include also the slow fading part into the expression above. In dB scale the mean and standard deviation of the slow fading is given to be $\mu_{dB}=0$ dB and $\sigma_{dB}=5$ dB, respectively. I believe the new expression can be written as
$$A=\sqrt{\frac{P\cdot X}{2}}(V+iW)$$
where $X=e^{Y}=e^{(\mu_{dB}+\sigma_{dB}Z)/10}=e^{\sigma_{dB}Z/10}$ and $Z\sim \mathcal{CN}(0,1)$.
Is this correct? The average receiver power should still be $P$.
Remark 1: Is it paramount that the base for the lognormally distributed random variables is $e$ as in $X=e^{Y}$? Can't the base be $10$ and $X$ still be lognormally distributed?
Remark 2: Assume that $P'=10\log(P)+\sigma_{dB}Z$, where $Z$ is as before. Is it then equivalent to the proposed expression above to generate the coeffcients as the following?
$$A=\sqrt{\frac{10^{P'/10}}{2}}(V+iW)$$
$$A=\sqrt{\frac{P\cdot X}{2\cdot \mathbb{E}[X] }}(V+iW)$$
– index Sep 20 '16 at 20:50