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 --- 3515/CH1/EX1.16/Ex_1_16.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 3515/CH1/EX1.16/Ex_1_16.sce (limited to '3515/CH1/EX1.16/Ex_1_16.sce') diff --git a/3515/CH1/EX1.16/Ex_1_16.sce b/3515/CH1/EX1.16/Ex_1_16.sce new file mode 100644 index 000000000..f1e846a56 --- /dev/null +++ b/3515/CH1/EX1.16/Ex_1_16.sce @@ -0,0 +1,16 @@ +// Exa 1.16 +format('v',7); +clc; +clear; +close; +// Given data +R1= 33;// in kΩ +R2= 10;// in kΩ +R3= 330;// in kΩ +V1= '50mV sin(1000 t)'; +V2= '10mV sin(3000 t)'; +Vo1= R3/R1*50*10^-3; +Vo2= R3/R2*10*10^-3; +// Vo= -Vo1-Vo2; +disp("Output voltage is "+string(-Vo1)+" sin (1000 t)"+string(-Vo2)+" sin(3000 t)") + -- cgit