summaryrefslogtreecommitdiff
path: root/3515/CH1/EX1.17
diff options
context:
space:
mode:
Diffstat (limited to '3515/CH1/EX1.17')
-rw-r--r--3515/CH1/EX1.17/Ex_1_17.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3515/CH1/EX1.17/Ex_1_17.sce b/3515/CH1/EX1.17/Ex_1_17.sce
new file mode 100644
index 000000000..b67488fde
--- /dev/null
+++ b/3515/CH1/EX1.17/Ex_1_17.sce
@@ -0,0 +1,14 @@
+// Exa 1.17
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+R1=10;// in kohm
+R2=150;// in kohm
+R3=10;// in kohm
+R4=300;// in kohm
+V1= 1;// in V
+V2= 2;// in V
+Vo= [(1+R4/R2)*(R3*V1/(R1+R3))-(R4/R2)*V2];
+disp(Vo,"Output voltage in volts is : ")