diff options
Diffstat (limited to '3515/CH1/EX1.12/Ex1_12.sce')
-rw-r--r-- | 3515/CH1/EX1.12/Ex1_12.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3515/CH1/EX1.12/Ex1_12.sce b/3515/CH1/EX1.12/Ex1_12.sce new file mode 100644 index 000000000..0157d930b --- /dev/null +++ b/3515/CH1/EX1.12/Ex1_12.sce @@ -0,0 +1,16 @@ +// Exa 1.12
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+Rf=200;// in kohm
+R1= 20;// in kohm
+// Av= Vo/Vi= -Rf/Ri
+Av= -Rf/R1;
+Vi_min= 0.1;// in V
+Vi_max= 0.5;// in V
+// Vo= Av*Vi
+Vo_min= Av*Vi_min;// in V
+Vo_max= Av*Vi_max;// in V
+disp("Output voltage ranges from "+string(Vo_min)+"V to "+string(Vo_max)+"V")
|