summaryrefslogtreecommitdiff
path: root/2702/CH1/EX1.12/Ex_1_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '2702/CH1/EX1.12/Ex_1_12.sce')
-rw-r--r--2702/CH1/EX1.12/Ex_1_12.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2702/CH1/EX1.12/Ex_1_12.sce b/2702/CH1/EX1.12/Ex_1_12.sce
new file mode 100644
index 000000000..83a4b0491
--- /dev/null
+++ b/2702/CH1/EX1.12/Ex_1_12.sce
@@ -0,0 +1,15 @@
+// Exa 1.12
+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")