diff options
Diffstat (limited to '2492/CH6/EX6.2/ex6_2.sce')
-rwxr-xr-x | 2492/CH6/EX6.2/ex6_2.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2492/CH6/EX6.2/ex6_2.sce b/2492/CH6/EX6.2/ex6_2.sce new file mode 100755 index 000000000..1b0a9f3ed --- /dev/null +++ b/2492/CH6/EX6.2/ex6_2.sce @@ -0,0 +1,23 @@ +// Exa 6.2
+format('v',5)
+clc;
+clear;
+close;
+// Given data
+h11 = 2;// in k ohm
+h11 = h11 * 10^3;// in ohm
+h12 = 0;
+h21 = 80;
+h22= 1*10^-3;// in mho
+R_L= 10*10^3;// in ohm
+B= 10/100;
+Ri= 2;// in k ohm
+R_Ldesh= (R_L*1/h22)/(R_L+1/h22);// in ohm
+Av= h21*R_Ldesh/h11;
+disp(Av,"Part (a) : The value of Av of the basic amplifier is : ")
+D= 1+Av*B;
+disp(D,"The value of densitivity factor is : ")
+Avf= Av/(1+B*Av);
+disp(Avf,"The value of Avf is : ")
+Rif= (1+Av*B)*Ri;// in k ohm
+disp(Rif,"The value of Rif in k ohm is : ")
|