Finalised wire dipole example model and results.

这个提交包含在:
Craig Warren
2016-01-13 12:21:57 +00:00
父节点 0e4bb43142
当前提交 6be9473126
共有 3 个文件被更改,包括 18 次插入4 次删除

查看文件

@@ -229,6 +229,8 @@ ax.plot(freqs[pltrange]/1e9, s11[pltrange], 'g', lw=2)
ax.set_title('s11')
ax.set_xlabel('Frequency [GHz]')
ax.set_ylabel('Power [dB]')
#ax.set_xlim([0.88, 1.02])
#ax.set_ylim([-20, -8])
ax.grid()
# Plot input resistance (real part of impedance)
@@ -241,7 +243,8 @@ ax.plot(freqs[pltrange]/1e9, np.abs(zin[pltrange]), 'g', lw=2)
ax.set_title('Input impedance (resistive)')
ax.set_xlabel('Frequency [GHz]')
ax.set_ylabel('Resistance [Ohms]')
ax.set_ylim([0, 2000])
#ax.set_xlim([0.88, 1.02])
#ax.set_ylim([65, 105])
ax.grid()
# Plot input reactance (imaginery part of impedance)
@@ -254,7 +257,8 @@ ax.plot(freqs[pltrange]/1e9, zin[pltrange].imag, 'g', lw=2)
ax.set_title('Input impedance (reactive)')
ax.set_xlabel('Frequency [GHz]')
ax.set_ylabel('Reactance [Ohms]')
ax.set_ylim(-2000, 2000)
#ax.set_xlim([0.88, 1.02])
#ax.set_ylim([-60, 60])
ax.grid()
# Plot input admittance (magnitude)
@@ -267,6 +271,8 @@ ax.plot(freqs[pltrange]/1e9, np.abs(yin[pltrange]), 'g', lw=2)
ax.set_title('Input admittance (magnitude)')
ax.set_xlabel('Frequency [GHz]')
ax.set_ylabel('Admittance [Siemens]')
#ax.set_xlim([0.88, 1.02])
#ax.set_ylim([0.009, 0.015])
ax.grid()
# Plot input admittance (phase)
@@ -279,6 +285,8 @@ ax.plot(freqs[pltrange]/1e9, np.angle(yin[pltrange], deg=True), 'g', lw=2)
ax.set_title('Input admittance (phase)')
ax.set_xlabel('Frequency [GHz]')
ax.set_ylabel('Phase [degrees]')
#ax.set_xlim([0.88, 1.02])
#ax.set_ylim([-45, 45])
ax.grid()
plt.show()