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 --- 2582/CH2/EX2.3/Ex2_3.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 2582/CH2/EX2.3/Ex2_3.sce (limited to '2582/CH2/EX2.3/Ex2_3.sce') diff --git a/2582/CH2/EX2.3/Ex2_3.sce b/2582/CH2/EX2.3/Ex2_3.sce new file mode 100755 index 000000000..ff0548b8a --- /dev/null +++ b/2582/CH2/EX2.3/Ex2_3.sce @@ -0,0 +1,14 @@ +//Ex 2.3 +clc;clear;close; +format('v',5) +Gm1=10;//mA/V +Gm1=Gm1/1000;//A/V +Cc=50;//pF +Cc=Cc*10^-12;//F +Rt=10^8;//ohm(Shunting resistance with Cc) +Ao=Gm1*Rt;//unitless +fp=1/(2*%pi*Rt*Cc);//Hz +ft=Gm1/(2*%pi*Cc)/10^6;//MHz +disp(fp,"Frequency at which gain is maximum, fp in Hz"); +disp(ft,"Unit gain frequency, ft(MHz)"); +//Bode plot can not be plotted with the given data in the question by using scilab functions. -- cgit