From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2360/CH5/EX5.10/ex5_10.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 2360/CH5/EX5.10/ex5_10.sce (limited to '2360/CH5/EX5.10/ex5_10.sce') diff --git a/2360/CH5/EX5.10/ex5_10.sce b/2360/CH5/EX5.10/ex5_10.sce new file mode 100755 index 000000000..440e7a2a1 --- /dev/null +++ b/2360/CH5/EX5.10/ex5_10.sce @@ -0,0 +1,17 @@ +// Exa 5.10 +format('v',7);clc;clear;close; +// Given data +R1 = 120;// in ohm +R2 = 120;// in ohm +R3 = 120;// in ohm +R_V = 121;// in ohm +E_TH = 10;// in mV +E_TH = E_TH * 10^-3;// in V +// E_TH = E * ( (R3/(R3+R1)) - (R_V/(R_V+R2)) ); +E = E_TH/((R3/(R3+R1)) - (R_V/(R_V+R2)));//required supply voltage in V +disp(E,"The required supply voltage in V is"); +R = 120;// in ohm +del_r = R_V-R;// in ohm +// E_TH = (E*del_r)/(4*R); +E = E_TH*4*R;//The approximation of slightly unbalanced bridge in V +disp(E,"The approximation of slightly unbalanced bridge in V is"); -- cgit