diff options
Diffstat (limited to '2528/CH6/EX6.6/Ex6_6.sce')
-rwxr-xr-x | 2528/CH6/EX6.6/Ex6_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2528/CH6/EX6.6/Ex6_6.sce b/2528/CH6/EX6.6/Ex6_6.sce new file mode 100755 index 000000000..62af0b6bb --- /dev/null +++ b/2528/CH6/EX6.6/Ex6_6.sce @@ -0,0 +1,16 @@ +//Example6.6:"design an Amplifier "
+//Page 197
+//figure 6.27
+clear;
+clc;
+Av=-20;
+Ri=50000; //in Ohm
+fc=100; //in Hz
+//Av=-Rf/Ri
+Rf=-Av*Ri;
+disp("Ohm",Rf,"Value of Rf");
+Rb=2*Rf;
+disp("Ohm",Rb,"Value of Rb");
+C=1/(2*%pi*Ri*fc);
+disp("F",C,"Value of C");
+//Result//
|