summaryrefslogtreecommitdiff
path: root/506/CH8/EX8.3/Example8_3.sce
blob: d64081ba65a977fab8a9d57e12b0725d1702096b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clear;
clc;

//Caption:To derive output impedence of given figure in open circuit-voltage short-circuit-current theorem
//Solution

//Yo = I/Vo
//When current in a short circuit placed across the output terminals and V is the open circuit voltage
disp('When current in a short circuit placed across the output terminals and V is the open circuit voltage');
disp('I = -hf*I1=-(hf*Vs)/(Rs+hi)');
//Applying KVL
disp('Vs = I1*(Rs+hi)+hr*V = -ho*V*(Rs+hi)/hf+hr*V');
disp('or');
disp('V = -(hf*Vs/(Rs+hi))/(ho-hf*hr(Rs+hi))');

//end