diff options
Diffstat (limited to '3515/CH1/EX1.6/Ex_1_6.sce')
-rw-r--r-- | 3515/CH1/EX1.6/Ex_1_6.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3515/CH1/EX1.6/Ex_1_6.sce b/3515/CH1/EX1.6/Ex_1_6.sce new file mode 100644 index 000000000..22dc681b3 --- /dev/null +++ b/3515/CH1/EX1.6/Ex_1_6.sce @@ -0,0 +1,18 @@ +// Exa 1.6
+format('v',7);
+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)
|