Browse Source

Work on band elimination report unit implementation part, Add half power freq transformation

master
Apostolos Fanakis 6 years ago
parent
commit
d79f7e4fd2
  1. 28
      Band Elimination Chebyshev/band_elimination_design.m
  2. 568
      report/3_band_elimination/3_band_elimination_design.pug
  3. 125
      report/3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_1_zero_pole_grouping.svg
  4. 115
      report/3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_2_zero_pole_grouping.svg
  5. 115
      report/3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_3_zero_pole_grouping.svg
  6. 115
      report/3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_4_zero_pole_grouping.svg
  7. 25
      report/3_band_elimination/assets/diagrams/band_elimination_unit_1_block_diagram.svg
  8. 23
      report/3_band_elimination/assets/diagrams/band_elimination_unit_2_block_diagram.svg
  9. 23
      report/3_band_elimination/assets/diagrams/band_elimination_unit_3_block_diagram.svg
  10. 23
      report/3_band_elimination/assets/diagrams/band_elimination_unit_4_block_diagram.svg
  11. 688
      report/3_band_elimination/assets/diagrams/multisim_band_elimination_chebyshev_circuit_layout_only_filter.svg

28
Band Elimination Chebyshev/band_elimination_design.m

@ -132,11 +132,19 @@ epsilon_parameter = sqrt(10^(specification_max_pass_attenuation/10)-1);
% Calculates alpha parameter using the eq. 9-92
alpha_parameter = asinh(1/epsilon_parameter)/design_filter_order;
% Calculates the frequency at which half power occurs using the eq. 9-80
% TODO: denormalize!! ====================%%%%%%%%%%%%%%%%%%%%%%%%============================
design_half_power_radial_frequency = cosh(acosh(( ...
10^(specification_max_pass_attenuation/10)-1)^(-1/2))/ ...
% Calculates the frequency at which half power for the prototype low pass
% filter occurs using the eq. 9-80
temp_low_pass_half_power_radial_frequency = cosh(acosh(1/epsilon_parameter)/ ...
design_filter_order); % rad/s
% Calculates the frequency at which half power for the band pass filter
% occurs using the transformation eq. 13-4
design_half_power_radial_frequency = zeros([1 2]);
temp_polynomial = [1 ...
design_filter_bandwidth /temp_low_pass_half_power_radial_frequency ...
-design_geometric_central_radial_frequency^2];
temp_roots = roots(temp_polynomial);
design_half_power_radial_frequency(1,1) = abs(temp_roots(1));
design_half_power_radial_frequency(1,2) = abs(temp_roots(2));
% -----
% Calculates stable poles, zeros, angles and other characteristic sizes
@ -238,12 +246,13 @@ fprintf(['\n' '===== PROTOTYPE LOW PASS DESIGN =====' '\n' ...
'Filter order ceiling = %d\n' ...
'Epsilon parameter = %.3f\n' ...
'Alpha parameter = %.3f\n' ...
'Radial frequency at which half power occurs = %.3frad/s\n' ...
'Radial frequencies at which half power occurs = %.3frad/s, %.3frad/s\n' ...
'Butterworth angles are ' char(177) '%.2f' char(176) ' and ' ...
char(177) '%.2f' char(176) '\n'], ...
temp_filter_order, design_filter_order, ...
epsilon_parameter, alpha_parameter, ...
design_half_power_radial_frequency, design_butterworth_angles(1,1), ...
design_half_power_radial_frequency(1,1), ...
design_half_power_radial_frequency(1,2), design_butterworth_angles(1,1), ...
design_butterworth_angles(1,2));
fprintf('\nLow pass Chebyshev poles found:\n');
@ -258,9 +267,10 @@ end
% Clears unneeded variables from workspace
clearVars = {'prototype_normalized_stop_radial_frequency', ...
'epsilon_parameter', 'alpha_parameter', 'theta', 'temp_filter_order'};
'epsilon_parameter', 'alpha_parameter', 'theta'};
clear(clearVars{:})
clear clearVars
clear -regexp ^temp_
% ========== PROTOTYPE LOW PASS DESIGN END ==========
@ -834,7 +844,7 @@ ltiview(unit_transfer_function(1,1), unit_transfer_function(1,2), ...
unit_transfer_function(1,3), unit_transfer_function(1,4), ...
total_transfer_function);
%}
%{
hold off
sampling_time_seconds = 60; % s
@ -884,7 +894,7 @@ Pyy = system_output_fft.*conj(system_output_fft)/sampling_length_L;
figure(3)
semilogx(frequency_vector,Pyy(1:sampling_length_L/2+1))
grid on
%}
% Clears unneeded variables from workspace
clearVars = {'temp', 'Pyy', 'frequency_vector', 'i' ...
'system_output', 'total_transfer_function', 'system_output_fft'};

568
report/3_band_elimination/3_band_elimination_design.pug

@ -229,23 +229,34 @@ p.
figure.block-center
.ui.grid
.two.wide.column
.three.wide.column
.four.wide.column
.row
img(src="1_low_pass/assets/diagrams/inverse_chebyshev_unit_1_zero_pole_grouping.svg")/
img(src="3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_1_zero_pole_grouping.svg")/
.row.top-7mm
img(src="1_low_pass/assets/diagrams/low_pass_notch_unit_diagram.svg")/
img(src="3_band_elimination/assets/diagrams/band_elimination_unit_1_block_diagram.svg")/
.row.top-5mm
p.center #[strong Unit 1]
.six.wide.column
.three.wide.column
.four.wide.column
.row
img(src="1_low_pass/assets/diagrams/inverse_chebyshev_unit_2_zero_pole_grouping.svg")/
img(src="3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_2_zero_pole_grouping.svg")/
.row.top-7mm
img(src="1_low_pass/assets/diagrams/low_pass_notch_unit_diagram.svg")/
img(src="3_band_elimination/assets/diagrams/band_elimination_unit_2_block_diagram.svg")/
.row.top-5mm
p.center #[strong Unit 2]
.two.wide.column
.four.wide.column
.row
img(src="3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_3_zero_pole_grouping.svg")/
.row.top-7mm
img(src="3_band_elimination/assets/diagrams/band_elimination_unit_3_block_diagram.svg")/
.row.top-5mm
p.center #[strong Unit 3]
.four.wide.column
.row
img(src="3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_4_zero_pole_grouping.svg")/
.row.top-7mm
img(src="3_band_elimination/assets/diagrams/band_elimination_unit_4_block_diagram.svg")/
.row.top-5mm
p.center #[strong Unit 4]
figcaption
.reference #[span.plot-count]
.caption.
@ -256,6 +267,530 @@ h4 Υλοποίηση συνάρτησης μεταφοράς
p.
Από τον αριθμό ΑΕΜ (8261) υποδεικνύεται η χρήση των κυκλωμάτων high pass notch και low pass notch του κεφαλαίου 7, με χρήση των κυκλωμάτων των σχημάτων 7.21 και 7.23.
h5 Μονάδα 1
p Η πρώτη μονάδα μονάδα του φίλτρου είναι το πρώτο από τα δύο high pass notch δεύτερης τάξης που πρέπει να υλοποιηθούν. Για τη μονάδα ισχύουν:
figure.block-center.width-15cm
table.ui.celled.table.teal.striped.center.aligned
thead
tr
th Προδιαγραφή
th Τιμή
tbody
tr
td ω#[sub 0]
td 21505.945
tr
td ω#[sub Z]
td 15707.963
tr
td ω#[sub Z]<ω#[sub 0]
td #[i.large.teal.checkmark.icon]
tr
td Q
td 1.751
figcaption
.reference #[span.table-count]
.caption.
Προδιαγραφές μονάδας 1 (πρώτη μονάδα high pass notch)
p.
Γίνεται κανονικοποίηση των συχνοτήτων ως προς το ω#[sub 0], ώστε Ω#[sub 0]=1:
p.latex-equation.
$$\Omega_Z = \frac{\omega_Z}{\omega_0} = \frac{15707.963}{21505.945} = 0.7304<1$$
p.
Υπολογίζονται τα κέρδη και οι τιμές των στοιχείων του κυκλώματος του φίλτρου, με χρήση της μεθοδολογίας που περιγράφεται στο κεφάλαιο 7.6-B (σελίδα 35) και των εξισώσεων #[span.course-notes-equation 7-135] εώς και #[span.course-notes-equation 7-140]:
p.latex-equation.
$$k_1=\frac{\Omega_0^2}{\Omega_z^2}-1 = \frac{1}{0.7304^2}-1 = 0.8745$$
p.latex-equation.
$$k_2=\frac{(2+k_1)Q^2}{(2+k_1)Q^2+1} = \frac{(2+0.8745)1.751^2}{(2+0.8745)1.751^2+1} = 0.8981$$
p.latex-equation.
$$k=k_2\frac{\Omega_0^2}{\Omega_z^2} = 0.8981\frac{1}{0.7304^2} = 1.6835\hspace{1cm}\text{(Gain at high frequencies)}$$
p.latex-equation.
$$R_1 = 1\text{ Ohm}$$
p.latex-equation.
$$R_2 = Q^2(k_1+2)^2 = 1.751^2(0.8745+2)^2 = 25.3394\text{ Ohm}$$
p.latex-equation.
$$R_3 = 1\text{ Ohm}$$
p.latex-equation.
$$R_4 = Q^2(k_1+2) = 1.751^2(0.8745+2) = 8.8154\text{ Ohm}$$
p.latex-equation.
$$C = \frac{1}{Q(2+k_1)} = \frac{1}{1.751(2+0.8745)} = 0.1987\text{ F}$$
p.latex-equation.
$$C_1 = k_1C = 0.8745*0.1987 = 0.1737\text{ F}$$
p #[strong Κλιμακοποίηση]
p.
Γίνεται κλιμακoποίηση των στοιχείων της μονάδας για να μεταφερθούν οι συχνότητες στις πραγματικές τιμές. Επιλέγεται:
p.latex-equation.
$$k_{f} = \omega_0 = 21505.945$$
p.
Με βάση τον αριθμό ΑΕΜ (8261) επιλέγεται κατάλληλος συντελεστής κλιμακοποίησης πλάτους ώστε να επιτευχθεί τιμή πυκνωτών ίση με 0.1μF, γίνεται χρήση του τύπου #[span.course-notes-equation 6-33]:
p.latex-equation.
$$k_{m} = \frac{C_{old}}{k_fC_{new}} = \frac{0.1987}{21505.945*0.1*10^{-6}} = 92.3725$$
p Οι τελικές τιμές των στοιχείων φαίνονται στον παρακάτω πίνακα:
figure.block-center.width-15cm
table.ui.celled.table.teal.striped.center.aligned
thead
tr
th Στοιχείο/Κέρδος
th(colspan="2") Τιμή
tbody
tr
td C
td(colspan="2") 0,1 μF
tr
td C#[sub 1]
td(colspan="2") 0.08745 μF
tr
td R#[sub 1]
td(colspan="2") 92.3725 Ohm
tr
td R#[sub 2]
td(colspan="2") 2340.7 Ohm
tr
td R#[sub 3]
td(colspan="2") 92.3725 Ohm
tr
td R#[sub 4]
td(colspan="2") 814.2974 Ohm
tr
td Κέρδος στις υψηλές συχνότητες
td 1.6835
td 4.52 dB
figcaption
.reference #[span.table-count]
.caption.
Οι τιμές των στοιχείων της πρώτης μονάδας και το κέρδος στις υψηλές συχνότητες
p.
Η συνάρτηση μεταφοράς της μονάδας υπολογίζεται χρησιμοποιώντας τις εξισώσεις #[span.course-notes-equation 7-129], #[span.course-notes-equation 7-130] και #[span.course-notes-equation 7-131]:
p.latex-equation.
$$\begin{align*}
T_{BE}^1(s) &= k\frac{s^2+\frac{1}{(k_1+1)R_1R_2C^2}}{s^2+\frac{k_1+2}{R_2C}s+\frac{1}{R_1R_2C^2}} \\[3.5mm]
&=1.6835\frac{s^2+\frac{1}{(0.8745+1)*92.3725*2340.7*(0.1*10^{-6})^2}}{s^2+\frac{0.8745+2}{2340.7*0.1*10^{-6}}s+\frac{1}{92.6725*2340.7*(0.1*10^{-6})^2}} \\[3.5mm]
&=\frac{1.6835s^2+4.154*10^8}{s^2+12280.5s+4.625*10^8}
\end{align*}$$
h5 Μονάδα 2
p Η δεύτερη μονάδα μονάδα του φίλτρου είναι το πρώτο από τα δύο low pass notch δεύτερης τάξης που πρέπει να υλοποιηθούν. Για τη μονάδα ισχύουν:
figure.block-center.width-15cm
table.ui.celled.table.teal.striped.center.aligned
thead
tr
th Προδιαγραφή
th Τιμή
tbody
tr
td ω#[sub 0]
td 11473.112
tr
td ω#[sub Z]
td 15707.963
tr
td ω#[sub Z]>ω#[sub 0]
td #[i.large.teal.checkmark.icon]
tr
td Q
td 1.751
figcaption
.reference #[span.table-count]
.caption.
Προδιαγραφές μονάδας 2 (πρώτη μονάδα low pass notch)
p.
Γίνεται κανονικοποίηση των συχνοτήτων ως προς το ω#[sub 0], ώστε Ω#[sub 0]=1:
p.latex-equation.
$$\Omega_Z = \frac{\omega_Z}{\omega_0} = \frac{15707.963}{11473.112} = 1.3691>1$$
p.
Υπολογίζονται τα στοιχεία του κυκλώματος του φίλτρου, με χρήση της μεθοδολογίας που περιγράφεται στο κεφάλαιο 7.6-B (σελίδα 35) και των εξισώσεων #[span.course-notes-equation 7-150], #[span.course-notes-equation 7-152], #[span.course-notes-equation 7-155]:
p.latex-equation.
$$C = \frac{1}{2Q} = \frac{1}{2*1.751} = 0.2855\text{ F}$$
p.latex-equation.
$$R_2 = 4Q^2 = 4*1.751^2 = 12.2671\text{ Ohm}$$
p.latex-equation.
$$R_5 = \frac{4Q^2}{\Omega_Z^2-1} = \frac{4*1.751^2}{1.3691^2-1} = 14.0282\text{ Ohm}$$
p.latex-equation.
$$R_3 = \frac{\Omega_Z^2}{2Q^2} = \frac{1.3691^2}{2*1.751^2} = 0.3056\text{ Ohm}$$
p.latex-equation.
$$R_1 = R_4 = 1\text{ Ohm}$$
p.
Υπολογίζεται το κέρδος της μονάδας στις υψηλές συχνότητες, χρησιμοποιώντας την εξίσωση #[span.course-notes-equation 7-143]:
p.latex-equation.
$$k_{high} = \frac{R_4}{R_3+R_4} = \frac{1}{0.3056+1} = 0.7659$$
p.
Υπολογίζεται το κέρδος της μονάδας στις χαμηλές συχνότητες, χρησιμοποιώντας τις εξισώσεις #[span.course-notes-equation 7-146], #[span.course-notes-equation 7-147] και #[span.course-notes-equation 7-148], θέτοντας s=0:
p.latex-equation.
$$k_{low} = k_{high}\Omega_Z^2 = 0.7659*1.3691^2 = 1.4357$$
p #[strong Κλιμακοποίηση]
p.
Γίνεται κλιμακoποίηση των στοιχείων της μονάδας για να μεταφερθούν οι συχνότητες στις πραγματικές τιμές. Επιλέγεται:
p.latex-equation.
$$k_{f} = \omega_0 = 11473.112$$
p.
Με βάση τον αριθμό ΑΕΜ (8261) επιλέγεται κατάλληλος συντελεστής κλιμακοποίησης πλάτους ώστε να επιτευχθεί τιμή πυκνωτών ίση με 0.1μF, γίνεται χρήση του τύπου #[span.course-notes-equation 6-33]:
p.latex-equation.
$$k_{m} = \frac{C_{old}}{k_fC_{new}} = \frac{0.2855}{11473.112*0.1*10^{-6}} = 248.8555$$
p Οι τελικές τιμές των στοιχείων φαίνονται στον παρακάτω πίνακα:
figure.block-center.width-15cm
table.ui.celled.table.teal.striped.center.aligned
thead
tr
th Στοιχείο/Κέρδος
th(colspan="2") Τιμή
tbody
tr
td C
td(colspan="2") 0,1 μF
tr
td R#[sub 1]
td(colspan="2") 248.8555 Ohm
tr
td R#[sub 2]
td(colspan="2") 3052.7 Ohm
tr
td R#[sub 3]
td(colspan="2") 76.0521 Ohm
tr
td R#[sub 4]
td(colspan="2") 248.8555 Ohm
tr
td R#[sub 5]
td(colspan="2") 3491 Ohm
tr
td Κέρδος στις υψηλές συχνότητες
td 0.7659
td -2.316 dB
tr
td Κέρδος στις χαμηλές συχνότητες
td 1.4357
td 3.14 dB
figcaption
.reference #[span.table-count]
.caption.
Τιμές των στοιχείων της δεύτερης μονάδας και κέρδη στις υψηλές και χαμηλές συχνότητες
p.
Η συνάρτηση μεταφοράς της μονάδας υπολογίζεται χρησιμοποιώντας τις εξισώσεις #[span.course-notes-equation 7-146], #[span.course-notes-equation 7-147] και #[span.course-notes-equation 7-148]:
p.latex-equation.
$$\begin{align*}
T_{BE}^2(s) &= k_{high}\frac{s^2+\big[\frac{1}{R_1R_5C^2}+\frac{1}{R_1R_2C^2}\big]}{s^2+\frac{2}{R_2C}s+\frac{1}{R_1R_2C^2}}= \\[3.5mm]
&=0.7659\frac{s^2+\big[\frac{1}{248.8555*3491*(0.1*10^{-6})^2}+\frac{1}{248.8555*3052.7*(0.1*10^{-6})^2}\big]}{s^2+\frac{2}{3052.7*0.1*10^{-6}}s+\frac{1}{248.8555*3052.7*(0.1*10^{-6})^2}} = \\[3.5mm]
&=\frac{0.7659s^2+1.89*10^8}{s^2+6551s+1.316*10^8}
\end{align*}$$
h5 Μονάδα 3
p Η τρίτη μονάδα μονάδα του φίλτρου είναι το δεύτερο από τα δύο high pass notch δεύτερης τάξης που πρέπει να υλοποιηθούν. Για τη μονάδα ισχύουν:
figure.block-center.width-15cm
table.ui.celled.table.teal.striped.center.aligned
thead
tr
th Προδιαγραφή
th Τιμή
tbody
tr
td ω#[sub 0]
td 19957.291
tr
td ω#[sub Z]
td 15707.963
tr
td ω#[sub Z]<ω#[sub 0]
td #[i.large.teal.checkmark.icon]
tr
td Q
td 12.676
figcaption
.reference #[span.table-count]
.caption.
Προδιαγραφές μονάδας 3 (δεύτερη μονάδα high pass notch)
p.
Γίνεται κανονικοποίηση των συχνοτήτων ως προς το ω#[sub 0], ώστε Ω#[sub 0]=1:
p.latex-equation.
$$\Omega_Z = \frac{\omega_Z}{\omega_0} = \frac{15707.963}{19957.291} = 0.7871<1$$
p.
Υπολογίζονται τα κέρδη και οι τιμές των στοιχείων του κυκλώματος του φίλτρου, με χρήση της μεθοδολογίας που περιγράφεται στο κεφάλαιο 7.6-B (σελίδα 35) και των εξισώσεων #[span.course-notes-equation 7-135] εώς και #[span.course-notes-equation 7-140]:
p.latex-equation.
$$k_1=\frac{\Omega_0^2}{\Omega_z^2}-1 = \frac{1}{0.7871^2}-1 = 0.6142$$
p.latex-equation.
$$k_2=\frac{(2+k_1)Q^2}{(2+k_1)Q^2+1} = \frac{(2+0.6142)12.676^2}{(2+0.6142)12.676^2+1} = 0.9976$$
p.latex-equation.
$$k=k_2\frac{\Omega_0^2}{\Omega_z^2} = 0.9976\frac{1}{0.7871^2} = 1.6104\hspace{1cm}\text{(Gain at high frequencies)}$$
p.latex-equation.
$$R_1 = 1\text{ Ohm}$$
p.latex-equation.
$$R_2 = Q^2(k_1+2)^2 = 12.676^2(0.6142+2)^2 = 1098\text{ Ohm}$$
p.latex-equation.
$$R_3 = 1\text{ Ohm}$$
p.latex-equation.
$$R_4 = Q^2(k_1+2) = 12.676^2(0.6142+2) = 420.0291\text{ Ohm}$$
p.latex-equation.
$$C = \frac{1}{Q(2+k_1)} = \frac{1}{12.676(2+0.6142)} = 0.0302\text{ F}$$
p.latex-equation.
$$C_1 = k_1C = 0.6142*0.0302 = 0.0185\text{ F}$$
p #[strong Κλιμακοποίηση]
p.
Γίνεται κλιμακoποίηση των στοιχείων της μονάδας για να μεταφερθούν οι συχνότητες στις πραγματικές τιμές. Επιλέγεται:
p.latex-equation.
$$k_{f} = \omega_0 = 19957.291$$
p.
Με βάση τον αριθμό ΑΕΜ (8261) επιλέγεται κατάλληλος συντελεστής κλιμακοποίησης πλάτους ώστε να επιτευχθεί τιμή πυκνωτών ίση με 0.1μF, γίνεται χρήση του τύπου #[span.course-notes-equation 6-33]:
p.latex-equation.
$$k_{m} = \frac{C_{old}}{k_fC_{new}} = \frac{0.0302}{19957.291*0.1*10^{-6}} = 15.1212$$
p Οι τελικές τιμές των στοιχείων φαίνονται στον παρακάτω πίνακα:
figure.block-center.width-15cm
table.ui.celled.table.teal.striped.center.aligned
thead
tr
th Στοιχείο/Κέρδος
th(colspan="2") Τιμή
tbody
tr
td C
td(colspan="2") 0,1 μF
tr
td C#[sub 1]
td(colspan="2") 0.06142 μF
tr
td R#[sub 1]
td(colspan="2") 15.1212 Ohm
tr
td R#[sub 2]
td(colspan="2") 16604 Ohm
tr
td R#[sub 3]
td(colspan="2") 15.1212 Ohm
tr
td R#[sub 4]
td(colspan="2") 6351.4 Ohm
tr
td Κέρδος στις υψηλές συχνότητες
td 1.6104
td 4.14 dB
figcaption
.reference #[span.table-count]
.caption.
Οι τιμές των στοιχείων της τρίτης μονάδας και το κέρδος στις υψηλές συχνότητες
p.
Η συνάρτηση μεταφοράς της μονάδας υπολογίζεται χρησιμοποιώντας τις εξισώσεις #[span.course-notes-equation 7-129], #[span.course-notes-equation 7-130] και #[span.course-notes-equation 7-131]:
p.latex-equation.
$$\begin{align*}
T_{BE}^3(s) &= k\frac{s^2+\frac{1}{(k_1+1)R_1R_2C^2}}{s^2+\frac{k_1+2}{R_2C}s+\frac{1}{R_1R_2C^2}} \\[3.5mm]
&=1.6104\frac{s^2+\frac{1}{(0.6142+1)*15.1212*16604*(0.1*10^{-6})^2}}{s^2+\frac{0.6142+2}{16604*0.1*10^{-6}}s+\frac{1}{15.1212*16604*(0.1*10^{-6})^2}} \\[3.5mm]
&=\frac{1.6104s^2+3.973*10^8}{s^2+1574.4s+3.983*10^8}
\end{align*}$$
h5 Μονάδα 4
p Η τέταρτη μονάδα μονάδα του φίλτρου είναι το δεύτερο από τα δύο low pass notch δεύτερης τάξης που πρέπει να υλοποιηθούν. Για τη μονάδα ισχύουν:
figure.block-center.width-15cm
table.ui.celled.table.teal.striped.center.aligned
thead
tr
th Προδιαγραφή
th Τιμή
tbody
tr
td ω#[sub 0]
td 12363.407
tr
td ω#[sub Z]
td 15707.963
tr
td ω#[sub Z]>ω#[sub 0]
td #[i.large.teal.checkmark.icon]
tr
td Q
td 12.676
figcaption
.reference #[span.table-count]
.caption.
Προδιαγραφές μονάδας 4 (δεύτερη μονάδα low pass notch)
p.
Γίνεται κανονικοποίηση των συχνοτήτων ως προς το ω#[sub 0], ώστε Ω#[sub 0]=1:
p.latex-equation.
$$\Omega_Z = \frac{\omega_Z}{\omega_0} = \frac{15707.963}{ 12363.407} = 1.2705>1$$
p.
Υπολογίζονται τα στοιχεία του κυκλώματος του φίλτρου, με χρήση της μεθοδολογίας που περιγράφεται στο κεφάλαιο 7.6-B (σελίδα 35) και των εξισώσεων #[span.course-notes-equation 7-150], #[span.course-notes-equation 7-152], #[span.course-notes-equation 7-155]:
p.latex-equation.
$$C = \frac{1}{2Q} = \frac{1}{2* 12.676} = 0.0394\text{ F}$$
p.latex-equation.
$$R_2 = 4Q^2 = 4* 12.676^2 = 642.7\text{ Ohm}$$
p.latex-equation.
$$R_5 = \frac{4Q^2}{\Omega_Z^2-1} = \frac{4* 12.676^2}{1.2705^2-1} = 1046.3\text{ Ohm}$$
p.latex-equation.
$$R_3 = \frac{\Omega_Z^2}{2Q^2} = \frac{1.2705^2}{2* 12.676^2} = 0.0050\text{ Ohm}$$
p.latex-equation.
$$R_1 = R_4 = 1\text{ Ohm}$$
p.
Υπολογίζεται το κέρδος της μονάδας στις υψηλές συχνότητες, χρησιμοποιώντας την εξίσωση #[span.course-notes-equation 7-143]:
p.latex-equation.
$$k_{high} = \frac{R_4}{R_3+R_4} = \frac{1}{0.0050+1} = 0.995$$
p.
Υπολογίζεται το κέρδος της μονάδας στις χαμηλές συχνότητες, χρησιμοποιώντας τις εξισώσεις #[span.course-notes-equation 7-146], #[span.course-notes-equation 7-147] και #[span.course-notes-equation 7-148], θέτοντας s=0:
p.latex-equation.
$$k_{low} = k_{high}\Omega_Z^2 = 0.995*1.2705^2 = 1.6062$$
p #[strong Κλιμακοποίηση]
p.
Γίνεται κλιμακoποίηση των στοιχείων της μονάδας για να μεταφερθούν οι συχνότητες στις πραγματικές τιμές. Επιλέγεται:
p.latex-equation.
$$k_{f} = \omega_0 = 12363.407$$
p.
Με βάση τον αριθμό ΑΕΜ (8261) επιλέγεται κατάλληλος συντελεστής κλιμακοποίησης πλάτους ώστε να επιτευχθεί τιμή πυκνωτών ίση με 0.1μF, γίνεται χρήση του τύπου #[span.course-notes-equation 6-33]:
p.latex-equation.
$$k_{m} = \frac{C_{old}}{k_fC_{new}} = \frac{0.0394}{ 12363.407*0.1*10^{-6}} = 31.9053$$
p Οι τελικές τιμές των στοιχείων φαίνονται στον παρακάτω πίνακα:
figure.block-center.width-15cm
table.ui.celled.table.teal.striped.center.aligned
thead
tr
th Στοιχείο/Κέρδος
th(colspan="2") Τιμή
tbody
tr
td C
td(colspan="2") 0,1 μF
tr
td R#[sub 1]
td(colspan="2") 31.9053 Ohm
tr
td R#[sub 2]
td(colspan="2") 20505 Ohm
tr
td R#[sub 3]
td(colspan="2") 0.1603 Ohm
tr
td R#[sub 4]
td(colspan="2") 31.9053 Ohm
tr
td R#[sub 5]
td(colspan="2") 33384 Ohm
tr
td Κέρδος στις υψηλές συχνότητες
td 0.995
td -0.044 dB
tr
td Κέρδος στις χαμηλές συχνότητες
td 1.6062
td 4.116 dB
figcaption
.reference #[span.table-count]
.caption.
Τιμές των στοιχείων της τέταρτης μονάδας και κέρδη στις υψηλές και χαμηλές συχνότητες
p.
Η συνάρτηση μεταφοράς της μονάδας υπολογίζεται χρησιμοποιώντας τις εξισώσεις #[span.course-notes-equation 7-146], #[span.course-notes-equation 7-147] και #[span.course-notes-equation 7-148]:
p.latex-equation.
$$\begin{align*}
T_{BE}^4(s) &= k_{high}\frac{s^2+\big[\frac{1}{R_1R_5C^2}+\frac{1}{R_1R_2C^2}\big]}{s^2+\frac{2}{R_2C}s+\frac{1}{R_1R_2C^2}}= \\[3.5mm]
&=0.995\frac{s^2+\big[\frac{1}{31.9053*33384*(0.1*10^{-6})^2}+\frac{1}{31.9053*20505*(0.1*10^{-6})^2}\big]}{s^2+\frac{2}{20505*0.1*10^{-6}}s+\frac{1}{31.9053*20505*(0.1*10^{-6})^2}} = \\[3.5mm]
&=\frac{0.995s^2+2.455*10^8}{s^2+975.4s+1.529*10^8}
\end{align*}$$
h4 Ρύθμιση κέρδους
p.
Με βάση τον αριθμό ΑΕΜ (8261) πραγματοποιείται ρύθμιση κέρδους με στόχο την επίτευξη κέρδους 0 dB στη ζώνη διόδου.
p.
Κατά την υλοποίηση των μονάδων HPN και LPN διαπιστώθηκε ότι κάθε μονάδα εισάγει ένα κέρδος. Το συνολικό κέρδος που εισάγουν οι μονάδες είναι:
p.latex-equation.
$$k = k_{high}^1k_{high}^2k_{high}^3k_{high}^4 = 1.6835*0.7659*1.6104*0.995 = 2.066$$
p.
Για τη ρύθμιση του κέρδους χρησιμοποιείται μία αναστρέφουσα συνδεσμολογία με κέρδος:
p.latex-equation.
$${k}' = \frac{1}{k} = \frac{1}{2.066} = 0.484$$
p.
Επιλέγεται η χρήση αντίστασης εισόδου ίσης με r#[sub 1]=10 kOhm. Έτσι η αντίσταση ανατροφοδότησης υπολογίζεται:
p.latex-equation.
$$r_2 = r_1{k}' = 10*10^3*0.484 = 4840\text{ Ohm}$$
h4 Συναρτήσεις μεταφοράς
p.
@ -271,19 +806,19 @@ figure.block-center.width-15cm
tr
td Πρώτη μονάδα (Unit 1)
td.
$$T_{BP(s)}^1 =-\frac{795.697s}{s^2+542.1426s+35270884.89}$$
$$T_{BE}^1(s) = \frac{1.6835s^2+4.154*10^8}{s^2+12280.5s+4.625*10^8}$$
tr
td Δεύτερη μονάδα (Unit 2)
td.
$$T_{BP(s)}^2 =-\frac{721.397s}{s^2+491.5187s+28991510.41}$$
$$T_{BE}^2(s) = \frac{0.7659s^2+1.89*10^8}{s^2+6551s+1.316*10^8}$$
tr
td Τρίτη μονάδα (Unit 3)
td.
$$T_{BP(s)}^3 =-\frac{1524.1s}{s^2+239.223s+40486530.84}$$
$$T_{BE}^3(s) = \frac{1.6104s^2+3.973*10^8}{s^2+1574.4s+3.983*10^8}$$
tr
td Τέταρτη μονάδα (Unit 4)
td.
$$T_{BP(s)}^4 =-\frac{1203.7s}{s^2+188.933s+25255181.75}$$
$$T_{BE}^4(s) = \frac{0.995s^2+2.455*10^8}{s^2+975.4s+1.529*10^8}$$
figcaption
.reference #[span.table-count]
.caption.
@ -293,15 +828,14 @@ p.
Η συνολική συνάρτηση μεταφοράς του φίλτρου υπολογίζεται:
p.latex-equation.
$$\begin{align*}
T_{BP(s)} &= T_{BP(s)}^1T_{BP(s)}^2T_{BP(s)}^3T_{BP(s)}^4 \\[3.5mm] &=\frac{1.053*10^{12}*s^4}{s^8+1461.8*s^7+1.3076*10^{8}*s^6+1.4238*10^{11}*s^5+6.3188*10^{15}*s^4+} \hspace{3mm}\text{...} \\[3.5mm] &\text{...}\hspace{3mm}\frac{1.053*10^{12}*s^4}{+4.5529*10^{18}*s^3+1.3371*10^{23}*s^2+4.78*10^{25}*s+1.04556*10^{30}} \end{align*}$$
$$\begin{align*} T_{BP(s)} &= {k}'T_{BP(s)}^1T_{BP(s)}^2T_{BP(s)}^3T_{BP(s)}^4 \\[3.5mm] &=\frac{s^8+9.8696*10^8s^6+3.6528*10^{17}s^4+6.0087*10^{25}s^2+3.7065*10^{33}}{s^8+21382*s^7+1.2753*10^{9}*s^6+1.7404*10^{13}*s^5+5.1829*10^{17}*s^4+} \hspace{3mm}\text{...} \\[3.5mm] &\text{...}\hspace{3mm}\frac{s^8+9.8696*10^8s^6+3.6528*10^{17}s^4+6.0087*10^{25}s^2+3.7065*10^{33}}{+4.2943*10^{21}*s^3+7.7641*10^{25}*s^2+3.2119*10^{29}*s+3.7065*10^{33}} \end{align*}$$
p.
Στο παρακάτω σχήμα φαίνεται το τελικό κύκλωμα του φίλτρου:
figure.block-center.width-19cm
img(src="2_band_pass/assets/diagrams/multisim_band_pass_chebyshev_circuit_layout_only_filter.svg").width-19cm
img(src="3_band_elimination/assets/diagrams/multisim_band_elimination_chebyshev_circuit_layout_only_filter.svg").width-19cm
figcaption
.reference #[span.plot-count]
.caption.
Κύκλωμα κατωδιαβατού φίλτρου
Κύκλωμα ζωνοφρακτικού φίλτρου

125
report/3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_1_zero_pole_grouping.svg

@ -0,0 +1,125 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="2175.7 -36.4 248.5 818.2" style="enable-background:new 2175.7 -36.4 248.5 818.2;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#262626;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:0.149;}
.st1{fill:none;stroke:#262626;stroke-width:0.6667;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{fill:#262626;}
.st3{font-family:'ArialMT';}
.st4{font-size:13px;}
.st5{font-size:11px;}
.st6{font-family:'Arial-BoldMT';}
.st7{font-size:15px;}
.st8{fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:10;}
.st9{fill:none;stroke:#000000;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<g>
<g>
<line class="st0" x1="2392" y1="772" x2="2176" y2="772"/>
<line class="st0" x1="2392" y1="693.4" x2="2176" y2="693.4"/>
<line class="st0" x1="2392" y1="614.8" x2="2176" y2="614.8"/>
<line class="st0" x1="2392" y1="536.2" x2="2176" y2="536.2"/>
<line class="st0" x1="2392" y1="457.6" x2="2176" y2="457.6"/>
<line class="st0" x1="2392" y1="379" x2="2176" y2="379"/>
<line class="st0" x1="2392" y1="300.4" x2="2176" y2="300.4"/>
<line class="st0" x1="2392" y1="221.8" x2="2176" y2="221.8"/>
<line class="st0" x1="2392" y1="143.2" x2="2176" y2="143.2"/>
<line class="st0" x1="2392" y1="64.6" x2="2176" y2="64.6"/>
<line class="st0" x1="2392" y1="-14" x2="2176" y2="-14"/>
<line class="st1" x1="2176" y1="379" x2="2392" y2="379"/>
<line class="st1" x1="2392" y1="772" x2="2392" y2="-14"/>
<line class="st1" x1="2392" y1="772" x2="2384.1" y2="772"/>
<line class="st1" x1="2392" y1="693.4" x2="2384.1" y2="693.4"/>
<line class="st1" x1="2392" y1="614.8" x2="2384.1" y2="614.8"/>
<line class="st1" x1="2392" y1="536.2" x2="2384.1" y2="536.2"/>
<line class="st1" x1="2392" y1="457.6" x2="2384.1" y2="457.6"/>
<line class="st1" x1="2392" y1="379" x2="2384.1" y2="379"/>
<line class="st1" x1="2392" y1="300.4" x2="2384.1" y2="300.4"/>
<line class="st1" x1="2392" y1="221.8" x2="2384.1" y2="221.8"/>
<line class="st1" x1="2392" y1="143.2" x2="2384.1" y2="143.2"/>
<line class="st1" x1="2392" y1="64.6" x2="2384.1" y2="64.6"/>
<line class="st1" x1="2392" y1="-14" x2="2384.1" y2="-14"/>
</g>
<g transform="translate(1743.3334,858)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-2.5</text>
</g>
<g transform="translate(1743.3334,779.4)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-2</text>
</g>
<g transform="translate(1743.3334,700.8)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-1.5</text>
</g>
<g transform="translate(1743.3334,622.2)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-1</text>
</g>
<g transform="translate(1743.3334,543.6)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-0.5</text>
</g>
<g transform="translate(1743.3334,465)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">0</text>
</g>
<g transform="translate(1743.3334,386.4)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">0.5</text>
</g>
<g transform="translate(1743.3334,307.8)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">1</text>
</g>
<g transform="translate(1743.3334,229.2)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">1.5</text>
</g>
<g transform="translate(1743.3334,150.6)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">2</text>
</g>
<g transform="translate(1743.3334,72)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">2.5</text>
</g>
<g transform="translate(1738,65)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st4">#</text>
</g>
<g transform="translate(1749,65)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st4">10</text>
</g>
<g transform="translate(1764,59)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st5">4</text>
</g>
<g transform="translate(1630.0016,69.25)">
<text transform="matrix(1 0 0 1 580.5001 -90)" class="st6 st7">Unit 1 Zero-Pole plot</text>
</g>
<g>
<line class="st8" x1="2223" y1="58" x2="2230" y2="51"/>
<line class="st8" x1="2223" y1="51" x2="2230" y2="58"/>
<line class="st8" x1="2223" y1="707" x2="2230" y2="700"/>
<line class="st8" x1="2223" y1="700" x2="2230" y2="707"/>
<path class="st8" d="M2395.5,132.5l-0.9-2.1l-2.1-0.9l-2.1,0.9l-0.9,2.1l0.9,2.1l2.1,0.9l2.1-0.9L2395.5,132.5z"/>
<path class="st8" d="M2395.5,625.5l-0.9-2.1l-2.1-0.9l-2.1,0.9l-0.9,2.1l0.9,2.1l2.1,0.9l2.1-0.9L2395.5,625.5z"/>
</g>
<g transform="translate(1721,221)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">z</text>
</g>
<g transform="translate(1728,227)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">1</text>
</g>
<g transform="translate(1721,715)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">z</text>
</g>
<g transform="translate(1728,721)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">1</text>
</g>
<g transform="translate(1581,146)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">ω</text>
</g>
<g transform="translate(1592,152)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">01</text>
</g>
<g transform="translate(1581,790)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">ω</text>
</g>
<g transform="translate(1592,796)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">01</text>
</g>
<g>
<line class="st9" x1="2226.2" y1="55" x2="2226.2" y2="703"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

115
report/3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_2_zero_pole_grouping.svg

@ -0,0 +1,115 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="2175.7 -36.4 248.5 818.2" style="enable-background:new 2175.7 -36.4 248.5 818.2;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#262626;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:0.149;}
.st1{fill:none;stroke:#262626;stroke-width:0.6667;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{fill:#262626;}
.st3{font-family:'ArialMT';}
.st4{font-size:13px;}
.st5{font-size:11px;}
.st6{font-family:'Arial-BoldMT';}
.st7{font-size:15px;}
.st8{fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:10;}
.st9{fill:none;stroke:#000000;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<g>
<g>
<line class="st0" x1="2392" y1="772" x2="2176" y2="772"/>
<line class="st0" x1="2392" y1="673.8" x2="2176" y2="673.8"/>
<line class="st0" x1="2392" y1="575.5" x2="2176" y2="575.5"/>
<line class="st0" x1="2392" y1="477.3" x2="2176" y2="477.3"/>
<line class="st0" x1="2392" y1="379" x2="2176" y2="379"/>
<line class="st0" x1="2392" y1="280.8" x2="2176" y2="280.8"/>
<line class="st0" x1="2392" y1="182.5" x2="2176" y2="182.5"/>
<line class="st0" x1="2392" y1="84.3" x2="2176" y2="84.3"/>
<line class="st0" x1="2392" y1="-14" x2="2176" y2="-14"/>
<line class="st1" x1="2176" y1="379" x2="2392" y2="379"/>
<line class="st1" x1="2392" y1="772" x2="2392" y2="-14"/>
<line class="st1" x1="2392" y1="772" x2="2384.1" y2="772"/>
<line class="st1" x1="2392" y1="673.8" x2="2384.1" y2="673.8"/>
<line class="st1" x1="2392" y1="575.5" x2="2384.1" y2="575.5"/>
<line class="st1" x1="2392" y1="477.3" x2="2384.1" y2="477.3"/>
<line class="st1" x1="2392" y1="379" x2="2384.1" y2="379"/>
<line class="st1" x1="2392" y1="280.8" x2="2384.1" y2="280.8"/>
<line class="st1" x1="2392" y1="182.5" x2="2384.1" y2="182.5"/>
<line class="st1" x1="2392" y1="84.3" x2="2384.1" y2="84.3"/>
<line class="st1" x1="2392" y1="-14" x2="2384.1" y2="-14"/>
</g>
<g transform="translate(1743.3334,858)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-2</text>
</g>
<g transform="translate(1743.3334,759.75)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-1.5</text>
</g>
<g transform="translate(1743.3334,661.5)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-1</text>
</g>
<g transform="translate(1743.3334,563.25)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-0.5</text>
</g>
<g transform="translate(1743.3334,465)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">0</text>
</g>
<g transform="translate(1743.3334,366.75)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">0.5</text>
</g>
<g transform="translate(1743.3334,268.5)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">1</text>
</g>
<g transform="translate(1743.3334,170.25)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">1.5</text>
</g>
<g transform="translate(1743.3334,72)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">2</text>
</g>
<g transform="translate(1738,65)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st4">#</text>
</g>
<g transform="translate(1749,65)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st4">10</text>
</g>
<g transform="translate(1764,59)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st5">4</text>
</g>
<g transform="translate(1630.0016,69.25)">
<text transform="matrix(1 0 0 1 580.5001 -90)" class="st6 st7">Unit 2 Zero-Pole plot</text>
</g>
<g>
<line class="st8" x1="2212" y1="166" x2="2219" y2="159"/>
<line class="st8" x1="2212" y1="159" x2="2219" y2="166"/>
<line class="st8" x1="2212" y1="599" x2="2219" y2="592"/>
<line class="st8" x1="2212" y1="592" x2="2219" y2="599"/>
<path class="st8" d="M2395.5,70.5l-0.9-2.1l-2.1-0.9l-2.1,0.9l-0.9,2.1l0.9,2.1l2.1,0.9l2.1-0.9L2395.5,70.5z"/>
<path class="st8" d="M2395.5,687.5l-0.9-2.1l-2.1-0.9l-2.1,0.9l-0.9,2.1l0.9,2.1l2.1,0.9l2.1-0.9L2395.5,687.5z"/>
</g>
<g transform="translate(1720,159)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">z</text>
</g>
<g transform="translate(1727,165)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">2</text>
</g>
<g transform="translate(1720,777)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">z</text>
</g>
<g transform="translate(1727,783)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">2</text>
</g>
<g transform="translate(1570,253)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">ω</text>
</g>
<g transform="translate(1581,259)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">02</text>
</g>
<g transform="translate(1570,683)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">ω</text>
</g>
<g transform="translate(1581,689)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">02</text>
</g>
<g>
<line class="st9" x1="2215.1" y1="162.9" x2="2215.1" y2="595.1"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

115
report/3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_3_zero_pole_grouping.svg

@ -0,0 +1,115 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="2175.6 -36.4 248.5 820" style="enable-background:new 2175.6 -36.4 248.5 820;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#262626;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:0.149;}
.st1{fill:none;stroke:#262626;stroke-width:0.6667;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{fill:#262626;}
.st3{font-family:'ArialMT';}
.st4{font-size:13px;}
.st5{font-size:11px;}
.st6{font-family:'Arial-BoldMT';}
.st7{font-size:15px;}
.st8{fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:10;}
.st9{fill:none;stroke:#000000;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<g>
<g>
<line class="st0" x1="2392" y1="772" x2="2176" y2="772"/>
<line class="st0" x1="2392" y1="673.8" x2="2176" y2="673.8"/>
<line class="st0" x1="2392" y1="575.5" x2="2176" y2="575.5"/>
<line class="st0" x1="2392" y1="477.3" x2="2176" y2="477.3"/>
<line class="st0" x1="2392" y1="379" x2="2176" y2="379"/>
<line class="st0" x1="2392" y1="280.8" x2="2176" y2="280.8"/>
<line class="st0" x1="2392" y1="182.5" x2="2176" y2="182.5"/>
<line class="st0" x1="2392" y1="84.3" x2="2176" y2="84.3"/>
<line class="st0" x1="2392" y1="-14" x2="2176" y2="-14"/>
<line class="st1" x1="2176" y1="379" x2="2392" y2="379"/>
<line class="st1" x1="2392" y1="772" x2="2392" y2="-14"/>
<line class="st1" x1="2392" y1="772" x2="2384.1" y2="772"/>
<line class="st1" x1="2392" y1="673.8" x2="2384.1" y2="673.8"/>
<line class="st1" x1="2392" y1="575.5" x2="2384.1" y2="575.5"/>
<line class="st1" x1="2392" y1="477.3" x2="2384.1" y2="477.3"/>
<line class="st1" x1="2392" y1="379" x2="2384.1" y2="379"/>
<line class="st1" x1="2392" y1="280.8" x2="2384.1" y2="280.8"/>
<line class="st1" x1="2392" y1="182.5" x2="2384.1" y2="182.5"/>
<line class="st1" x1="2392" y1="84.3" x2="2384.1" y2="84.3"/>
<line class="st1" x1="2392" y1="-14" x2="2384.1" y2="-14"/>
</g>
<g transform="translate(1743.3334,858)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-2</text>
</g>
<g transform="translate(1743.3334,759.75)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-1.5</text>
</g>
<g transform="translate(1743.3334,661.5)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-1</text>
</g>
<g transform="translate(1743.3334,563.25)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-0.5</text>
</g>
<g transform="translate(1743.3334,465)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">0</text>
</g>
<g transform="translate(1743.3334,366.75)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">0.5</text>
</g>
<g transform="translate(1743.3334,268.5)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">1</text>
</g>
<g transform="translate(1743.3334,170.25)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">1.5</text>
</g>
<g transform="translate(1743.3334,72)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">2</text>
</g>
<g transform="translate(1738,65)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st4">#</text>
</g>
<g transform="translate(1749,65)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st4">10</text>
</g>
<g transform="translate(1764,59)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st5">4</text>
</g>
<g transform="translate(1630.0016,69.25)">
<text transform="matrix(1 0 0 1 580.5001 -90)" class="st6 st7">Unit 3 Zero-Pole plot</text>
</g>
<g>
<line class="st8" x1="2176" y1="-9" x2="2183" y2="-16"/>
<line class="st8" x1="2176" y1="-16" x2="2183" y2="-9"/>
<line class="st8" x1="2176" y1="774" x2="2183" y2="767"/>
<line class="st8" x1="2176" y1="767" x2="2183" y2="774"/>
<path class="st8" d="M2395.5,70.5l-0.9-2.1l-2.1-0.9l-2.1,0.9l-0.9,2.1l0.9,2.1l2.1,0.9l2.1-0.9L2395.5,70.5z"/>
<path class="st8" d="M2395.5,687.5l-0.9-2.1l-2.1-0.9l-2.1,0.9l-0.9,2.1l0.9,2.1l2.1,0.9l2.1-0.9L2395.5,687.5z"/>
</g>
<g transform="translate(1717,159)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">z</text>
</g>
<g transform="translate(1724,165)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">3</text>
</g>
<g transform="translate(1717,777)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">z</text>
</g>
<g transform="translate(1724,783)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">3</text>
</g>
<g transform="translate(1536,76)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">ω</text>
</g>
<g transform="translate(1547,82)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">03</text>
</g>
<g transform="translate(1536,860)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">ω</text>
</g>
<g transform="translate(1547,866)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">03</text>
</g>
<g>
<line class="st9" x1="2179.4" y1="-12.9" x2="2179.4" y2="770.9"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

115
report/3_band_elimination/assets/diagrams/band_elimination_chebyshev_unit_4_zero_pole_grouping.svg

@ -0,0 +1,115 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="2175.7 -36.4 248.5 818.2" style="enable-background:new 2175.7 -36.4 248.5 818.2;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#262626;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:0.149;}
.st1{fill:none;stroke:#262626;stroke-width:0.6667;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{fill:#262626;}
.st3{font-family:'ArialMT';}
.st4{font-size:13px;}
.st5{font-size:11px;}
.st6{font-family:'Arial-BoldMT';}
.st7{font-size:15px;}
.st8{fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:10;}
.st9{fill:none;stroke:#000000;stroke-width:0.6667;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<g>
<g>
<line class="st0" x1="2392" y1="772" x2="2176" y2="772"/>
<line class="st0" x1="2392" y1="673.8" x2="2176" y2="673.8"/>
<line class="st0" x1="2392" y1="575.5" x2="2176" y2="575.5"/>
<line class="st0" x1="2392" y1="477.3" x2="2176" y2="477.3"/>
<line class="st0" x1="2392" y1="379" x2="2176" y2="379"/>
<line class="st0" x1="2392" y1="280.8" x2="2176" y2="280.8"/>
<line class="st0" x1="2392" y1="182.5" x2="2176" y2="182.5"/>
<line class="st0" x1="2392" y1="84.3" x2="2176" y2="84.3"/>
<line class="st0" x1="2392" y1="-14" x2="2176" y2="-14"/>
<line class="st1" x1="2176" y1="379" x2="2392" y2="379"/>
<line class="st1" x1="2392" y1="772" x2="2392" y2="-14"/>
<line class="st1" x1="2392" y1="772" x2="2384.1" y2="772"/>
<line class="st1" x1="2392" y1="673.8" x2="2384.1" y2="673.8"/>
<line class="st1" x1="2392" y1="575.5" x2="2384.1" y2="575.5"/>
<line class="st1" x1="2392" y1="477.3" x2="2384.1" y2="477.3"/>
<line class="st1" x1="2392" y1="379" x2="2384.1" y2="379"/>
<line class="st1" x1="2392" y1="280.8" x2="2384.1" y2="280.8"/>
<line class="st1" x1="2392" y1="182.5" x2="2384.1" y2="182.5"/>
<line class="st1" x1="2392" y1="84.3" x2="2384.1" y2="84.3"/>
<line class="st1" x1="2392" y1="-14" x2="2384.1" y2="-14"/>
</g>
<g transform="translate(1743.3334,858)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-2</text>
</g>
<g transform="translate(1743.3334,759.75)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-1.5</text>
</g>
<g transform="translate(1743.3334,661.5)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-1</text>
</g>
<g transform="translate(1743.3334,563.25)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">-0.5</text>
</g>
<g transform="translate(1743.3334,465)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">0</text>
</g>
<g transform="translate(1743.3334,366.75)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">0.5</text>
</g>
<g transform="translate(1743.3334,268.5)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">1</text>
</g>
<g transform="translate(1743.3334,170.25)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">1.5</text>
</g>
<g transform="translate(1743.3334,72)">
<text transform="matrix(1 0 0 1 654.0001 -80.5)" class="st2 st3 st4">2</text>
</g>
<g transform="translate(1738,65)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st4">#</text>
</g>
<g transform="translate(1749,65)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st4">10</text>
</g>
<g transform="translate(1764,59)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st2 st3 st5">4</text>
</g>
<g transform="translate(1630.0016,69.25)">
<text transform="matrix(1 0 0 1 580.5001 -90)" class="st6 st7">Unit 4 Zero-Pole plot</text>
</g>
<g>
<line class="st8" x1="2178" y1="140" x2="2185" y2="133"/>
<line class="st8" x1="2178" y1="133" x2="2185" y2="140"/>
<line class="st8" x1="2178" y1="625" x2="2185" y2="618"/>
<line class="st8" x1="2178" y1="618" x2="2185" y2="625"/>
<path class="st8" d="M2395.5,70.5l-0.9-2.1l-2.1-0.9l-2.1,0.9l-0.9,2.1l0.9,2.1l2.1,0.9l2.1-0.9L2395.5,70.5z"/>
<path class="st8" d="M2395.5,687.5l-0.9-2.1l-2.1-0.9l-2.1,0.9l-0.9,2.1l0.9,2.1l2.1,0.9l2.1-0.9L2395.5,687.5z"/>
</g>
<g transform="translate(1717,159)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">z</text>
</g>
<g transform="translate(1724,165)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">4</text>
</g>
<g transform="translate(1717,777)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">z</text>
</g>
<g transform="translate(1724,783)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">4</text>
</g>
<g transform="translate(1538,225)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">ω</text>
</g>
<g transform="translate(1549,231)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">04</text>
</g>
<g transform="translate(1538,711)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st4">ω</text>
</g>
<g transform="translate(1549,717)">
<text transform="matrix(1 0 0 1 654.0001 -86)" class="st3 st5">04</text>
</g>
<g>
<line class="st9" x1="2181.3" y1="136.2" x2="2181.3" y2="621.8"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

25
report/3_band_elimination/assets/diagrams/band_elimination_unit_1_block_diagram.svg

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-393.5 704.7 200 77.1" style="enable-background:new -393.5 704.7 200 77.1;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;}
.st1{fill:none;stroke:#4D4D4D;stroke-width:2;stroke-miterlimit:10;}
.st2{fill:#4D4D4D;stroke:#4D4D4D;stroke-width:2;stroke-miterlimit:10;}
.st3{font-family:'ArialMT';}
.st4{font-size:10px;}
.st5{font-size:12px;}
</style>
<g transform="translate(0.5,0.5)">
<path pointer-events="none" class="st0" d="M-345,704.7h102c5,0,9,4,9,9v42c0,5-4,9-9,9h-102c-5,0-9-4-9-9v-42
C-354,708.7-350,704.7-345,704.7z"/>
<path pointer-events="none" class="st1" d="M-394,734.7l31.5-0.1"/>
<path pointer-events="none" class="st2" d="M-356.5,734.6l-8,4l2-4l-2-4L-356.5,734.6z"/>
<path pointer-events="none" class="st1" d="M-234.2,734.6l32,0.1"/>
<path pointer-events="none" class="st2" d="M-196.2,734.7l-8,4l2-4l-2-4L-196.2,734.7z"/>
</g>
<text transform="matrix(1.0625 0 0 1 -328.2305 726.2)" class="st3 st4">ω0 = 21505.945</text>
<text transform="matrix(1.0625 0 0 1 -327.8057 738.2)" class="st3 st4">ωz = 15707.963</text>
<text transform="matrix(1.0625 0 0 1 -314.6304 750.2)" class="st3 st4">Q = 1.751</text>
<text transform="matrix(1 0 0 1 -304.5518 777.95)" class="st3 st5">HPN</text>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

23
report/3_band_elimination/assets/diagrams/band_elimination_unit_2_block_diagram.svg

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-188.5 346 200 76.3" style="enable-background:new -188.5 346 200 76.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;}
.st1{fill:none;stroke:#4D4D4D;stroke-width:2;stroke-miterlimit:10;}
.st2{fill:#4D4D4D;stroke:#4D4D4D;stroke-width:2;stroke-miterlimit:10;}
.st3{font-family:'MyriadPro-Regular';}
.st4{font-size:10px;}
.st5{font-size:12px;}
</style>
<g transform="translate(0.5,0.5)">
<path pointer-events="none" class="st0" d="M-140,346h102c5,0,9,4,9,9v42c0,5-4,9-9,9h-102c-5,0-9-4-9-9v-42
C-149,350-145,346-140,346z"/>
<path pointer-events="none" class="st1" d="M-189,376l31.5-0.1"/>
<path pointer-events="none" class="st2" d="M-151.5,375.9l-8,4l2-4l-2-4L-151.5,375.9z"/>
<path pointer-events="none" class="st1" d="M-29.2,375.9l32,0.1"/>
<path pointer-events="none" class="st2" d="M8.8,376l-8,4l2-4l-2-4L8.8,376z"/>
</g>
<text transform="matrix(1.0625 0 0 1 -122.1045 367.5)"><tspan x="0" y="0" class="st3 st4">ω0 =11473.112</tspan><tspan x="-0.6" y="12" class="st3 st4">ωz = 15707.963</tspan><tspan x="11.8" y="24" class="st3 st4">Q = 1.751</tspan></text>
<text transform="matrix(1 0 0 1 -98.4717 419.25)" class="st3 st5">LPN</text>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

23
report/3_band_elimination/assets/diagrams/band_elimination_unit_3_block_diagram.svg

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-188.5 346 200 76.3" style="enable-background:new -188.5 346 200 76.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;}
.st1{fill:none;stroke:#4D4D4D;stroke-width:2;stroke-miterlimit:10;}
.st2{fill:#4D4D4D;stroke:#4D4D4D;stroke-width:2;stroke-miterlimit:10;}
.st3{font-family:'MyriadPro-Regular';}
.st4{font-size:10px;}
.st5{font-size:12px;}
</style>
<g transform="translate(0.5,0.5)">
<path pointer-events="none" class="st0" d="M-140,346h102c5,0,9,4,9,9v42c0,5-4,9-9,9h-102c-5,0-9-4-9-9v-42
C-149,350-145,346-140,346z"/>
<path pointer-events="none" class="st1" d="M-189,376l31.5-0.1"/>
<path pointer-events="none" class="st2" d="M-151.5,375.9l-8,4l2-4l-2-4L-151.5,375.9z"/>
<path pointer-events="none" class="st1" d="M-29.2,375.9l32,0.1"/>
<path pointer-events="none" class="st2" d="M8.8,376l-8,4l2-4l-2-4L8.8,376z"/>
</g>
<text transform="matrix(1.0625 0 0 1 -122.1045 367.5)"><tspan x="0" y="0" class="st3 st4">ω0 =19957.291</tspan><tspan x="-0.6" y="12" class="st3 st4">ωz = 15707.963</tspan><tspan x="9.2" y="24" class="st3 st4">Q = 12.676</tspan></text>
<text transform="matrix(1 0 0 1 -99.5518 419.25)" class="st3 st5">HPN</text>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

23
report/3_band_elimination/assets/diagrams/band_elimination_unit_4_block_diagram.svg

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-188.5 346 200 76.3" style="enable-background:new -188.5 346 200 76.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;}
.st1{fill:none;stroke:#4D4D4D;stroke-width:2;stroke-miterlimit:10;}
.st2{fill:#4D4D4D;stroke:#4D4D4D;stroke-width:2;stroke-miterlimit:10;}
.st3{font-family:'MyriadPro-Regular';}
.st4{font-size:10px;}
.st5{font-size:12px;}
</style>
<g transform="translate(0.5,0.5)">
<path pointer-events="none" class="st0" d="M-140,346h102c5,0,9,4,9,9v42c0,5-4,9-9,9h-102c-5,0-9-4-9-9v-42
C-149,350-145,346-140,346z"/>
<path pointer-events="none" class="st1" d="M-189,376l31.5-0.1"/>
<path pointer-events="none" class="st2" d="M-151.5,375.9l-8,4l2-4l-2-4L-151.5,375.9z"/>
<path pointer-events="none" class="st1" d="M-29.2,375.9l32,0.1"/>
<path pointer-events="none" class="st2" d="M8.8,376l-8,4l2-4l-2-4L8.8,376z"/>
</g>
<text transform="matrix(1.0625 0 0 1 -123.2305 367.5)"><tspan x="0" y="0" class="st3 st4">ω0 = 12363.407</tspan><tspan x="0.4" y="12" class="st3 st4">ωz = 15707.963</tspan><tspan x="10.3" y="24" class="st3 st4">Q = 12.676</tspan></text>
<text transform="matrix(1 0 0 1 -98.4717 419.25)" class="st3 st5">LPN</text>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

688
report/3_band_elimination/assets/diagrams/multisim_band_elimination_chebyshev_circuit_layout_only_filter.svg

@ -0,0 +1,688 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="20 166.9 652.8 460.1" style="enable-background:new 20 166.9 652.8 460.1;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#010101;stroke-linecap:square;stroke-miterlimit:10;}
.st1{fill:#010101;}
.st2{font-family:'Arial-BoldMT';}
.st3{font-size:11.2351px;}
.st4{fill:none;stroke:#010101;stroke-width:2;stroke-linecap:square;stroke-miterlimit:10;}
.st5{fill:#ED2224;stroke:#ED2224;stroke-linecap:square;stroke-miterlimit:10;}
.st6{fill:#282A74;stroke:#282A74;stroke-linecap:square;stroke-miterlimit:10;}
.st7{fill:#F58020;stroke:#F58020;stroke-linecap:square;stroke-miterlimit:10;}
.st8{fill:#F58020;}
.st9{fill:#0F8140;stroke:#0F8140;stroke-linecap:square;stroke-miterlimit:10;}
.st10{fill:#0F8140;}
.st11{fill:none;stroke:#ED2224;stroke-linecap:square;stroke-miterlimit:10;}
.st12{fill:none;stroke:#282A74;stroke-linecap:square;stroke-miterlimit:10;}
.st13{fill:none;stroke:#F58020;stroke-linecap:square;stroke-miterlimit:10;}
.st14{fill:none;stroke:#0F8140;stroke-linecap:square;stroke-miterlimit:10;}
.st15{opacity:0.2;fill:#009688;enable-background:new ;}
.st16{fill:#009688;}
.st17{font-size:11.1751px;}
.st18{font-size:12px;}
.st19{fill:none;stroke:#000000;stroke-miterlimit:10;}
.st20{fill:none;stroke:#000000;stroke-miterlimit:10;stroke-dasharray:12.0708,12.0708;}
.st21{fill:none;stroke:#000000;stroke-miterlimit:10;stroke-dasharray:12.2286,12.2286;}
</style>
<g id="XMLID_2_">
<polyline id="XMLID_701_" class="st0" points="83.7,254.1 86.3,249.8 89.8,257.5 94.1,249.8 97.6,257.5 101.9,249.8 105.3,257.5
107.1,254.1 "/>
<text transform="matrix(0.9995 0 0 1 88.0596 244.5719)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 96.6553 244.5719)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 77.6963 271.356)" class="st1 st2 st3">92</text>
<text transform="matrix(0.9995 0 0 1 89.79 271.356)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 93.2881 271.356)" class="st1 st2 st3">4</text>
<text transform="matrix(0.9995 0 0 1 99.2852 271.356)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 108.7808 271.356)" class="st1 st2 st3"> </text>
<line id="XMLID_698_" class="st0" x1="76" y1="254.1" x2="76" y2="254.1"/>
<line id="XMLID_697_" class="st0" x1="83.7" y1="254.1" x2="76" y2="254.1"/>
<line id="XMLID_696_" class="st0" x1="114.8" y1="254.1" x2="114.8" y2="254.1"/>
<line id="XMLID_695_" class="st0" x1="107.1" y1="254.1" x2="114.8" y2="254.1"/>
<polyline id="XMLID_694_" class="st0" points="192.6,215.2 196.9,217.8 189.1,221.2 196.9,225.6 189.1,229 196.9,233.3
189.1,236.8 192.6,238.5 "/>
<text transform="matrix(0.9995 0 0 1 198.6279 216.0518)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 207.2236 216.0518)" class="st1 st2 st3">2</text>
<text transform="matrix(0.9995 0 0 1 198.6279 231.608)" class="st1 st2 st3">2</text>
<text transform="matrix(0.9995 0 0 1 204.7246 231.608)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 208.123 231.608)" class="st1 st2 st3">34k</text>
<text transform="matrix(0.9995 0 0 1 226.314 231.608)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 235.8091 231.608)" class="st1 st2 st3"> </text>
<line id="XMLID_691_" class="st0" x1="192.6" y1="207.4" x2="192.6" y2="207.4"/>
<line id="XMLID_690_" class="st0" x1="192.6" y1="215.2" x2="192.6" y2="207.4"/>
<line id="XMLID_689_" class="st0" x1="192.6" y1="246.3" x2="192.6" y2="246.3"/>
<line id="XMLID_688_" class="st0" x1="192.6" y1="238.5" x2="192.6" y2="246.3"/>
<polyline id="XMLID_687_" class="st0" points="145.9,300.7 148.5,296.4 152,304.2 156.3,296.4 159.8,304.2 164.1,296.4
167.5,304.2 169.3,300.7 "/>
<text transform="matrix(0.9995 0 0 1 150.251 291.2403)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 158.8467 291.2403)" class="st1 st2 st3">3</text>
<text transform="matrix(0.9995 0 0 1 139.8867 318.0318)" class="st1 st2 st3">92</text>
<text transform="matrix(0.9995 0 0 1 151.9805 318.0318)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 155.4785 318.0318)" class="st1 st2 st3">4</text>
<text transform="matrix(0.9995 0 0 1 161.4756 318.0318)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 170.9712 318.0318)" class="st1 st2 st3"> </text>
<line id="XMLID_684_" class="st0" x1="138.2" y1="300.7" x2="138.2" y2="300.7"/>
<line id="XMLID_683_" class="st0" x1="145.9" y1="300.7" x2="138.2" y2="300.7"/>
<line id="XMLID_682_" class="st0" x1="177" y1="300.7" x2="177" y2="300.7"/>
<line id="XMLID_681_" class="st0" x1="169.3" y1="300.7" x2="177" y2="300.7"/>
<polyline id="XMLID_680_" class="st0" points="177,324.1 181.4,326.7 173.6,330.1 181.4,334.5 173.6,337.9 181.4,342.2
173.6,345.7 177,347.4 "/>
<text transform="matrix(0.9995 0 0 1 182.2139 318.8893)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 190.8096 318.8893)" class="st1 st2 st3">4</text>
<text transform="matrix(0.9995 0 0 1 183.0781 338.773)" class="st1 st2 st3">814</text>
<text transform="matrix(0.9995 0 0 1 201.269 338.773)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 204.667 338.773)" class="st1 st2 st3">3</text>
<text transform="matrix(0.9995 0 0 1 210.7642 338.773)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 220.2593 338.773)" class="st1 st2 st3"> </text>
<line id="XMLID_677_" class="st0" x1="177" y1="316.3" x2="177" y2="316.3"/>
<line id="XMLID_676_" class="st0" x1="177" y1="324.1" x2="177" y2="316.3"/>
<line id="XMLID_675_" class="st0" x1="177" y1="355.2" x2="177" y2="355.2"/>
<line id="XMLID_674_" class="st0" x1="177" y1="347.4" x2="177" y2="355.2"/>
<line id="XMLID_673_" class="st0" x1="145.9" y1="199.6" x2="155.4" y2="199.6"/>
<line id="XMLID_672_" class="st4" x1="155.4" y1="207.4" x2="155.4" y2="191.9"/>
<line id="XMLID_671_" class="st4" x1="160.6" y1="207.4" x2="160.6" y2="191.9"/>
<line id="XMLID_670_" class="st0" x1="160.6" y1="199.6" x2="169.3" y2="199.6"/>
<text transform="matrix(0.9995 0 0 1 150.251 185.7906)" class="st1 st2 st3">C</text>
<text transform="matrix(0.9995 0 0 1 158.8467 185.7906)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 140.751 220.36)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 146.8477 220.36)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 150.2461 220.36)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 156.3428 220.36)" class="st1 st2 st3">uF</text>
<text transform="matrix(0.9995 0 0 1 170.1362 220.36)" class="st1 st2 st3"> </text>
<line id="XMLID_667_" class="st0" x1="177" y1="199.6" x2="177" y2="199.6"/>
<line id="XMLID_666_" class="st0" x1="169.3" y1="199.6" x2="177" y2="199.6"/>
<line id="XMLID_665_" class="st0" x1="138.2" y1="199.6" x2="138.2" y2="199.6"/>
<line id="XMLID_664_" class="st0" x1="145.9" y1="199.6" x2="138.2" y2="199.6"/>
<line id="XMLID_663_" class="st0" x1="145.9" y1="254.1" x2="155.4" y2="254.1"/>
<line id="XMLID_662_" class="st4" x1="155.4" y1="261.9" x2="155.4" y2="246.3"/>
<line id="XMLID_661_" class="st4" x1="160.6" y1="261.9" x2="160.6" y2="246.3"/>
<line id="XMLID_660_" class="st0" x1="160.6" y1="254.1" x2="169.3" y2="254.1"/>
<text transform="matrix(0.9995 0 0 1 150.251 240.2511)" class="st1 st2 st3">C</text>
<text transform="matrix(0.9995 0 0 1 158.8467 240.2511)" class="st1 st2 st3">2</text>
<text transform="matrix(0.9995 0 0 1 140.751 274.8204)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 146.8477 274.8204)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 150.2461 274.8204)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 156.3428 274.8204)" class="st1 st2 st3">uF</text>
<text transform="matrix(0.9995 0 0 1 170.1362 274.8204)" class="st1 st2 st3"> </text>
<line id="XMLID_657_" class="st0" x1="177" y1="254.1" x2="177" y2="254.1"/>
<line id="XMLID_656_" class="st0" x1="169.3" y1="254.1" x2="177" y2="254.1"/>
<line id="XMLID_655_" class="st0" x1="138.2" y1="254.1" x2="138.2" y2="254.1"/>
<line id="XMLID_654_" class="st0" x1="145.9" y1="254.1" x2="138.2" y2="254.1"/>
<text transform="matrix(0.9995 0 0 1 240.0908 272.2271)" class="st1 st2 st3">U</text>
<text transform="matrix(0.9995 0 0 1 248.6865 272.2271)" class="st1 st2 st3">1</text>
<polygon id="XMLID_652_" class="st0" points="223.7,293 223.7,246.3 270.3,269.6 "/>
<line id="XMLID_651_" class="st0" x1="231.5" y1="256.7" x2="226.3" y2="256.7"/>
<line id="XMLID_650_" class="st0" x1="226.3" y1="282.6" x2="231.5" y2="282.6"/>
<line id="XMLID_649_" class="st0" x1="228.9" y1="285.2" x2="228.9" y2="280"/>
<line id="XMLID_648_" class="st0" x1="208.1" y1="285.2" x2="208.1" y2="285.2"/>
<line id="XMLID_647_" class="st0" x1="223.7" y1="285.2" x2="208.1" y2="285.2"/>
<line id="XMLID_646_" class="st0" x1="208.1" y1="254.1" x2="208.1" y2="254.1"/>
<line id="XMLID_645_" class="st0" x1="223.7" y1="254.1" x2="208.1" y2="254.1"/>
<line id="XMLID_644_" class="st0" x1="285.9" y1="269.6" x2="285.9" y2="269.6"/>
<line id="XMLID_643_" class="st0" x1="270.3" y1="269.6" x2="285.9" y2="269.6"/>
<path id="XMLID_642_" class="st5" d="M190.9,253.6c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C191.4,254.9,190.9,254.4,190.9,253.6L190.9,253.6z"/>
<path id="XMLID_641_" class="st5" d="M128.7,253.6c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C129.2,254.9,128.7,254.4,128.7,253.6L128.7,253.6z"/>
<path id="XMLID_640_" class="st5" d="M190.9,199.2c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C191.4,200.5,190.9,199.9,190.9,199.2L190.9,199.2z"/>
<line id="XMLID_639_" class="st0" x1="114.8" y1="324.1" x2="114.8" y2="333.6"/>
<line id="XMLID_638_" class="st4" x1="107.1" y1="333.6" x2="122.6" y2="333.6"/>
<line id="XMLID_637_" class="st4" x1="107.1" y1="338.8" x2="122.6" y2="338.8"/>
<line id="XMLID_636_" class="st0" x1="114.8" y1="338.8" x2="114.8" y2="347.4"/>
<text transform="matrix(0.9995 0 0 1 128.665 350.0084)" class="st1 st2 st3">C</text>
<text transform="matrix(0.9995 0 0 1 137.2607 350.0084)" class="st1 st2 st3">3</text>
<text transform="matrix(0.9995 0 0 1 125.2021 338.773)" class="st1 st2 st3">87</text>
<text transform="matrix(0.9995 0 0 1 137.2959 338.773)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 140.7939 338.773)" class="st1 st2 st3">5</text>
<text transform="matrix(0.9995 0 0 1 146.791 338.773)" class="st1 st2 st3">nF</text>
<text transform="matrix(0.9995 0 0 1 160.584 338.773)" class="st1 st2 st3"> </text>
<line id="XMLID_633_" class="st0" x1="114.8" y1="355.2" x2="114.8" y2="355.2"/>
<line id="XMLID_632_" class="st0" x1="114.8" y1="347.4" x2="114.8" y2="355.2"/>
<line id="XMLID_631_" class="st0" x1="114.8" y1="316.3" x2="114.8" y2="316.3"/>
<line id="XMLID_630_" class="st0" x1="114.8" y1="324.1" x2="114.8" y2="316.3"/>
<path id="XMLID_629_" class="st5" d="M175.3,300.3c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C175.9,301.6,175.3,301,175.3,300.3L175.3,300.3z"/>
<polyline id="XMLID_583_" class="st0" points="317,254.1 319.6,249.8 323,257.5 327.3,249.8 330.8,257.5 335.1,249.8 338.6,257.5
340.3,254.1 "/>
<text transform="matrix(0.9995 0 0 1 321.2891 244.5719)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 329.8848 244.5719)" class="st1 st2 st3">5</text>
<text transform="matrix(0.9995 0 0 1 312.6533 271.356)" class="st1 st2 st3">249</text>
<text transform="matrix(0.9995 0 0 1 330.8438 271.356)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 340.3389 271.356)" class="st1 st2 st3"> </text>
<line id="XMLID_580_" class="st0" x1="309.2" y1="254.1" x2="309.2" y2="254.1"/>
<line id="XMLID_579_" class="st0" x1="317" y1="254.1" x2="309.2" y2="254.1"/>
<line id="XMLID_578_" class="st0" x1="348.1" y1="254.1" x2="348.1" y2="254.1"/>
<line id="XMLID_577_" class="st0" x1="340.3" y1="254.1" x2="348.1" y2="254.1"/>
<polyline id="XMLID_576_" class="st0" points="425.8,215.2 430.1,217.8 422.4,221.2 430.1,225.6 422.4,229 430.1,233.3
422.4,236.8 425.8,238.5 "/>
<text transform="matrix(0.9995 0 0 1 431.8496 216.0518)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 440.4453 216.0518)" class="st1 st2 st3">6</text>
<text transform="matrix(0.9995 0 0 1 431.8496 231.608)" class="st1 st2 st3">3</text>
<text transform="matrix(0.9995 0 0 1 437.9463 231.608)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 441.3447 231.608)" class="st1 st2 st3">053k</text>
<text transform="matrix(0.9995 0 0 1 465.5322 231.608)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 475.0273 231.608)" class="st1 st2 st3"> </text>
<line id="XMLID_573_" class="st0" x1="425.8" y1="207.4" x2="425.8" y2="207.4"/>
<line id="XMLID_572_" class="st0" x1="425.8" y1="215.2" x2="425.8" y2="207.4"/>
<line id="XMLID_571_" class="st0" x1="425.8" y1="246.3" x2="425.8" y2="246.3"/>
<line id="XMLID_570_" class="st0" x1="425.8" y1="238.5" x2="425.8" y2="246.3"/>
<polyline id="XMLID_569_" class="st0" points="355.8,285.2 358.4,280.9 361.9,288.6 366.2,280.9 369.7,288.6 374,280.9
377.4,288.6 379.2,285.2 "/>
<text transform="matrix(0.9995 0 0 1 353.252 275.6783)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 361.8477 275.6783)" class="st1 st2 st3">7</text>
<text transform="matrix(0.9995 0 0 1 354.9736 302.4757)" class="st1 st2 st3">76</text>
<text transform="matrix(0.9995 0 0 1 367.0674 302.4757)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 376.5625 302.4757)" class="st1 st2 st3"> </text>
<line id="XMLID_566_" class="st0" x1="348.1" y1="285.2" x2="348.1" y2="285.2"/>
<line id="XMLID_565_" class="st0" x1="355.8" y1="285.2" x2="348.1" y2="285.2"/>
<line id="XMLID_564_" class="st0" x1="386.9" y1="285.2" x2="386.9" y2="285.2"/>
<line id="XMLID_563_" class="st0" x1="379.2" y1="285.2" x2="386.9" y2="285.2"/>
<polyline id="XMLID_562_" class="st0" points="386.9,300.7 391.3,303.3 383.5,306.8 391.3,311.1 383.5,314.6 391.3,318.9
383.5,322.4 386.9,324.1 "/>
<text transform="matrix(0.9995 0 0 1 392.1221 334.4527)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 400.7178 334.4527)" class="st1 st2 st3">8</text>
<text transform="matrix(0.9995 0 0 1 392.9873 315.4254)" class="st1 st2 st3">249</text>
<text transform="matrix(0.9995 0 0 1 411.1777 315.4254)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 420.6729 315.4254)" class="st1 st2 st3"> </text>
<line id="XMLID_559_" class="st0" x1="386.9" y1="293" x2="386.9" y2="293"/>
<line id="XMLID_558_" class="st0" x1="386.9" y1="300.7" x2="386.9" y2="293"/>
<line id="XMLID_557_" class="st0" x1="386.9" y1="331.9" x2="386.9" y2="331.9"/>
<line id="XMLID_556_" class="st0" x1="386.9" y1="324.1" x2="386.9" y2="331.9"/>
<polyline id="XMLID_555_" class="st0" points="425.8,324.1 430.1,326.7 422.4,330.1 430.1,334.5 422.4,337.9 430.1,342.2
422.4,345.7 425.8,347.4 "/>
<text transform="matrix(0.9995 0 0 1 431.8496 324.9391)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 440.4453 324.9391)" class="st1 st2 st3">9</text>
<text transform="matrix(0.9995 0 0 1 431.8496 340.4947)" class="st1 st2 st3">3</text>
<text transform="matrix(0.9995 0 0 1 437.9463 340.4947)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 441.3447 340.4947)" class="st1 st2 st3">491k</text>
<text transform="matrix(0.9995 0 0 1 465.5322 340.4947)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 475.0273 340.4947)" class="st1 st2 st3"> </text>
<line id="XMLID_552_" class="st0" x1="425.8" y1="316.3" x2="425.8" y2="316.3"/>
<line id="XMLID_551_" class="st0" x1="425.8" y1="324.1" x2="425.8" y2="316.3"/>
<line id="XMLID_550_" class="st0" x1="425.8" y1="355.2" x2="425.8" y2="355.2"/>
<line id="XMLID_549_" class="st0" x1="425.8" y1="347.4" x2="425.8" y2="355.2"/>
<line id="XMLID_548_" class="st0" x1="379.2" y1="199.6" x2="388.7" y2="199.6"/>
<line id="XMLID_547_" class="st4" x1="388.7" y1="207.4" x2="388.7" y2="191.9"/>
<line id="XMLID_546_" class="st4" x1="393.8" y1="207.4" x2="393.8" y2="191.9"/>
<line id="XMLID_545_" class="st0" x1="393.8" y1="199.6" x2="402.5" y2="199.6"/>
<text transform="matrix(0.9995 0 0 1 383.4795 185.7906)" class="st1 st2 st3">C</text>
<text transform="matrix(0.9995 0 0 1 392.0752 185.7906)" class="st1 st2 st3">4</text>
<text transform="matrix(0.9995 0 0 1 373.9795 220.36)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 380.0762 220.36)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 383.4746 220.36)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 389.5713 220.36)" class="st1 st2 st3">uF</text>
<text transform="matrix(0.9995 0 0 1 403.3643 220.36)" class="st1 st2 st3"> </text>
<line id="XMLID_542_" class="st0" x1="410.3" y1="199.6" x2="410.3" y2="199.6"/>
<line id="XMLID_541_" class="st0" x1="402.5" y1="199.6" x2="410.3" y2="199.6"/>
<line id="XMLID_540_" class="st0" x1="371.4" y1="199.6" x2="371.4" y2="199.6"/>
<line id="XMLID_539_" class="st0" x1="379.2" y1="199.6" x2="371.4" y2="199.6"/>
<line id="XMLID_538_" class="st0" x1="379.2" y1="254.1" x2="388.7" y2="254.1"/>
<line id="XMLID_537_" class="st4" x1="388.7" y1="261.9" x2="388.7" y2="246.3"/>
<line id="XMLID_536_" class="st4" x1="393.8" y1="261.9" x2="393.8" y2="246.3"/>
<line id="XMLID_535_" class="st0" x1="393.8" y1="254.1" x2="402.5" y2="254.1"/>
<text transform="matrix(0.9995 0 0 1 383.4795 240.2511)" class="st1 st2 st3">C</text>
<text transform="matrix(0.9995 0 0 1 392.0752 240.2511)" class="st1 st2 st3">5</text>
<text transform="matrix(0.9995 0 0 1 373.9795 274.8204)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 380.0762 274.8204)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 383.4746 274.8204)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 389.5713 274.8204)" class="st1 st2 st3">uF</text>
<text transform="matrix(0.9995 0 0 1 403.3643 274.8204)" class="st1 st2 st3"> </text>
<line id="XMLID_532_" class="st0" x1="410.3" y1="254.1" x2="410.3" y2="254.1"/>
<line id="XMLID_531_" class="st0" x1="402.5" y1="254.1" x2="410.3" y2="254.1"/>
<line id="XMLID_530_" class="st0" x1="371.4" y1="254.1" x2="371.4" y2="254.1"/>
<line id="XMLID_529_" class="st0" x1="379.2" y1="254.1" x2="371.4" y2="254.1"/>
<text transform="matrix(0.9995 0 0 1 473.3193 272.2271)" class="st1 st2 st3">U</text>
<text transform="matrix(0.9995 0 0 1 481.915 272.2271)" class="st1 st2 st3">2</text>
<polygon id="XMLID_527_" class="st0" points="456.9,293 456.9,246.3 503.6,269.6 "/>
<line id="XMLID_526_" class="st0" x1="464.7" y1="256.7" x2="459.5" y2="256.7"/>
<line id="XMLID_525_" class="st0" x1="459.5" y1="282.6" x2="464.7" y2="282.6"/>
<line id="XMLID_524_" class="st0" x1="462.1" y1="285.2" x2="462.1" y2="280"/>
<line id="XMLID_523_" class="st0" x1="441.4" y1="285.2" x2="441.4" y2="285.2"/>
<line id="XMLID_522_" class="st0" x1="456.9" y1="285.2" x2="441.4" y2="285.2"/>
<line id="XMLID_521_" class="st0" x1="441.4" y1="254.1" x2="441.4" y2="254.1"/>
<line id="XMLID_520_" class="st0" x1="456.9" y1="254.1" x2="441.4" y2="254.1"/>
<line id="XMLID_519_" class="st0" x1="519.1" y1="269.6" x2="519.1" y2="269.6"/>
<line id="XMLID_518_" class="st0" x1="503.6" y1="269.6" x2="519.1" y2="269.6"/>
<path id="XMLID_517_" class="st5" d="M424.1,253.6c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
S424.1,254.4,424.1,253.6L424.1,253.6z"/>
<path id="XMLID_516_" class="st5" d="M361.9,253.6c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
S361.9,254.4,361.9,253.6L361.9,253.6z"/>
<path id="XMLID_515_" class="st5" d="M385.2,284.8c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C385.8,286.1,385.2,285.5,385.2,284.8L385.2,284.8z"/>
<path id="XMLID_514_" class="st5" d="M424.1,199.2c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
S424.1,199.9,424.1,199.2L424.1,199.2z"/>
<path id="XMLID_513_" class="st5" d="M284.1,269.2c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
S284.1,269.9,284.1,269.2L284.1,269.2z"/>
<path id="XMLID_512_" class="st5" d="M299.7,269.2c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
C300.3,270.5,299.7,269.9,299.7,269.2L299.7,269.2z"/>
<path id="XMLID_511_" class="st6" d="M175.3,362.5c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C175.9,363.8,175.3,363.3,175.3,362.5L175.3,362.5z"/>
<path id="XMLID_510_" class="st6" d="M385.2,362.5c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C385.8,363.8,385.2,363.3,385.2,362.5L385.2,362.5z"/>
<polyline id="XMLID_509_" class="st0" points="83.7,471.9 86.3,467.5 89.8,475.3 94.1,467.5 97.6,475.3 101.9,467.5 105.3,475.3
107.1,471.9 "/>
<text transform="matrix(0.9995 0 0 1 84.6025 462.36)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 93.1982 462.36)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 99.2949 462.36)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 77.6963 489.1441)" class="st1 st2 st3">15</text>
<text transform="matrix(0.9995 0 0 1 89.79 489.1441)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 93.2881 489.1441)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 99.2852 489.1441)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 108.7808 489.1441)" class="st1 st2 st3"> </text>
<line id="XMLID_506_" class="st0" x1="76" y1="471.9" x2="76" y2="471.9"/>
<line id="XMLID_505_" class="st0" x1="83.7" y1="471.9" x2="76" y2="471.9"/>
<line id="XMLID_504_" class="st0" x1="114.8" y1="471.9" x2="114.8" y2="471.9"/>
<line id="XMLID_503_" class="st0" x1="107.1" y1="471.9" x2="114.8" y2="471.9"/>
<polyline id="XMLID_502_" class="st0" points="192.6,433 196.9,435.6 189.1,439 196.9,443.3 189.1,446.8 196.9,451.1 189.1,454.6
192.6,456.3 "/>
<text transform="matrix(0.9995 0 0 1 198.6279 433.8394)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 207.2236 433.8394)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 213.3203 433.8394)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 198.6279 449.3961)" class="st1 st2 st3">16</text>
<text transform="matrix(0.9995 0 0 1 210.7217 449.3961)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 214.2197 449.3961)" class="st1 st2 st3">604k</text>
<text transform="matrix(0.9995 0 0 1 238.4077 449.3961)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 247.9033 449.3961)" class="st1 st2 st3"> </text>
<line id="XMLID_499_" class="st0" x1="192.6" y1="425.2" x2="192.6" y2="425.2"/>
<line id="XMLID_498_" class="st0" x1="192.6" y1="433" x2="192.6" y2="425.2"/>
<line id="XMLID_497_" class="st0" x1="192.6" y1="464.1" x2="192.6" y2="464.1"/>
<line id="XMLID_496_" class="st0" x1="192.6" y1="456.3" x2="192.6" y2="464.1"/>
<polyline id="XMLID_495_" class="st0" points="145.9,518.5 148.5,514.2 152,522 156.3,514.2 159.8,522 164.1,514.2 167.5,522
169.3,518.5 "/>
<text transform="matrix(0.9995 0 0 1 146.8008 509.0211)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 155.3965 509.0211)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 161.4932 509.0211)" class="st1 st2 st3">2</text>
<text transform="matrix(0.9995 0 0 1 139.8867 535.819)" class="st1 st2 st3">15</text>
<text transform="matrix(0.9995 0 0 1 151.9805 535.819)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 155.4785 535.819)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 161.4756 535.819)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 170.9712 535.819)" class="st1 st2 st3"> </text>
<line id="XMLID_492_" class="st0" x1="138.2" y1="518.5" x2="138.2" y2="518.5"/>
<line id="XMLID_491_" class="st0" x1="145.9" y1="518.5" x2="138.2" y2="518.5"/>
<line id="XMLID_490_" class="st0" x1="177" y1="518.5" x2="177" y2="518.5"/>
<line id="XMLID_489_" class="st0" x1="169.3" y1="518.5" x2="177" y2="518.5"/>
<polyline id="XMLID_488_" class="st0" points="177,541.9 181.4,544.5 173.6,547.9 181.4,552.2 173.6,555.7 181.4,560 173.6,563.5
177,565.2 "/>
<text transform="matrix(0.9995 0 0 1 182.2139 536.6764)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 190.8096 536.6764)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 196.9063 536.6764)" class="st1 st2 st3">3</text>
<text transform="matrix(0.9995 0 0 1 183.0781 556.5543)" class="st1 st2 st3">6</text>
<text transform="matrix(0.9995 0 0 1 189.1748 556.5543)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 192.5732 556.5543)" class="st1 st2 st3">351k</text>
<text transform="matrix(0.9995 0 0 1 216.7612 556.5543)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 226.2563 556.5543)" class="st1 st2 st3"> </text>
<line id="XMLID_485_" class="st0" x1="177" y1="534.1" x2="177" y2="534.1"/>
<line id="XMLID_484_" class="st0" x1="177" y1="541.9" x2="177" y2="534.1"/>
<line id="XMLID_483_" class="st0" x1="177" y1="573" x2="177" y2="573"/>
<line id="XMLID_482_" class="st0" x1="177" y1="565.2" x2="177" y2="573"/>
<line id="XMLID_481_" class="st0" x1="145.9" y1="417.4" x2="155.4" y2="417.4"/>
<line id="XMLID_480_" class="st4" x1="155.4" y1="425.2" x2="155.4" y2="409.6"/>
<line id="XMLID_479_" class="st4" x1="160.6" y1="425.2" x2="160.6" y2="409.6"/>
<line id="XMLID_478_" class="st0" x1="160.6" y1="417.4" x2="169.3" y2="417.4"/>
<text transform="matrix(0.9995 0 0 1 150.251 403.5914)" class="st1 st2 st3">C</text>
<text transform="matrix(0.9995 0 0 1 158.8467 403.5914)" class="st1 st2 st3">6</text>
<text transform="matrix(0.9995 0 0 1 140.751 438.1607)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 146.8477 438.1607)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 150.2461 438.1607)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 156.3428 438.1607)" class="st1 st2 st3">uF</text>
<text transform="matrix(0.9995 0 0 1 170.1362 438.1607)" class="st1 st2 st3"> </text>
<line id="XMLID_475_" class="st0" x1="177" y1="417.4" x2="177" y2="417.4"/>
<line id="XMLID_474_" class="st0" x1="169.3" y1="417.4" x2="177" y2="417.4"/>
<line id="XMLID_473_" class="st0" x1="138.2" y1="417.4" x2="138.2" y2="417.4"/>
<line id="XMLID_472_" class="st0" x1="145.9" y1="417.4" x2="138.2" y2="417.4"/>
<line id="XMLID_471_" class="st0" x1="145.9" y1="471.9" x2="155.4" y2="471.9"/>
<line id="XMLID_470_" class="st4" x1="155.4" y1="479.6" x2="155.4" y2="464.1"/>
<line id="XMLID_469_" class="st4" x1="160.6" y1="479.6" x2="160.6" y2="464.1"/>
<line id="XMLID_468_" class="st0" x1="160.6" y1="471.9" x2="169.3" y2="471.9"/>
<text transform="matrix(0.9995 0 0 1 150.251 458.0377)" class="st1 st2 st3">C</text>
<text transform="matrix(0.9995 0 0 1 158.8467 458.0377)" class="st1 st2 st3">7</text>
<text transform="matrix(0.9995 0 0 1 140.751 492.607)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 146.8477 492.607)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 150.2461 492.607)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 156.3428 492.607)" class="st1 st2 st3">uF</text>
<text transform="matrix(0.9995 0 0 1 170.1362 492.607)" class="st1 st2 st3"> </text>
<line id="XMLID_465_" class="st0" x1="177" y1="471.9" x2="177" y2="471.9"/>
<line id="XMLID_464_" class="st0" x1="169.3" y1="471.9" x2="177" y2="471.9"/>
<line id="XMLID_463_" class="st0" x1="138.2" y1="471.9" x2="138.2" y2="471.9"/>
<line id="XMLID_462_" class="st0" x1="145.9" y1="471.9" x2="138.2" y2="471.9"/>
<text transform="matrix(0.9995 0 0 1 240.0908 490.0143)" class="st1 st2 st3">U</text>
<text transform="matrix(0.9995 0 0 1 248.6865 490.0143)" class="st1 st2 st3">3</text>
<polygon id="XMLID_460_" class="st0" points="223.7,510.8 223.7,464.1 270.3,487.4 "/>
<line id="XMLID_459_" class="st0" x1="231.5" y1="474.5" x2="226.3" y2="474.5"/>
<line id="XMLID_458_" class="st0" x1="226.3" y1="500.4" x2="231.5" y2="500.4"/>
<line id="XMLID_457_" class="st0" x1="228.9" y1="503" x2="228.9" y2="497.8"/>
<line id="XMLID_456_" class="st0" x1="208.1" y1="503" x2="208.1" y2="503"/>
<line id="XMLID_455_" class="st0" x1="223.7" y1="503" x2="208.1" y2="503"/>
<line id="XMLID_454_" class="st0" x1="208.1" y1="471.9" x2="208.1" y2="471.9"/>
<line id="XMLID_453_" class="st0" x1="223.7" y1="471.9" x2="208.1" y2="471.9"/>
<line id="XMLID_452_" class="st0" x1="285.9" y1="487.4" x2="285.9" y2="487.4"/>
<line id="XMLID_451_" class="st0" x1="270.3" y1="487.4" x2="285.9" y2="487.4"/>
<path id="XMLID_450_" class="st5" d="M190.9,471.4c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
C191.4,472.7,190.9,472.2,190.9,471.4L190.9,471.4z"/>
<path id="XMLID_449_" class="st5" d="M128.7,471.4c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
C129.2,472.7,128.7,472.2,128.7,471.4L128.7,471.4z"/>
<path id="XMLID_448_" class="st5" d="M190.9,417c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C191.4,418.3,190.9,417.7,190.9,417L190.9,417z"/>
<line id="XMLID_447_" class="st0" x1="114.8" y1="541.9" x2="114.8" y2="551.4"/>
<line id="XMLID_446_" class="st4" x1="107.1" y1="551.4" x2="122.6" y2="551.4"/>
<line id="XMLID_445_" class="st4" x1="107.1" y1="556.6" x2="122.6" y2="556.6"/>
<line id="XMLID_444_" class="st0" x1="114.8" y1="556.6" x2="114.8" y2="565.2"/>
<text transform="matrix(0.9995 0 0 1 128.665 567.7955)" class="st1 st2 st3">C</text>
<text transform="matrix(0.9995 0 0 1 137.2607 567.7955)" class="st1 st2 st3">8</text>
<text transform="matrix(0.9995 0 0 1 125.2021 556.5543)" class="st1 st2 st3">61</text>
<text transform="matrix(0.9995 0 0 1 137.2959 556.5543)" class="st1 st2 st3">nF</text>
<text transform="matrix(0.9995 0 0 1 151.0889 556.5543)" class="st1 st2 st3"> </text>
<line id="XMLID_441_" class="st0" x1="114.8" y1="573" x2="114.8" y2="573"/>
<line id="XMLID_440_" class="st0" x1="114.8" y1="565.2" x2="114.8" y2="573"/>
<line id="XMLID_439_" class="st0" x1="114.8" y1="534.1" x2="114.8" y2="534.1"/>
<line id="XMLID_438_" class="st0" x1="114.8" y1="541.9" x2="114.8" y2="534.1"/>
<path id="XMLID_437_" class="st5" d="M175.3,518.1c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
C175.9,519.4,175.3,518.8,175.3,518.1L175.3,518.1z"/>
<polyline id="XMLID_436_" class="st0" points="317,471.9 319.6,467.5 323,475.3 327.3,467.5 330.8,475.3 335.1,467.5 338.6,475.3
340.3,471.9 "/>
<text transform="matrix(0.9995 0 0 1 317.832 462.36)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 326.4277 462.36)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 332.5244 462.36)" class="st1 st2 st3">4</text>
<text transform="matrix(0.9995 0 0 1 316.1035 489.1441)" class="st1 st2 st3">32</text>
<text transform="matrix(0.9995 0 0 1 328.1973 489.1441)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 337.6924 489.1441)" class="st1 st2 st3"> </text>
<line id="XMLID_433_" class="st0" x1="309.2" y1="471.9" x2="309.2" y2="471.9"/>
<line id="XMLID_432_" class="st0" x1="317" y1="471.9" x2="309.2" y2="471.9"/>
<line id="XMLID_431_" class="st0" x1="348.1" y1="471.9" x2="348.1" y2="471.9"/>
<line id="XMLID_430_" class="st0" x1="340.3" y1="471.9" x2="348.1" y2="471.9"/>
<polyline id="XMLID_429_" class="st0" points="425.8,433 430.1,435.6 422.4,439 430.1,443.3 422.4,446.8 430.1,451.1 422.4,454.6
425.8,456.3 "/>
<text transform="matrix(0.9995 0 0 1 431.8496 433.8394)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 440.4453 433.8394)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 446.542 433.8394)" class="st1 st2 st3">5</text>
<text transform="matrix(0.9995 0 0 1 431.8496 449.3961)" class="st1 st2 st3">20</text>
<text transform="matrix(0.9995 0 0 1 443.9434 449.3961)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 447.4414 449.3961)" class="st1 st2 st3">505k</text>
<text transform="matrix(0.9995 0 0 1 471.6299 449.3961)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 481.125 449.3961)" class="st1 st2 st3"> </text>
<line id="XMLID_426_" class="st0" x1="425.8" y1="425.2" x2="425.8" y2="425.2"/>
<line id="XMLID_425_" class="st0" x1="425.8" y1="433" x2="425.8" y2="425.2"/>
<line id="XMLID_424_" class="st0" x1="425.8" y1="464.1" x2="425.8" y2="464.1"/>
<line id="XMLID_423_" class="st0" x1="425.8" y1="456.3" x2="425.8" y2="464.1"/>
<polyline id="XMLID_422_" class="st0" points="355.8,503 358.4,498.7 361.9,506.4 366.2,498.7 369.7,506.4 374,498.7 377.4,506.4
379.2,503 "/>
<text transform="matrix(0.9995 0 0 1 347.2021 493.4644)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 355.7979 493.4644)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 361.8945 493.4644)" class="st1 st2 st3">6</text>
<text transform="matrix(0.9995 0 0 1 349.7949 520.2633)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 355.8916 520.2633)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 359.29 520.2633)" class="st1 st2 st3">16</text>
<text transform="matrix(0.9995 0 0 1 371.3838 520.2633)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 380.8789 520.2633)" class="st1 st2 st3"> </text>
<line id="XMLID_419_" class="st0" x1="348.1" y1="503" x2="348.1" y2="503"/>
<line id="XMLID_418_" class="st0" x1="355.8" y1="503" x2="348.1" y2="503"/>
<line id="XMLID_417_" class="st0" x1="386.9" y1="503" x2="386.9" y2="503"/>
<line id="XMLID_416_" class="st0" x1="379.2" y1="503" x2="386.9" y2="503"/>
<polyline id="XMLID_415_" class="st0" points="386.9,518.5 391.3,521.1 383.5,524.6 391.3,528.9 383.5,532.4 391.3,536.7
383.5,540.1 386.9,541.9 "/>
<text transform="matrix(0.9995 0 0 1 392.1221 552.233)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 400.7178 552.233)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 406.8145 552.233)" class="st1 st2 st3">7</text>
<text transform="matrix(0.9995 0 0 1 392.9873 533.2262)" class="st1 st2 st3">32</text>
<text transform="matrix(0.9995 0 0 1 405.0811 533.2262)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 414.5762 533.2262)" class="st1 st2 st3"> </text>
<line id="XMLID_412_" class="st0" x1="386.9" y1="510.8" x2="386.9" y2="510.8"/>
<line id="XMLID_411_" class="st0" x1="386.9" y1="518.5" x2="386.9" y2="510.8"/>
<line id="XMLID_410_" class="st0" x1="386.9" y1="549.6" x2="386.9" y2="549.6"/>
<line id="XMLID_409_" class="st0" x1="386.9" y1="541.9" x2="386.9" y2="549.6"/>
<polyline id="XMLID_408_" class="st0" points="425.8,541.9 430.1,544.5 422.4,547.9 430.1,552.2 422.4,555.7 430.1,560
422.4,563.5 425.8,565.2 "/>
<text transform="matrix(0.9995 0 0 1 431.8496 542.733)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 440.4453 542.733)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 446.542 542.733)" class="st1 st2 st3">8</text>
<text transform="matrix(0.9995 0 0 1 431.8496 558.2828)" class="st1 st2 st3">33</text>
<text transform="matrix(0.9995 0 0 1 443.9434 558.2828)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 447.4414 558.2828)" class="st1 st2 st3">384k</text>
<text transform="matrix(0.9995 0 0 1 471.6299 558.2828)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 481.125 558.2828)" class="st1 st2 st3"> </text>
<line id="XMLID_405_" class="st0" x1="425.8" y1="534.1" x2="425.8" y2="534.1"/>
<line id="XMLID_404_" class="st0" x1="425.8" y1="541.9" x2="425.8" y2="534.1"/>
<line id="XMLID_403_" class="st0" x1="425.8" y1="573" x2="425.8" y2="573"/>
<line id="XMLID_402_" class="st0" x1="425.8" y1="565.2" x2="425.8" y2="573"/>
<line id="XMLID_401_" class="st0" x1="379.2" y1="417.4" x2="388.7" y2="417.4"/>
<line id="XMLID_400_" class="st4" x1="388.7" y1="425.2" x2="388.7" y2="409.6"/>
<line id="XMLID_399_" class="st4" x1="393.8" y1="425.2" x2="393.8" y2="409.6"/>
<line id="XMLID_398_" class="st0" x1="393.8" y1="417.4" x2="402.5" y2="417.4"/>
<text transform="matrix(0.9995 0 0 1 383.4795 403.5914)" class="st1 st2 st3">C</text>
<text transform="matrix(0.9995 0 0 1 392.0752 403.5914)" class="st1 st2 st3">9</text>
<text transform="matrix(0.9995 0 0 1 373.9795 438.1607)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 380.0762 438.1607)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 383.4746 438.1607)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 389.5713 438.1607)" class="st1 st2 st3">uF</text>
<text transform="matrix(0.9995 0 0 1 403.3643 438.1607)" class="st1 st2 st3"> </text>
<line id="XMLID_395_" class="st0" x1="410.3" y1="417.4" x2="410.3" y2="417.4"/>
<line id="XMLID_394_" class="st0" x1="402.5" y1="417.4" x2="410.3" y2="417.4"/>
<line id="XMLID_393_" class="st0" x1="371.4" y1="417.4" x2="371.4" y2="417.4"/>
<line id="XMLID_392_" class="st0" x1="379.2" y1="417.4" x2="371.4" y2="417.4"/>
<line id="XMLID_391_" class="st0" x1="379.2" y1="471.9" x2="388.7" y2="471.9"/>
<line id="XMLID_390_" class="st4" x1="388.7" y1="479.6" x2="388.7" y2="464.1"/>
<line id="XMLID_389_" class="st4" x1="393.8" y1="479.6" x2="393.8" y2="464.1"/>
<line id="XMLID_388_" class="st0" x1="393.8" y1="471.9" x2="402.5" y2="471.9"/>
<text transform="matrix(0.9995 0 0 1 380.0225 458.0377)" class="st1 st2 st3">C</text>
<text transform="matrix(0.9995 0 0 1 388.6182 458.0377)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 394.7148 458.0377)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 373.9795 492.607)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 380.0762 492.607)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 383.4746 492.607)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 389.5713 492.607)" class="st1 st2 st3">uF</text>
<text transform="matrix(0.9995 0 0 1 403.3643 492.607)" class="st1 st2 st3"> </text>
<line id="XMLID_385_" class="st0" x1="410.3" y1="471.9" x2="410.3" y2="471.9"/>
<line id="XMLID_384_" class="st0" x1="402.5" y1="471.9" x2="410.3" y2="471.9"/>
<line id="XMLID_383_" class="st0" x1="371.4" y1="471.9" x2="371.4" y2="471.9"/>
<line id="XMLID_382_" class="st0" x1="379.2" y1="471.9" x2="371.4" y2="471.9"/>
<text transform="matrix(0.9995 0 0 1 473.3193 490.0143)" class="st1 st2 st3">U</text>
<text transform="matrix(0.9995 0 0 1 481.915 490.0143)" class="st1 st2 st3">4</text>
<polygon id="XMLID_380_" class="st0" points="456.9,510.8 456.9,464.1 503.6,487.4 "/>
<line id="XMLID_379_" class="st0" x1="464.7" y1="474.5" x2="459.5" y2="474.5"/>
<line id="XMLID_378_" class="st0" x1="459.5" y1="500.4" x2="464.7" y2="500.4"/>
<line id="XMLID_377_" class="st0" x1="462.1" y1="503" x2="462.1" y2="497.8"/>
<line id="XMLID_376_" class="st0" x1="441.4" y1="503" x2="441.4" y2="503"/>
<line id="XMLID_375_" class="st0" x1="456.9" y1="503" x2="441.4" y2="503"/>
<line id="XMLID_374_" class="st0" x1="441.4" y1="471.9" x2="441.4" y2="471.9"/>
<line id="XMLID_373_" class="st0" x1="456.9" y1="471.9" x2="441.4" y2="471.9"/>
<line id="XMLID_372_" class="st0" x1="519.1" y1="487.4" x2="519.1" y2="487.4"/>
<line id="XMLID_371_" class="st0" x1="503.6" y1="487.4" x2="519.1" y2="487.4"/>
<path id="XMLID_370_" class="st5" d="M424.1,471.4c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
S424.1,472.2,424.1,471.4L424.1,471.4z"/>
<path id="XMLID_369_" class="st5" d="M361.9,471.4c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
S361.9,472.2,361.9,471.4L361.9,471.4z"/>
<path id="XMLID_368_" class="st5" d="M385.2,502.5c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
C385.8,503.8,385.2,503.3,385.2,502.5L385.2,502.5z"/>
<path id="XMLID_367_" class="st5" d="M424.1,417c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
S424.1,417.7,424.1,417L424.1,417z"/>
<path id="XMLID_366_" class="st5" d="M284.1,487c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3S284.1,487.7,284.1,487
L284.1,487z"/>
<path id="XMLID_365_" class="st5" d="M299.7,487c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C300.3,488.3,299.7,487.7,299.7,487L299.7,487z"/>
<path id="XMLID_364_" class="st6" d="M175.3,580.3c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C175.9,581.6,175.3,581,175.3,580.3L175.3,580.3z"/>
<path id="XMLID_363_" class="st6" d="M385.2,580.3c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C385.8,581.6,385.2,581,385.2,580.3L385.2,580.3z"/>
<path id="XMLID_362_" class="st6" d="M113.1,362.5c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
S113.1,363.3,113.1,362.5L113.1,362.5z"/>
<path id="XMLID_361_" class="st6" d="M113.1,580.3c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
S113.1,581,113.1,580.3L113.1,580.3z"/>
<line id="XMLID_360_" class="st0" x1="278.1" y1="596.3" x2="293.6" y2="596.3"/>
<line id="XMLID_359_" class="st0" x1="280.7" y1="598.9" x2="291.1" y2="598.9"/>
<line id="XMLID_358_" class="st0" x1="283.3" y1="601.5" x2="288.5" y2="601.5"/>
<line id="XMLID_357_" class="st0" x1="285.9" y1="588.5" x2="285.9" y2="588.5"/>
<line id="XMLID_356_" class="st0" x1="285.9" y1="596.3" x2="285.9" y2="588.5"/>
<text transform="matrix(0.9995 0 0 1 613.251 505.5709)" class="st1 st2 st3">U</text>
<text transform="matrix(0.9995 0 0 1 621.8467 505.5709)" class="st1 st2 st3">5</text>
<polygon id="XMLID_354_" class="st0" points="596.8,526.3 596.8,479.6 643.5,503 "/>
<line id="XMLID_353_" class="st0" x1="604.6" y1="490" x2="599.4" y2="490"/>
<line id="XMLID_352_" class="st0" x1="599.4" y1="515.9" x2="604.6" y2="515.9"/>
<line id="XMLID_351_" class="st0" x1="602" y1="518.5" x2="602" y2="513.3"/>
<line id="XMLID_350_" class="st0" x1="581.3" y1="518.5" x2="581.3" y2="518.5"/>
<line id="XMLID_349_" class="st0" x1="596.8" y1="518.5" x2="581.3" y2="518.5"/>
<line id="XMLID_348_" class="st0" x1="581.3" y1="487.4" x2="581.3" y2="487.4"/>
<line id="XMLID_347_" class="st0" x1="596.8" y1="487.4" x2="581.3" y2="487.4"/>
<line id="XMLID_346_" class="st0" x1="659" y1="503" x2="659" y2="503"/>
<line id="XMLID_345_" class="st0" x1="643.5" y1="503" x2="659" y2="503"/>
<polyline id="XMLID_344_" class="st0" points="534.6,487.4 537.2,483.1 540.7,490.9 545,483.1 548.5,490.9 552.8,483.1
556.2,490.9 558,487.4 "/>
<text transform="matrix(0.9995 0 0 1 534.6533 477.9156)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 543.249 477.9156)" class="st1 st2 st3">1</text>
<text transform="matrix(0.9995 0 0 1 549.3457 477.9156)" class="st1 st2 st3">9</text>
<text transform="matrix(0.9995 0 0 1 530.333 504.6998)" class="st1 st2 st3">10k</text>
<text transform="matrix(0.9995 0 0 1 548.5234 504.6998)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 558.0186 504.6998)" class="st1 st2 st3"> </text>
<line id="XMLID_341_" class="st0" x1="526.9" y1="487.4" x2="526.9" y2="487.4"/>
<line id="XMLID_340_" class="st0" x1="534.6" y1="487.4" x2="526.9" y2="487.4"/>
<line id="XMLID_339_" class="st0" x1="565.7" y1="487.4" x2="565.7" y2="487.4"/>
<line id="XMLID_338_" class="st0" x1="558" y1="487.4" x2="565.7" y2="487.4"/>
<polyline id="XMLID_337_" class="st0" points="589.1,448.5 591.7,444.2 595.1,452 599.4,444.2 602.9,452 607.2,444.2 610.7,452
612.4,448.5 "/>
<text transform="matrix(0.9995 0 0 1 589.0732 439.024)" class="st1 st2 st3">R</text>
<text transform="matrix(0.9995 0 0 1 597.6689 439.024)" class="st1 st2 st3">2</text>
<text transform="matrix(0.9995 0 0 1 603.7656 439.024)" class="st1 st2 st3">0</text>
<text transform="matrix(0.9995 0 0 1 576.9727 465.8102)" class="st1 st2 st3">4</text>
<text transform="matrix(0.9995 0 0 1 583.0693 465.8102)" class="st1 st2 st3">.</text>
<text transform="matrix(0.9995 0 0 1 586.4678 465.8102)" class="st1 st2 st3">840k</text>
<text transform="matrix(0.9995 0 0 1 610.6553 465.8102)" class="st1 st2 st3">Ω</text>
<text transform="matrix(0.9995 0 0 1 620.1514 465.8102)" class="st1 st2 st3"> </text>
<line id="XMLID_334_" class="st0" x1="581.3" y1="448.5" x2="581.3" y2="448.5"/>
<line id="XMLID_333_" class="st0" x1="589.1" y1="448.5" x2="581.3" y2="448.5"/>
<line id="XMLID_332_" class="st0" x1="620.2" y1="448.5" x2="620.2" y2="448.5"/>
<line id="XMLID_331_" class="st0" x1="612.4" y1="448.5" x2="620.2" y2="448.5"/>
<path id="XMLID_330_" class="st5" d="M571.8,487c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3S571.8,487.7,571.8,487
L571.8,487z"/>
<path id="XMLID_329_" class="st5" d="M517.4,269.2c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
C517.9,270.5,517.4,269.9,517.4,269.2L517.4,269.2z"/>
<path id="XMLID_328_" class="st5" d="M58.7,494.8c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
C59.3,496.1,58.7,495.5,58.7,494.8L58.7,494.8z"/>
<path id="XMLID_327_" class="st5" d="M517.4,487c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
C517.9,488.3,517.4,487.7,517.4,487L517.4,487z"/>
<path id="XMLID_326_" class="st6" d="M424.1,580.3c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
S424.1,581,424.1,580.3L424.1,580.3z"/>
<path id="XMLID_128_" class="st7" d="M58.7,277c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3S58.7,277.7,58.7,277
L58.7,277z"/>
<text transform="matrix(0.9995 0 0 1 24.1338 273.5851)" class="st8 st2 st3">Input</text>
<path id="XMLID_122_" class="st9" d="M657.3,502.5c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3
C657.9,503.8,657.3,503.3,657.3,502.5L657.3,502.5z"/>
<text transform="matrix(0.9995 0 0 1 616.708 561.7457)" class="st10 st2 st3">Output</text>
<path id="XMLID_118_" class="st6" d="M284.1,580.3c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3S284.1,581,284.1,580.3
L284.1,580.3z"/>
<line id="XMLID_117_" class="st11" x1="177" y1="254.1" x2="192.6" y2="254.1"/>
<line id="XMLID_116_" class="st11" x1="192.6" y1="254.1" x2="192.6" y2="246.3"/>
<polyline id="XMLID_115_" class="st11" points="138.2,199.6 130.4,199.6 130.4,254.1 "/>
<line id="XMLID_114_" class="st11" x1="130.4" y1="254.1" x2="138.2" y2="254.1"/>
<line id="XMLID_113_" class="st11" x1="208.1" y1="254.1" x2="192.6" y2="254.1"/>
<line id="XMLID_112_" class="st11" x1="177" y1="199.6" x2="192.6" y2="199.6"/>
<line id="XMLID_111_" class="st11" x1="192.6" y1="199.6" x2="192.6" y2="207.4"/>
<polyline id="XMLID_110_" class="st11" points="208.1,285.2 177,285.2 177,300.7 "/>
<path id="XMLID_109_" class="st11" d="M177,300.7"/>
<line id="XMLID_108_" class="st11" x1="177" y1="316.3" x2="177" y2="300.7"/>
<line id="XMLID_107_" class="st11" x1="114.8" y1="254.1" x2="130.4" y2="254.1"/>
<polyline id="XMLID_106_" class="st11" points="114.8,316.3 114.8,285.2 130.4,285.2 130.4,254.1 "/>
<line id="XMLID_105_" class="st11" x1="410.3" y1="254.1" x2="425.8" y2="254.1"/>
<line id="XMLID_104_" class="st11" x1="425.8" y1="254.1" x2="425.8" y2="246.3"/>
<line id="XMLID_103_" class="st11" x1="425.8" y1="316.3" x2="425.8" y2="254.1"/>
<polyline id="XMLID_102_" class="st11" points="371.4,199.6 363.6,199.6 363.6,254.1 "/>
<line id="XMLID_101_" class="st11" x1="363.6" y1="254.1" x2="371.4" y2="254.1"/>
<line id="XMLID_100_" class="st11" x1="348.1" y1="254.1" x2="363.6" y2="254.1"/>
<line id="XMLID_99_" class="st11" x1="441.4" y1="254.1" x2="425.8" y2="254.1"/>
<line id="XMLID_98_" class="st11" x1="386.9" y1="293" x2="386.9" y2="285.2"/>
<path id="XMLID_97_" class="st11" d="M386.9,285.2"/>
<line id="XMLID_96_" class="st11" x1="441.4" y1="285.2" x2="386.9" y2="285.2"/>
<line id="XMLID_95_" class="st11" x1="410.3" y1="199.6" x2="425.8" y2="199.6"/>
<line id="XMLID_94_" class="st11" x1="425.8" y1="199.6" x2="425.8" y2="207.4"/>
<path id="XMLID_93_" class="st11" d="M285.9,269.6"/>
<polyline id="XMLID_92_" class="st11" points="285.9,269.6 285.9,199.6 192.6,199.6 "/>
<polyline id="XMLID_91_" class="st11" points="309.2,254.1 301.4,254.1 301.4,269.6 "/>
<polyline id="XMLID_90_" class="st11" points="301.4,269.6 301.4,285.2 348.1,285.2 "/>
<line id="XMLID_89_" class="st11" x1="285.9" y1="269.6" x2="301.4" y2="269.6"/>
<line id="XMLID_88_" class="st12" x1="177" y1="363" x2="177" y2="355.2"/>
<line id="XMLID_87_" class="st12" x1="386.9" y1="331.9" x2="386.9" y2="363"/>
<line id="XMLID_86_" class="st12" x1="386.9" y1="363" x2="177" y2="363"/>
<polyline id="XMLID_85_" class="st12" points="425.8,355.2 425.8,363 386.9,363 "/>
<line id="XMLID_84_" class="st11" x1="177" y1="471.9" x2="192.6" y2="471.9"/>
<line id="XMLID_83_" class="st11" x1="192.6" y1="471.9" x2="192.6" y2="464.1"/>
<polyline id="XMLID_82_" class="st11" points="138.2,417.4 130.4,417.4 130.4,471.9 "/>
<line id="XMLID_81_" class="st11" x1="130.4" y1="471.9" x2="138.2" y2="471.9"/>
<line id="XMLID_80_" class="st11" x1="208.1" y1="471.9" x2="192.6" y2="471.9"/>
<line id="XMLID_79_" class="st11" x1="177" y1="417.4" x2="192.6" y2="417.4"/>
<line id="XMLID_78_" class="st11" x1="192.6" y1="417.4" x2="192.6" y2="425.2"/>
<polyline id="XMLID_77_" class="st11" points="208.1,503 177,503 177,518.5 "/>
<path id="XMLID_76_" class="st11" d="M177,518.5"/>
<line id="XMLID_75_" class="st11" x1="177" y1="534.1" x2="177" y2="518.5"/>
<line id="XMLID_74_" class="st11" x1="114.8" y1="471.9" x2="130.4" y2="471.9"/>
<polyline id="XMLID_73_" class="st11" points="114.8,534.1 114.8,503 130.4,503 130.4,471.9 "/>
<line id="XMLID_72_" class="st11" x1="410.3" y1="471.9" x2="425.8" y2="471.9"/>
<line id="XMLID_71_" class="st11" x1="425.8" y1="471.9" x2="425.8" y2="464.1"/>
<line id="XMLID_70_" class="st11" x1="425.8" y1="534.1" x2="425.8" y2="471.9"/>
<polyline id="XMLID_69_" class="st11" points="371.4,417.4 363.6,417.4 363.6,471.9 "/>
<line id="XMLID_68_" class="st11" x1="363.6" y1="471.9" x2="371.4" y2="471.9"/>
<line id="XMLID_67_" class="st11" x1="348.1" y1="471.9" x2="363.6" y2="471.9"/>
<line id="XMLID_66_" class="st11" x1="441.4" y1="471.9" x2="425.8" y2="471.9"/>
<line id="XMLID_65_" class="st11" x1="386.9" y1="510.8" x2="386.9" y2="503"/>
<path id="XMLID_64_" class="st11" d="M386.9,503"/>
<line id="XMLID_63_" class="st11" x1="441.4" y1="503" x2="386.9" y2="503"/>
<line id="XMLID_62_" class="st11" x1="410.3" y1="417.4" x2="425.8" y2="417.4"/>
<line id="XMLID_61_" class="st11" x1="425.8" y1="417.4" x2="425.8" y2="425.2"/>
<path id="XMLID_60_" class="st11" d="M285.9,487.4"/>
<polyline id="XMLID_59_" class="st11" points="285.9,487.4 285.9,417.4 192.6,417.4 "/>
<polyline id="XMLID_58_" class="st11" points="309.2,471.9 301.4,471.9 301.4,487.4 "/>
<polyline id="XMLID_57_" class="st11" points="301.4,487.4 301.4,503 348.1,503 "/>
<line id="XMLID_56_" class="st11" x1="285.9" y1="487.4" x2="301.4" y2="487.4"/>
<line id="XMLID_55_" class="st12" x1="177" y1="580.8" x2="177" y2="573"/>
<line id="XMLID_54_" class="st12" x1="386.9" y1="549.6" x2="386.9" y2="580.8"/>
<line id="XMLID_53_" class="st12" x1="114.8" y1="355.2" x2="114.8" y2="363"/>
<line id="XMLID_52_" class="st12" x1="114.8" y1="363" x2="177" y2="363"/>
<line id="XMLID_51_" class="st12" x1="114.8" y1="573" x2="114.8" y2="580.8"/>
<polyline id="XMLID_50_" class="st12" points="114.8,363 37.1,363 37.1,580.8 114.8,580.8 "/>
<line id="XMLID_49_" class="st11" x1="581.3" y1="487.4" x2="573.5" y2="487.4"/>
<line id="XMLID_48_" class="st11" x1="573.5" y1="487.4" x2="565.7" y2="487.4"/>
<polyline id="XMLID_47_" class="st11" points="581.3,448.5 573.5,448.5 573.5,487.4 "/>
<path id="XMLID_46_" class="st11" d="M519.1,269.6"/>
<polyline id="XMLID_45_" class="st11" points="519.1,269.6 519.1,199.6 425.8,199.6 "/>
<polyline id="XMLID_44_" class="st11" points="76,471.9 60.4,471.9 60.4,495.2 "/>
<polyline id="XMLID_43_" class="st11" points="60.4,495.2 60.4,518.5 138.2,518.5 "/>
<polyline id="XMLID_42_" class="st11" points="519.1,269.6 519.1,386.3 52.6,386.3 52.6,495.2 60.4,495.2 "/>
<path id="XMLID_41_" class="st11" d="M519.1,487.4"/>
<polyline id="XMLID_40_" class="st11" points="519.1,487.4 519.1,417.4 425.8,417.4 "/>
<line id="XMLID_39_" class="st11" x1="526.9" y1="487.4" x2="519.1" y2="487.4"/>
<line id="XMLID_38_" class="st12" x1="425.8" y1="573" x2="425.8" y2="580.8"/>
<line id="XMLID_37_" class="st12" x1="425.8" y1="580.8" x2="386.9" y2="580.8"/>
<polyline id="XMLID_36_" class="st12" points="581.3,518.5 581.3,580.8 425.8,580.8 "/>
<line id="XMLID_35_" class="st12" x1="114.8" y1="580.8" x2="177" y2="580.8"/>
<polyline id="XMLID_26_" class="st13" points="76,254.1 60.4,254.1 60.4,277.4 "/>
<polyline id="XMLID_25_" class="st13" points="60.4,277.4 60.4,300.7 138.2,300.7 "/>
<line id="XMLID_715_" class="st13" x1="22.4" y1="277.4" x2="60.4" y2="277.4"/>
<path id="XMLID_13_" class="st14" d="M659,503"/>
<polyline id="XMLID_12_" class="st14" points="620.2,448.5 659,448.5 659,503 "/>
<line id="XMLID_5_" class="st12" x1="386.9" y1="580.8" x2="285.9" y2="580.8"/>
<line id="XMLID_4_" class="st12" x1="285.9" y1="580.8" x2="177" y2="580.8"/>
<line id="XMLID_3_" class="st12" x1="285.9" y1="588.5" x2="285.9" y2="580.8"/>
</g>
<rect id="XMLID_1_" x="55" y="172.4" class="st15" width="235.4" height="187.8"/>
<rect id="XMLID_702_" x="55" y="389.6" class="st15" width="235.4" height="187.8"/>
<rect id="XMLID_703_" x="296" y="172.4" class="st15" width="227.4" height="187.8"/>
<rect id="XMLID_704_" x="296" y="389.6" class="st15" width="227.4" height="187.8"/>
<rect id="XMLID_705_" x="526.9" y="389.6" class="st15" width="140.4" height="187.8"/>
<text id="XMLID_706_" transform="matrix(0.9995 0 0 1 58 183.4415)" class="st16 st2 st17">Unit 1</text>
<text id="XMLID_707_" transform="matrix(0.9995 0 0 1 541.1299 400.6109)" class="st16 st2 st17">Gain Adjustment Unit</text>
<text id="XMLID_708_" transform="matrix(1 0 0 1 643.1926 622.4421)" class="st2 st18">Filter</text>
<text id="XMLID_709_" transform="matrix(0.9995 0 0 1 299 183.4415)" class="st16 st2 st17">Unit 2</text>
<text id="XMLID_710_" transform="matrix(0.9995 0 0 1 58 400.6104)" class="st16 st2 st17">Unit 3</text>
<text id="XMLID_711_" transform="matrix(0.9995 0 0 1 299 400.6109)" class="st16 st2 st17">Unit 4</text>
<g id="XMLID_712_">
<g id="XMLID_728_">
<polyline id="XMLID_736_" class="st19" points="672.3,601.4 672.3,607.4 666.3,607.4 "/>
<line id="XMLID_735_" class="st20" x1="654.2" y1="607.4" x2="32.5" y2="607.4"/>
<polyline id="XMLID_734_" class="st19" points="26.5,607.4 20.5,607.4 20.5,601.4 "/>
<line id="XMLID_733_" class="st21" x1="20.5" y1="589.2" x2="20.5" y2="179.5"/>
<polyline id="XMLID_732_" class="st19" points="20.5,173.4 20.5,167.4 26.5,167.4 "/>
<line id="XMLID_731_" class="st20" x1="38.6" y1="167.4" x2="660.2" y2="167.4"/>
<polyline id="XMLID_730_" class="st19" points="666.3,167.4 672.3,167.4 672.3,173.4 "/>
<line id="XMLID_729_" class="st21" x1="672.3" y1="185.6" x2="672.3" y2="595.3"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 54 KiB

Loading…
Cancel
Save