Miscellaneous circuits
In the circuit shown below, $V_s=50\,$V, $L=10\,$mH, $R=5\,\Omega$. The switch $S$ is driven by a clock with frequency $f=10\,$kHz and duty ratio $D=0.5$. Find $E_b$ above which the inductor current (in steady state) becomes discontinuous.In [1]:
from IPython.display import Image
Image(filename =r'misc_2_fig_1.png', width=350)
Out[1]:
In [2]:
# run this cell to view the circuit file.
%pycat misc_2_orig.in
We now replace the strings \$Vin, \$L, \$R, \$D, \$f_hz with the values of our choice by running the python script given below. It takes an existing circuit file misc_2_orig.in and produces a new circuit file misc_2.in, after replacing \$L, \$R, \$D, \$f_hz with the values of our choice.
In [3]:
import gseim_calc as calc
s_Vin = '50'
s_Eb = '60' # to be changed by user
s_L = '10e-3'
s_R = '5'
s_D = '0.5'
s_f_hz = '10e3'
l = [
('$Vin', s_Vin),
('$Eb', s_Eb),
('$L', s_L),
('$R', s_R),
('$D', s_D),
('$f_hz', s_f_hz),
]
calc.replace_strings_1("misc_2_orig.in", "misc_2.in", l)
print('misc_2.in is ready for execution')
misc_2.in is ready for execution
Execute the following cell to run GSEIM on misc_2.in.
In [4]:
import os
import dos_unix
# uncomment for windows:
#dos_unix.d2u("misc_2.in")
os.system('run_gseim misc_2.in')
get_lib_elements: filename gseim_aux/xbe.aux get_lib_elements: filename gseim_aux/ebe.aux Circuit: filename = misc_2.in Circuit: n_xbeu_vr = 1 Circuit: n_ebeu_nd = 5 main: i_solve = 0 ssw_allocate_1 (2): n_statevar=1 main: calling solve_trns mat_ssw_1_ex: n_statevar: 1 mat_ssw_1_e0: cct.n_ebeu: 6 Transient simulation starts... i=0 i=1000 solve_ssw_ex: ssw_iter_newton=0, rhs_ssw_norm=3.7347e-01 Transient simulation starts... i=0 i=1000 solve_ssw_ex: ssw_iter_newton=1, rhs_ssw_norm=4.8850e-15 solve_ssw_ex: calling solve_ssw_1_ex for one more trns step Transient simulation starts... i=0 i=1000 solve_ssw_1_ex over (after trns step for output) solve_ssw_ex ends, slv.ssw_iter_newton=1 GSEIM: Program completed.
Out[4]:
0
The circuit file (misc_2.in) is created in the same directory as that used for launching Jupyter notebook. The last step (i.e., running GSEIM on misc_2.in) creates a data file misc_2.dat in the same directory. We can now use the python code below to view the inductor current as a function of time.
In [5]:
import numpy as np
import matplotlib.pyplot as plt
import gseim_calc as calc
from setsize import set_size
slv = calc.slv("misc_2.in")
i_slv = 0
i_out = 0
filename = slv.l_filename_all[i_slv][i_out]
print('filename:', filename)
u = np.loadtxt(filename)
t = u[:, 0]
col_IL = slv.get_index(i_slv,i_out,"IL")
col_IS = slv.get_index(i_slv,i_out,"IS")
col_ID = slv.get_index(i_slv,i_out,"ID")
col_clock = slv.get_index(i_slv,i_out,"clock")
# since we have stored two cycles, we need to divide the last time point
# by 2 to get the period:
T = t[-1]/2
l_IL = calc.avg_rms_2(t, u[:,col_IL], 0.0, 2.0*T, 1.0e-3*T)
l_IS = calc.avg_rms_2(t, u[:,col_IS], 0.0, 2.0*T, 1.0e-3*T)
l_ID = calc.avg_rms_2(t, u[:,col_ID], 0.0, 2.0*T, 1.0e-3*T)
t_IL = np.array(l_IL[0])
t_IS = np.array(l_IS[0])
t_ID = np.array(l_ID[0])
print('average switch current:' , "%11.4E"%l_IS[1][0])
print('average diode current:' , "%11.4E"%l_ID[1][0])
print('average inductor current:', "%11.4E"%l_IL[1][0])
print('rms inductor current:' , "%11.4E"%l_IL[2][0])
l1 = calc.min_max_1(t, u[:,col_IL], 0.0, 2.0*T)
IL_ptop = l1[1] - l1[0]
print('IL_ptop:', "%11.4E"%IL_ptop)
l2 = calc.min_max_1(t, u[:,col_ID], 0.0, 2.0*T)
print('max ID:', "%11.4E"%l2[1])
fig, ax = plt.subplots(4, sharex=False)
plt.subplots_adjust(wspace=0, hspace=0.0)
set_size(6.5, 6, ax[0])
for i in range(4):
ax[i].set_xlim(left=0.0, right=2.0*T*1e6)
ax[i].grid(color='#CCCCCC', linestyle='solid', linewidth=0.5)
for i in range(3):
ax[i].tick_params(labelbottom=False)
ax[0].set_ylabel(r'clock', fontsize=12)
ax[1].set_ylabel(r'$i_L$', fontsize=12)
ax[2].set_ylabel(r'$i_D$', fontsize=12)
ax[3].set_ylabel(r'$i_S$', fontsize=12)
ax[0].set_ylim(bottom=-0.2, top=1.2)
ax[0].set_yticks([0.0, 1.0])
color1 = "blue"
color2 = "tomato"
color3 = "dodgerblue"
color4 = "olive"
color5 = "green"
color6 = "red"
color7 = "darkcyan"
ax[0].plot(t*1e6, u[:,col_clock], color=color1, linewidth=1.0, label="clock")
ax[1].plot(t*1e6, u[:,col_IL], color=color2, linewidth=1.0, label="$i_L$")
ax[1].plot(t_IL*1e6, l_IL[1] , color=color2, linewidth=1.0, label="$i_L^{avg}$", linestyle='--', dashes=(5,3))
ax[2].plot(t*1e6, u[:,col_ID], color=color4, linewidth=1.0, label="$i_D$")
ax[2].plot(t_ID*1e6, l_ID[1] , color=color4, linewidth=1.0, label="$i_D^{avg}$", linestyle='--', dashes=(5,3))
ax[3].plot(t*1e6, u[:,col_IS], color=color5, linewidth=1.0, label="$i_S$")
ax[3].plot(t_IS*1e6, l_IS[1] , color=color5, linewidth=1.0, label="$i_S^{avg}$", linestyle='--', dashes=(5,3))
ax[3].set_xlabel(r'time ($\mu$sec)', fontsize=12)
for i in range(1,4):
ax[i].legend(loc = 'lower right',frameon = True, fontsize = 10, title = None,
markerfirst = True, markerscale = 1.0, labelspacing = 0.5, columnspacing = 2.0,
prop = {'size' : 12})
#plt.tight_layout()
plt.show()
filename: misc_2.dat average switch current: 1.9999E+00 average diode current: 1.9997E+00 average inductor current: 3.9996E+00 rms inductor current: 3.9999E+00 IL_ptop: 1.4999E-01 max ID: 4.0746E+00
This notebook was contributed by Prof. Nakul Narayanan K, Govt. Engineering College, Thrissur. He may be contacted at nakul@gectcr.ac.in.
In [ ]: