From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1658/CH22/EX22.17/Ex22_17.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 1658/CH22/EX22.17/Ex22_17.sce (limited to '1658/CH22/EX22.17/Ex22_17.sce') diff --git a/1658/CH22/EX22.17/Ex22_17.sce b/1658/CH22/EX22.17/Ex22_17.sce new file mode 100755 index 000000000..c6ad951f2 --- /dev/null +++ b/1658/CH22/EX22.17/Ex22_17.sce @@ -0,0 +1,17 @@ +clc; +//e.g 22.17 +vin=2*10**-3; +gm=5500*10**-6; +R1=1*10**6; +R2=1*10**6; +RS=5000; +RL=2000; +(1/gm); +AV=RS/(RS+(1/gm)); +disp(AV); +Ri=(R1*R2)/(R1+R2); +disp('Mohm',Ri*10**-6,"Ri="); +Ro=(RS/gm)/(RS+1/gm); +disp('ohm',Ro*1,"Ro="); +Vo=(RL/(RL+Ro))*(AV*vin); +disp('mV',Vo*10**3,"Vo="); -- cgit