Antenna Efficiency Including Mismatch #179
-
|
Hi, I'm trying out the inverted_f.m example file, and I wanted to calculate efficiency at a given frequency rather than only at resonance. The efficiency calculation in the script is: To calculate radiated power I added a second frequency into the call to CalcNF2FF so that that nf2ff.Prad will be a 2-element vector. I can use the first element of nf2ff.Prad for the resonance efficiency calculation and the second for the fixed frequency calc. Then for the input power I can pass the index of the frequency of interest, f_test_ind. So my calculation will be: The problem is I get ~99% efficiency no matter what frequency I specify - that can't be right since the input match is poor at the test frequency (say 2 GHz). I notice that P_in itself varies across frequency and peaks at the resonance frequency, so it seems this is the power that gets into the antenna. How can I find the input power to the port, so I can calculate the true efficiency including mismatch loss? And a follow-up question, apologies if I'm ignorant of basic theory: Does it make sense that the antenna is 99% efficient at any frequency if mismatch is ignored? Doesn't the structure of the antenna affect radiation efficiency itself? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
@FolkSong Mismatch will reduce the power accepted by the antenna, so that it is less than available power for matched load. However, mismatch has no effect on radiation efficiency, because that is calculated as total radiated power divided by power accepted by the antenna. Radiation efficiency is less than 100% if there is loss (dissipation) inside the antenna, e.g. conductor loss or substrate loss. There is some substrate loss included in the PIFA example, but that is rather small with tand=0.001. Testcase to show effect of mismatch and lossTo test and show the various calculations for directivity, gain and realized gain I have created a patch antenna example. This antenna has ~50% radiation efficiency and also some mismatch loss. The model below is the Matlab/Octave version of the patch antenna testcase for Python that I posted in another thread. For simplicity, I only used the plotFFdB() for the pattern, which shows directivity only. The gain and realized gain calculations are only done for the peak value, and not shown for the angle sweep |
Beta Was this translation helpful? Give feedback.
-
|
One follow up question if you don't mind, on general antenna design: Is there any downside to just optimizing the design for radiation efficiency and then using discrete components to correct mismatch? |
Beta Was this translation helpful? Give feedback.

@FolkSong Mismatch will reduce the power accepted by the antenna, so that it is less than available power for matched load. However, mismatch has no effect on radiation efficiency, because that is calculated as total radiated power divided by power accepted by the antenna.
Radiation efficiency is less than 100% if there is loss (dissipation) inside the antenna, e.g. conductor loss or substrate loss. There is some substrate loss included in the PIFA example, but that is rather small with tand=0.001.
Testcase to show effect …