diff options
Diffstat (limited to '2702/CH1/EX1.10/Ex_1_10.sce')
-rw-r--r-- | 2702/CH1/EX1.10/Ex_1_10.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2702/CH1/EX1.10/Ex_1_10.sce b/2702/CH1/EX1.10/Ex_1_10.sce new file mode 100644 index 000000000..9eb5f041a --- /dev/null +++ b/2702/CH1/EX1.10/Ex_1_10.sce @@ -0,0 +1,17 @@ +// Exa 1.10
+clc;
+clear;
+close;
+// Given data
+V1=2;// in V
+V2=3;// in V
+Rf=3;// in kohm
+R1=1;// in kohm
+disp("Output voltage when only 2V voltage source is acting in volt")
+Vo1= (1+Rf/R1)*V1;
+disp(Vo1);
+disp("Output voltage due to 3V voltage source in volt")
+Vo2= (1+Rf/R1)*V2;
+disp(Vo2);
+Vo= Vo1+Vo2;// in volts
+disp(Vo,"Total output voltage in volts")
|