summaryrefslogtreecommitdiff
path: root/2360/CH5/EX5.10/ex5_10.sce
blob: 440e7a2a1ec6fada17cef66fb65fa44c02d19731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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");