I'm trying to theoretically analyze the resulting field strength, R, from two devices with given field strengths (say r0 and r1), both represented in dBuV/m.
My first intuition was to use
R = 20*log( 10^(r0/20) + 10^(r1/20) )
But now, I'm starting to think that maybe I should use
R = 10*log( 10^(r0/20)^2 + 10^(r1/20)^2 )
, since if I were to first convert the dBuV/m to V/m I would have to sum them using (v0^2+v1^2) right?
To sum the question.
How to sum two field strengths given in dBuV/m?
EDIT (after answer by @Andy aka ): Is below then the correct computation for resulting field strenght in dBuV/m? r, R in [dBuV/m] v, V in [V/m].
Given (1), (2) and (3)
(1) \begin{equation} v = 10^{( (r - 120) / 20)} \end{equation} (2) \begin{equation} r = 20*log(V) + 120 \end{equation} (3) \begin{equation} V = \sqrt[]{v_0^2 + v_1^2} \end{equation} Gives (4).
(4) \begin{equation} R = 20*log(V) + 120 = 20*log(\sqrt[]{v_0^2 + v_1^2}) + 120 = \\ 10*log((10^{( (r_0 - 120) / 20)})^2 + (10^{( (r_1 - 120) / 20)})^2) + 120 = \\ 10*log((10^{(r_0 - 120) / 10)} + 10^{( (r_1 - 120) / 10)}) + 120 = \\ 10*log(10^{r_0 / 10} + 10^{ r_1 / 10}) \end{equation}