summaryrefslogtreecommitdiff
path: root/3515/CH1/EX1.15/Ex_1_15.sce
diff options
context:
space:
mode:
Diffstat (limited to '3515/CH1/EX1.15/Ex_1_15.sce')
-rw-r--r--3515/CH1/EX1.15/Ex_1_15.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3515/CH1/EX1.15/Ex_1_15.sce b/3515/CH1/EX1.15/Ex_1_15.sce
new file mode 100644
index 000000000..f55817a60
--- /dev/null
+++ b/3515/CH1/EX1.15/Ex_1_15.sce
@@ -0,0 +1,18 @@
+// Exa 1.15
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+Rf=470;// in kohm
+R1=4.3;// in kohm
+R2=33;// in kohm
+R3=33;// in kohm
+Vi= 80;// in µV
+Vi=Vi*10^-6;// in volt
+A1= 1+Rf/R1;
+A2=-Rf/R2;
+A3= -Rf/R3;
+A=A1*A2*A3;
+Vo= A*Vi;// in volt
+disp(Vo,"Output voltage in volts is : ")