How much should fc bandwidth be over-estimated for SetGaussExcite?
#165
-
|
The 2-meter band that I am targeting for antenna design has a 4 MHz bandwidth available in my license class. Example: f0 = 146e6
fc = 2e6
...
FDTD.SetGaussExcite( f0, fc )Questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
f0 defines the center frequency of the spectrum created by the exciation pulse, and fc defines the frequency offset where energy is 20dB down from the maximum (at f0). Rule of thumb: for S-parameter results in FDTD we want the frequencies of interest within the -20dB bandwidth. Note that fc is the offset for -20dB, so the total -20dB bandwidth around f0 is 2*fc
In my antenna simulation, I use excitations that are much wider than the actual antenna bandwidth. We can always limit the plotted frequency range to values less than the excitation bandwidth. This is an FFT postprocessing step, so we can even re-run that part without repeating the FDTD simulation, to try different plot ranges. Having an excitation with large bandwidth means we get reflection across a wide frequency range, but that doesn't hurt us because the reflected signal is properly absorbed by the port. One reason why I don't choose very narrow excitation bandwidth is the time response of the excitation signal: smaller relative bandwidth means a wider pulse package for the excitation signal, at a given simulation timestep. Below is an example, note the different time axis. Of course, multi-path reflections inside the model will cause time signals at the ports that last longer than the initial excitation pulse, but my understanding and experience is that a very stretched excitation pulse (small fc/f0 ratio) will take more timesteps until the simulation is converged. |
Beta Was this translation helpful? Give feedback.












f0 defines the center frequency of the spectrum created by the exciation pulse, and fc defines the frequency offset where energy is 20dB down from the maximum (at f0).
Rule of thumb: for S-parameter results in FDTD we want the frequencies of interest within the -20dB bandwidth. Note that fc is the offset for -20dB, so the total -20dB bandwidth around f0 is 2*fc
In my antenna simulation, I u…