diff options
Diffstat (limited to '2702/CH1/EX1.6/Ex_1_6.sce')
-rw-r--r-- | 2702/CH1/EX1.6/Ex_1_6.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2702/CH1/EX1.6/Ex_1_6.sce b/2702/CH1/EX1.6/Ex_1_6.sce new file mode 100644 index 000000000..d1a16415a --- /dev/null +++ b/2702/CH1/EX1.6/Ex_1_6.sce @@ -0,0 +1,17 @@ +// Exa 1.6
+clc;
+clear;
+close;
+// Given data
+disp("Minimum closed loop voltage gain for R2=0 and R1= 2 kohm")
+R2=0;
+R1=2;// in kohm
+R1=R1*10^3;// in ohm
+Av_min= (1+R2/R1)
+disp(Av_min)
+
+disp("Maximum closed loop voltage gain for maximum value of R2=100 kohm and R1= 2 kohm")
+R2=100;// in kohm
+R1=2;// in kohm
+Av_max= (1+R2/R1)
+disp(Av_max)
|