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 --- 3515/CH4/EX4.15/Ex4_15.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 3515/CH4/EX4.15/Ex4_15.sce (limited to '3515/CH4/EX4.15/Ex4_15.sce') diff --git a/3515/CH4/EX4.15/Ex4_15.sce b/3515/CH4/EX4.15/Ex4_15.sce new file mode 100644 index 000000000..7e38d4ed3 --- /dev/null +++ b/3515/CH4/EX4.15/Ex4_15.sce @@ -0,0 +1,23 @@ +// Exa 4.15 +format('v',5); +clc; +clear; +close; +// Given data +I=0.5;// in mA +I=I*10^-3;// in A +WbyL= 50; +unCox= 250;// in µA/V^2 +unCox=unCox*10^-6;// in A/V^2 +V_A= 10;// in V +R_D= 4;//in kΩ +R_D= R_D*10^3;//in Ω +V_OV= sqrt(I/(WbyL*unCox));//in V +disp(V_OV,"The value of V_OV in V is : ") +gm= I/V_OV;// in A/V +disp(gm*10^3,"The value of gm in mA/V is ") +I_D=I/2;// in A +ro= V_A/I_D;// in Ω +disp(ro*10^-3,"The value of ro in kΩ is : ") +Ad= gm*(R_D*ro/(R_D+ro));// in V/V +disp(Ad,"The value of Ad in V/V is : ") -- cgit