From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 2702/CH1/EX1.10/Ex_1_10.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 2702/CH1/EX1.10/Ex_1_10.sce (limited to '2702/CH1/EX1.10/Ex_1_10.sce') 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") -- cgit