More updates to the wire dipole example.

这个提交包含在:
craig-warren
2016-01-08 19:21:29 +00:00
父节点 0022867287
当前提交 d3f6b327f1
共有 3 个文件被更改,包括 6 次插入4 次删除

查看文件

@@ -7,6 +7,8 @@ This section provides some example models of antennas. Each example comes with a
Wire dipole antenna model Wire dipole antenna model
========================= =========================
**INFO ON THIS MODEL IN PROGRESS**
:download:`antenna_wire_dipole_fs.in <../../user_models/antenna_wire_dipole_fs.in>` :download:`antenna_wire_dipole_fs.in <../../user_models/antenna_wire_dipole_fs.in>`
This example demonstrates a model of a half-wavelength wire dipole antenna in free space. The length of the dipole is 150mm with a diameter of 6mm, and a 1mm gap between the arms. This example demonstrates a model of a half-wavelength wire dipole antenna in free space. The length of the dipole is 150mm with a diameter of 6mm, and a 1mm gap between the arms.
@@ -20,7 +22,7 @@ This example demonstrates a model of a half-wavelength wire dipole antenna in fr
FDTD geometry mesh showing a wire dipole antenna model. FDTD geometry mesh showing a wire dipole antenna model.
The antenna is fed using the ``#tranmission_line`` command. The one-dimensional transmission line model virtually attaches to the dipole at the gap between the arms. The antenna has an input impedance :math:`Z_0` of 73 Ohms specified in the ``#tranmission_line`` command. The transmission line uses a Gaussian waveform with a centre frequency of 1GHz. The antenna is fed using the ``#tranmission_line`` command. The one-dimensional transmission line model virtually attaches to the dipole at the gap between the arms. The antenna has an input impedance (:math:`Z_0`) of 73 Ohms specified in the ``#tranmission_line`` command. The transmission line uses a Gaussian waveform with a centre frequency of 1GHz.
Results Results
------- -------
@@ -33,7 +35,7 @@ Results
.. _antenna_wire_dipole_fs_ant_params: .. _antenna_wire_dipole_fs_ant_params:
.. figure:: images/antenna_wire_dipole_fs_ant_params.png .. figure:: images/antenna_wire_dipole_fs_ant_params.png
s11 parameter and input impedance (resistance and reactance) of the antenna. s11 parameter and input impedance (resistance and reactance) of the antenna.

二进制文件未显示。

之前

宽度:  |  高度:  |  大小: 146 KiB

之后

宽度:  |  高度:  |  大小: 144 KiB

查看文件

@@ -110,7 +110,7 @@ ax4.grid()
# Plot frequency spectra of s11 # Plot frequency spectra of s11
fig2, ax = plt.subplots(num='Antenna parameters', figsize=(20, 10), facecolor='w', edgecolor='w') fig2, ax = plt.subplots(num='Antenna parameters', figsize=(20, 10), facecolor='w', edgecolor='w')
gs2 = gridspec.GridSpec(3, 1, hspace=0.5) gs2 = gridspec.GridSpec(2, 2, hspace=0.3)
ax5 = plt.subplot(gs2[0, 0]) ax5 = plt.subplot(gs2[0, 0])
markerline, stemlines, baseline = ax5.stem(freqs[pltrange]/1e9, s11[pltrange], '-.') markerline, stemlines, baseline = ax5.stem(freqs[pltrange]/1e9, s11[pltrange], '-.')
plt.setp(baseline, 'linewidth', 0) plt.setp(baseline, 'linewidth', 0)
@@ -136,7 +136,7 @@ ax6.set_ylim(bottom=0)
ax6.grid() ax6.grid()
# Plot input reactance (imaginery part of impedance) # Plot input reactance (imaginery part of impedance)
ax7 = plt.subplot(gs2[2, 0]) ax7 = plt.subplot(gs2[1, 1])
markerline, stemlines, baseline = ax7.stem(freqs[pltrange]/1e9, zin[pltrange].imag, '-.') markerline, stemlines, baseline = ax7.stem(freqs[pltrange]/1e9, zin[pltrange].imag, '-.')
plt.setp(baseline, 'linewidth', 0) plt.setp(baseline, 'linewidth', 0)
plt.setp(stemlines, 'color', 'r') plt.setp(stemlines, 'color', 'r')