CKT Lab Manual
CKT Lab Manual
(EEC-253/EEC-254)
B.Tech. Programme
(IT)
LAB MANUAL
4. Introduction
11. References
Department of Information Technology
Vision of Department
To build a culture of innovation and research in students and make them capable to solve
upcoming challenges of human life using computing.
Mission of Department
M1. To develop 'educational pathways' so that students can take their career towards
success.
M2. To imbibe curiosity and support innovativeness by providing guidance to use the
technology effectively.
M3. To inculcate management skills, integrity, honesty and human values through
curricular, co-curricular and extra-curricular activities.
Program Educational Objectives
PSO 2: Ability to explore and develop innovative ideas to solve real world problem using IT
skills.
2. PROGRAM OUTCOME (POs)
Circuit
● Ohm’s Law: V=IRV = IRV=IR, which relates voltage, current, and resistance.
● Kirchhoff’s Laws:
○ Kirchhoff’s Current Law (KCL): The total current entering a junction equals the
total current leaving it.
○ Kirchhoff’s Voltage Law (KVL): The sum of all voltages in a closed loop equals
zero.
Circuit analysis determines the behavior of electrical circuits under various conditions. Key
methods include:
System
System theory extends the concept of circuits to a broader domain, analyzing the behavior of
interconnected components or systems. It is widely used in fields like control engineering,
communication systems, and signal processing.
Signals represent the input and output of systems. Understanding signals is crucial in system
theory. A signal is a function that is used to describe an observed physical variable of a physical
process; it is an abstract mathematical description of the observation. Hence, a signal provides
the most basic connecting link between the physical process, in which we are ultimately
interested, and the mathematical analysis techniques developed in this text. Everything grows
from a signal.
Students’ Responsibilities:
The students are expected to be read the lab experiment and related textbook materials before
coming to Lab. Active participation by each student in lab is expected. They are advised not to
make unnecessary R & D without permission of the faculty or lab assistant for the safety of
lab. Understanding the concepts and procedure of each lab is necessary for successful
completion of the lab. They must keep a professional and accurate record of the lab experiments
in a laboratory notebook. Students should report any errors in the lab manual to the Lab
assistant.
• Matlab
Operating System:
• Windows 10.
Hardware Requirements:
List of Equipments
14 Study the transient response of series RLC circuit for different types of waveforms on
CRO and verify using MATLAB
15 Study the time response of a simulated linear system and verify the unit step and square
wave response of first order and second order, type 0,1 system
7. Experiment-Course Outcome Matrix
Experiment No. 1
Starting Matlab: Open the Matlab command window by double clicking on the Matlab icon.
This text-based interface will be the way you will control most of Matlab's functionality.
Matlab as a calculator: You can use the Matlab command window as a calculator, with basic operations
+, -, *, / and ^ representing addition, subtraction, multiplication, division and exponentiation (raising a
number to a given exponent), respectively. For example, type 4 +6 + 2 and press <Return>. Observe that
you can edit previous commands by using the up and down keys.
Matlab as a programming environment: You can also save the values of the variables as you go. For
example, type a=2; b=6; c=2; d=a+b+c; to see your answer, type d and press <Return>.
Note that variable names are case sensitive, can contain up to 31 characters, must start with a letter and
cannot contain punctuation. Note also that commands which are terminated by a semicolon will not
produce any displayed output in the command window, whereas commands which are not terminated by a
semicolon will display the results in the command window.
Online help: Matlab has an extensive on-line reference. To view information about a given command,
type help <command name>. To do a keyword search, type look for <keyword>. Most commands have
rather intuitive names, as we will see below.
Mathematical functions: Most standard mathematical functions have standard names. For example, type
help <command name> for the following commands: cos, sin, atan, exp, log, sqrt, abs, angle, conj, real,
imag. Note that most of these functions can be applied directly to vectors, as well as to scalars.
Constructing vectors and matrices: Vectors and matrices are most conveniently formed in a row-wise
fashion, with brackets delimiting the matrix construction commands, commas separating the elements of
the row, and semicolons separating the rows. For example, type [1,2,3;4,5,6;7,8,9] and press <Return>.
Special vectors and matrices: Matlab provides some convenient routines for producing vectors and
matrices with special structure. To discover some of these, consult the help for colon, punct, linspace,
logspace, zeros and ones.
Indexing of elements of vectors and matrices: The first element of a vector is indexed by 1, and the top
left corner of a matrix is indexed by (1,1). For example, type A=[1,2,3;4,5,6;7,8,9] and press <Return>.
Then type A (1, 1) and press <Return>. Repeat for A(1,2), A(2,1) and A(3,3).
Displaying and listening to results: Matlab has some convenient routines for displaying results. Consult
the help on plot, subplot, axis and hold. You may also want to listen to some of the waveforms you
generate. Type help sound or help soundsc for information on how to do this.
Flow control: Matlab has many of the flow control functions of standard programming languages, such
as C. Type help for, help while, and help if for information on for loops, while loops and conditional
execution statements, respectively.
Aborting execution: A command can be aborted by typing <CTRL-c>. That is, by holding down the
<CTRL> key and pressing c.
Clearing variables: You can clear the current list of saved variables using the clear command.
Matlab Script and Function Files
For simple problems, it often suffices to use Matlab like a calculator, but for more complicated problems
it would be more convenient to store the sequence of instructions in a (text) file, and simply type the name
of that file. This is exactly what the Matlab script and function files allow you to do. (Matlab is an
interpretive environment, so these commands are interpreted command-by-command each time you
invoke the file. There is no need for external compilation and linking as in compiler-based languages,
such as C.)
The Matlab script and function files are text files and should be saved with a `.m' extension.
For this reason they are often called m-files. You can use your favorite text editor to write these files, but
on a Windows machine the simplest thing to do is to choose New from the File menu above the Matlab
command window, and select M-File. This will invoke a simple text editor with the standard Windows
`look and feel' which will suffice for our labs. You can add comments to these files by inserting % signs.
Any text on a given line to the right of a % sign is ignored by Matlab.
Script Files are simply a collection of Matlab commands which are executed sequentially. The commands
operate on the variables in the current workspace, just as if they were typed at the prompt. Once you have
typed the sequence of commands in the text editor, and have saved the file, you can run the script file by
just typing the filename, without the `.m' extension, at the prompt. Note that Matlab will have to have the
folder in which the file is saved on its search path. You can add a folder to the search path by using the
edit path command.
Function Files are different from script files in that they have a formal set of input variables, a formal set
of output variables, and work on a variable space which is independent of the main workspace. As such,
they are much like `function' subroutines in standard programming languages, such as C. You can create
and save function files in the same way as script files.
1. Basic Commands
Starting MATLAB
Arithmetic Operations
● +: Addition
● -: Subtraction
● *: Multiplication
● /: Division
● ^: Power
Example:
matlab
CopyEdit
a = 5;
b = 3;
c = a + b; % c = 8
Relational Operators
Example:
matlab
CopyEdit
result = (5 > 3); % result = true (1)
2. Matrix Operations
Creating Matrices:
matlab
CopyEdit
A = [1 2 3; 4 5 6; 7 8 9];
B = [10; 20; 30];
Transposing a Matrix:
matlab
CopyEdit
AT = A'; % Transpose of A
Matrix Multiplication:
matlab
CopyEdit
C = A * B;
Element-wise Operations: Use a dot before the operator (e.g., .*, ./, .^).
matlab
CopyEdit
D = A .* A; % Element-wise multiplication
Example:
matlab
CopyEdit
x = pi / 4;
y = sin(x); % y = 0.7071
Plotting a 2D Graph:
matlab
CopyEdit
x = 0:0.1:2*pi; % Generate x values
y = sin(x); % Compute sine values
plot(x, y); % Plot y vs. x
Subplots:
matlab
CopyEdit
subplot(2, 1, 1);
plot(x, sin(x));
subplot(2, 1, 2);
plot(x, cos(x));
6. Programming Constructs
If-Else:
matlab
CopyEdit
if a > b
disp('a is greater than b');
else
disp('b is greater than or equal to a');
end
For Loop:
matlab
CopyEdit
for i = 1:10
disp(i);
end
While Loop:
matlab
CopyEdit
i = 1;
while i <= 10
disp(i);
i = i + 1;
end
Aim: Write a MATLAB program for generation of basic signals Sine, Cosine, Ramp, Impulse,
Exponential in continuous and discrete domains.
Procedure:-
● Open MATLAB
● Open new M-file
● Type the program
● Save in current directory
● Compile and Run the program
● For the output see command window\ Figure window
Program:
clc;
clear all;
close all;
t = -2:1:2;
y = [zeros(1,2),ones(1,1),zeros(1,2)];
subplot(2,2,1);
stem(t,y);
ylabel (‘Amplitude ’);
xlabel (‘(a) n ’);
t=0:.01:pi;
y = sin(2*pi*t);
figure(2);
subplot(2,1,1);
plot(t,y);
ylabel(‘Amplitude ’);
xlabel(‘(a) n ’);
t=0:.01:pi;
y = cos(2*pi*t);
subplot(2,1,2);
plot(t,y);
ylabel(‘Amplitude ’);
xlabel(‘(b) n ’);
Result:
Thus the Generation of basic signals like unit impulse, unit step,
unit ramp, exponential signal and sinusoidal signals was successfully
completed.
Output:
Experiment No. 3
THEORY:-
MATLAB software is used for ideal & pre analysis of circuit output before implementing it by
real hardwares.
PROCEDURE:-
RESULT:-
Z –Parameter has been successfully simulted using MATLAB software.
EXPERIMENT NO.5
THEORY:-
MATLAB software is used for ideal & pre analysis of circuit output before implementing it by
real hardwares.
PROCEDURE:-
RESULT:-
AIM: To calculate and verify 'Z' & 'Y' parameters of two-port network.
BRIEF THEORY:
'Z' PARAMETERS :
In Z parameters of a two-port, the input & output voltages V1& V2 canbe expressed in terms of
input & output currents I1& I2. Out of four variables (i.e V1, V2, I1,I2 ) V1& V2 are dependent
variables whereas I1& I2 are independent variables. Thus,
Here Z11& Z22 are the input & output driving point impedances while Z12& Z21 are
thereverse & forward transfer impedances.
PROCEDURE:
a) Connect the variable voltage to port 1 and keep the port 2 open circuit i.e. I2 = 0as
shown in fig.4.a .Set different voltages on V1and measure V1,V2and I1 for each
setting and tabulate Z11& Z21.
b) Connect the variable voltage to port 2 and keep the port1 open circuit i.e. I1 = 0 as
shown in fig.4.b. Set different voltages at V2 and measureV2, V1, I2 for each setting
and tabulate Z12& Z22.
CIRCUIT DIAGRAM:
Fig 1-a: Circuit for determining Z11 & Z21
OBSERVATIONS:
For Z parameters :
2
CALCULATION:-
(i) Z11
Practically (P) Z11= (V1/I1 )=……..Ω
(ii) Z22
(iii) Z21
Ω
(iv) Z12
BRIEF THEORY :
In Y parameters of a two-port ,the input & output currents I1& I2 can be expressed in terms of
input & output voltages V1& V2 . Out of four variables (i.e I1, I2, V1, V2 )I1& I2 are dependent
variables whereas V1& V2 are independent variables.
Here Y11& Y22 are the input & output driving point admittances while Y12& Y21are the
reverse& forward transfer admittances.
PROCEDURE :
a) Connect the variable voltage to port 1 and keep the port 2short circuit i.e. V2 = 0as
shown in fig.4.a .Set different voltages on V1and measure V1,I2and I1 for each setting
and tabulate Y11& Y21.
b) Connect the variable voltage to port 2 and keep the port1 short circuit i.e. V1 = 0 as
shown in fig.4.b. Set different voltages at V2 and measureV2, I1, I2 for each setting
and tabulate Y12& Y22.
CIRCUIT DIAGRAM:
OBSERVATIONS:
For Y parameters:
Calculation:
(i) Y11
Practically (P) Y11=(I1/V1 )=…………Ʊ
(ii) Y22
Practically (P) Y22 = (I2/V2 )=…………..Ʊ
Theoretical (T) Y22 = 1
𝑅1
+
1
𝑅3
………………………. Ʊ
(iii) Y21
PRACTICALLY (P) Y21= (I2/V1 )=………….Ʊ
1
THEORETICAL (T) Y21 = 𝑅1
(iv) Y12
1
THEORETICAL (T) Y21 = 𝑅1
=……. Ʊ
Z Parameters Y Parameters
Practical Theoretical % Practical Theoretical % error
Values Values error Values Values
Z11 Y11
Z12 Y12
Z21 Y21
Z22 Y22
Mean % error Mean % error
PRECAUTIONS:
a) Make the connections according to the circuit diagram. Power supply should be
switched off.
b) Connections should be tight.
c) Note the readings carefully.
RESULT:
The 'Z' &'Y' parameters of the given two port network has been calculated and verified &
corresponding errors are found.
EXPERIMENT NO :7
Wires.
BRIEF THEORY:
ABCD parameters are widely used in analysis of power transmission engineering where
they are termed as "Circuit Parameters". ABCD parameters are also known as "Transmission
Parameters". In these parameters, the voltage & current at the sending end terminals can be
expressed in terms of voltage & current at the receiving end.
I1 = CV2 + D(-I2)
Here "A" is called reverse voltage ratio, "B" is called transfer impedance "C" is called
transfer admittance & "D" is called reverse current ratio.
PROCEDURE:
a) Connect the variable voltage to port 1 and keep the port 2 open circuit i.e. I2 = 0
as shown in fig.1.a .Set different voltages on V1 and measure V1, V2 and I1 for each
setting and calculate A & C parameters.
b) Connect the variable voltage to port 1 and keep the port 2 short circuit i.e. V2 = 0
as shown in fig.1.b. Set different voltages at V1 and measure V1, I2, I1 for each
setting and calculate B & D. parameters
CIRCUIT DIAGRAM:
OBSERVATIONS:
S.
NO When Port 2 is open circuited I2 = 0 When Port 2 is short circuited V2 = 0
3
CALCULATION:-
(i) A parameter
(ii) C parameter
(iii) B parameter
(iv) D parameter
ABCD Parameters
Mean % error
PRECAUTIONS:
a) Make the connections according to the circuit diagram. Power supply should be
switched off.
RESULT:
The ABCD parameters of the given two port network has been calculated and verified &
corresponding errors are found.
EXPERIMENT NO.-8
Aim: To verify Reciprocity Theorem for the given two port network
In any linear bilateral network, if a source of e.m.f E in any branch produces a current I in any
other branch, then the same e.m.f E acting in the second branch would produce the same current
I in first branch.
PROCEDURE:
CIRCUIT DIAGRAM:
OBSERVATION TABLE:
PREACAUTIONS:
RESULT:-
Reciprocity theorem has been verified for different voltage sources & resistances and
corresponding errors are found.
EXPERIMENT NO :9
AIM: To calculate and verify 'h' hybrid parameters of the given two-port network.
Wires.
BRIEF THEORY:
In 'h' parameters of a two port network, voltage of the input port and the current of the output
port are expressed in terms of the current of the input port and the voltage of the output
port. Due to this reason, these parameters are called as 'hybrid' parameters, i.e. out of four
variables (i.e. V1, V2, I1, I2) , V1 & I2 are dependent variables. Thus,
V1 = h11I1 + h12V2
I2 = h21I1 + h22V2
h21 and h12 are forward current gain and reverse voltage gain.
PROCEDURE:
a) Connect the variable voltage to port 1 and keep the port 2 short circuit i.e. V2 = 0 as
shown in fig.1.a .Set different voltages on V1 and measure V1, I2 and I1 for each setting and
calculate h11 and h21.
b) Connect the variable voltage to port 2 and keep the port 1open circuit i.e. I1 = 0 as
shown in fig.1.b. Set different voltages at V2 and measure V1, V2, I2 for each setting and
calculate h12 and h22.
PRECAUTIONS:
a) Make the connections according to the circuit diagram. Power supply should be switched
off.
RESULT: The h-parameters of the two port network has been calculated and verified&
corresponding errors are found.
CIRCUIT DIAGRAM:
CALCULATION:
(i) h11
(ii) h12
(iii) h22
(iv) h21
h11
h12
h22
h21
Mean % error
EXPERIMENT NO: 10
AIM: To determine the 'ABCD' parameters of the cascade connection of given two-port
networks.
BRIEF THEORY:
Two networks are said to be connected in cascade if the output port of the first network is the
input port of the second network as shown in Fig. 1.
I1 = CV2 + D(-I2)
PROCEDURE:
1) Connect the circuit as shown in fig and switch 'ON' the experiment board.
2) Open the port 2 & excite port 1 with a known voltage source Vs so thatV1= VS&
3) Port 1 is excited with the same voltage source Vs so that V1 = Vs & port 2 short
circuited & V2 = 0.We determine V1(V1a),V1b(V2a), I1(I1a), & I2a(I1b) & I2(I2b)to obtain B,B1 B2,
D, D1& D2 as shown in fig 3
PRECAUTIONS:
a) Make the connections according to the circuit diagram. Power supply should be
RESULT:
'ABCD' parameters of the cascade connection of two-port network has been determined &
corresponding errors are found.
CIRCUIT DIAGRAM:
CALCULATION:
AIM:To determine the equivalent parameters of series connection of two port network.
BRIEF THEORY: Two 2-port networks are said to be connected in series if the corresponding
ports are connected in series, as shown in Fig.1.
Thus, the Z matrix of the two 2-port networks connected in series-series is equal to the sum of
the Z matrices of the individual networks,
This result may be generalized for any number of 2-port networks connected in series. The
overall z matrix for the series-series connected 2-port networks is the sum of z matrices of the
individual networks. Thus
Fig1 :
1) Connect the circuit as shown in fig and switch 'ON' the experiment board.
2) Open the output port & excite input port with a known voltage source Vs so that V1= VS&I2
= 0.We determine to V2 ,V1a ,V1b,V2a,V2b&I1 to obtain Z11, Z11a , Z11b Z21 ,Z21a& Z21b.
3) Input port is open circuited & Output port is excited with the same voltage source Vs sothat
V2= Vs& I1 = 0.We determine V1 ,V1a,V1b,V2a,V2b& I2to obtain Z22, Z22a , Z22b, Z12 ,Z12a&Z12b.
OBSERVATION TABLE:
2
CALCUlATION:
(i)
Z11=......... Ω Z11a + Z11b=............ Ω.
(ii)
Z22= ......... Ω Z22a + Z22b=............Ω
(iii)
Z12 =........ Ω Z12a+ Z12b=............. Ω
(iv)
Z21=........ Ω Z21a + Z21b=............... Ω
PRECAUTIONS:
a) Make the connections according to the circuit diagram. Power supply should be
switched off.
RESULT/CONCLUSION:
The Z-parameters of series connection of two-port network has been determined and
corresponding errors are found.
EXPERIMENT NO: 12
BRIEF THEORY:
The method of interconnecting two 2-port networks shown in Fig. is called a parallel- parallel
connection of two ports because the corresponding ports of each network are connected in
parallel. Let us find the ‘Y’ admittance parameters of the overall 2-port network N.
Thus, the Y matrix of the two 2-port networks connected in parallel- parallel is equal to the sum
of the Y matrices of the individual networks,
This result may be generalized for any number of 2-port networks connected in parallel. Thus
Y11= Y11a +Y11b , Y21 =Z21a + Y21b , Y22= Y22a + Y22b , Y12 =Y12a + Y12b.
CIRCUIT DIAGRAM:
PROCEDURE:
1) Connect the circuit as shown in fig 1. and switch 'ON' the experiment board.
2) Short the port 2 & excite port 1 with a known voltage source Vs so that V1= VS& V2 = 0. We
determine to V1 ,V1a ,V1b, I2a, I2b, I2& I1 to obtain Y11, Y11a , Y11b Y21 ,Z21a& Y21b.
3) Port 1 is short circuited & port 2 is excited with the same voltage source Vs so that V2 = Vs &
I1 = 0. We determine I1a, I1b, I2a, I2b& I1, I2 &V2 to obtain Y22, Y22a , Y22b, Y12 , Y12a& Y12b.
OBSERVATION TABLE:
(i)Y11
(ii)Y22
(iii)Y12
(iv)Y21
PRECAUTIONS:
a) Make the connections according to the circuit diagram. Power supply should be
switched off.
RESULT/CONCLUSION:
Two port network are said to be connected in series-parallel if the input ports are
connected in series while the output ports are connected in parallel as shown in fig 1 , such that:
V1 = V1a + V1b
I1 = I1a = I1b
V2 = V2a = V2b
I2 = I2a + I2b
So, the h-parameters of the series –parallel connected network can be written as
V1 = h11 I1 + h12 V2
I2 = h21 I1 + h22 V2
Where
CIRCUIT DIAGRAM:
Fig 1 : Series-Parallel interconnection of 2-two port networks
PROCEDURE:
1) Connect the circuit as shown in fig and switch 'ON' the experiment board.
2) Short the port 2 & excite port 1 with a known voltage source Vs so that V1= VS & V2 = 0.We
determine V1 ,I1a ,I1b, I2a, I2b, I2 & I1 to obtain h11, h11a , h11b h21 ,h21a & h21b.
3) Port 1 is open circuited & port 2 is excited with the some voltage source Vs so that V2 = Vs &
I1 = 0.We determine V2 , I2 ,I2a,I2b,V1a,V1b & V1 to obtain h22, h22a , h22b, h12 , h12a & h12b.
4) Switch OFF the supply after taking the readings.
OBSERVATION TABLE:
S. V1=V1b = I 1 I1a I1b I2a I2b I2 h11 h21 h11a = h11b= h21a = h21b=
NO V1a (m (m (m (m (m (mA = = I2 V1a / V1b / I2a / I2b /
. (V) A) A) A) A) A) ) V1/ /I1 I1a I1b I1a I1b
I1 (Ω) (Ω)
(Ω)
1
S V2=V2b = V1 V1a V1b I2a I2b I2 h22= h12= h22a = h22b= h12a = h12b =
. V2a (V (V (V (mA (mA (mA I2/V V1/ I2a / I2b / V1a / V1b
N (V) ) ) ) ) ) ) 2 V2 V2a V2b V2a /V2b
o (℧) (℧) (℧)
.
1
2
CALCULATION:
(i) h11
h11=......... Ω h11a + h11b=............ Ω.
(ii) h22
h22= ........ ℧ h22a + h22b=...........℧
(iii) h12
h12 =........ h12a + h12b=.............
(iv) h21
h21=........ h21a + h21b=...............
PRECAUTIONS:
a) Make the connections according to the circuit diagram. Power supply should be
switched off.
RESULT/CONCLUSION:
The h-parameters of series -parallel connection of 2- two-port networks has been determined
& corresponding errors are found.
10. Expected Viva Voce Questions
1. Is there Matlab Compiler in Matlab Tool?
2. What are disadvantages of Matlab?
3. Matlab stands for……………………………………………………………….
4. What is the basic data element of Matlab?
5. What is the extension of the code written in Matlab?
6. What is the role of Editor Window?
7. Give steps to run the written code in matlab.
8. Give the matlab function to generate sinusoidal waveform.
9. Give the matlab function to generate co-sinusoidal waveform.
10. How the amplitude of the sin waveform can be changed in Matlab.
11. How the frequency of the sin waveform can be increased or decreased.
12. Give the matlab code to plot the waveform.
13. How two waveforms can be plotted on the same graph and with different colours to differentiate?
14. Define Signal.
15. Define system.
16. What are the major classifications of the signal?
17. Define discrete time signals and classify them.
18. Define continuous time signals and classify them.
19. Define discrete time unit step &unit impulse.
20. Define continuous time unit step and unit impulse.
21. Define unit ramp signal.
22. Define periodic signal and non-periodic signal.
23. Define even and odd signal?
24. Define Energy and power signal.
25. What is the difference between plot and subplot?
26. Write matlab function to find inverse of the matrix.
27. How we can create an Identity Matrix in Matlab.
28. What is a two-port network? Explain with an example.
29. What are the primary parameters used to describe a two-port network?
30. How do two-port networks differ from single-port networks?
31. Can a two-port network have dependent sources? Why or why not?
32. What are the applications of two-port networks in real-life circuits?
33. What are the Z-parameters (impedance parameters), and how are they defined?
34. What are Y-parameters (admittance parameters), and how do they differ from Z-parameters?
35. Define h-parameters (hybrid parameters) and explain their significance.
36. What are ABCD parameters? Where are they most commonly used?
37. hat is a reciprocal network? Give an example.
38. How do you test whether a two-port network is reciprocal?
39. What does it mean for a two-port network to be symmetric?
40. Is it possible for a network to be symmetric but not reciprocal? Explain.
41. How does reciprocity apply to passive networks?
42. Write the general equations for Z-parameters and explain each term.
43. Derive the relationship between input and output currents and voltages using Y-parameters.
44. How do you determine the input impedance of a two-port network using Z-parameters?
45. What is the significance of the determinant of the Z-parameter matrix?
46. How are ABCD parameters represented in terms of input and output voltages and currents?
47. hat happens to the two-port parameters if the network is short-circuited?
48. What changes occur in the parameters when the network is open-circuited?
References
AlanV.Oppenheim, Alan S.Willsky, S.Hamid Nawab, “Signals & Systems”, 2nd edition,
Pearson Education, 1997.
M.J.Roberts, “Signals and Systems Analysis using Transform Method and MATLAB”, TMH 2003.
Rudra Pratap, “Getting Started with MATLAB”, Oxford University Press, USA.
A. H. Robbins and W. C. Miller, “Circuit Analysis: Theory and Practice”, Thomson Learning/Delmar
Pub., 2007.