summaryrefslogtreecommitdiff
path: root/2360/CH6/EX6.2/ex6_2.sce
blob: 64acb72704ea32a148a7ed9d595ffb24c9b13048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Exa 6.2
format('v',7);clc;clear;close;
// Given data
Z1 = 50;// in ohm
Z2 = 100;// in ohm
Z3 = 15;// in ohm
Z4 = 30;// in ohm
theta1 = 40;// in degree
theta2 = -90;// in degree
theta3 = 45;// in degree
theta4 = 30;// in degree
if abs(Z1*Z4)== abs(Z3*Z2) then
    flag1=1;
    disp("The condition of balance for magnitude is satisfied")
else
    flag1=0
    disp("The condition of balance for magnitude is not satisfied")
end
if theta1+theta4==theta2+theta3 then
    flag2=1
    disp("The condition of balance for phase is also satisfied")
else
    flag2=0
    disp("But the condition of balance for phase is not satisfied")
end
if flag1==1 then
    if flag2==1 then
        disp("Hence the bridge is under balanced condition")
    else
        disp("Hence the bridge is not under balanced condition")
    end
else
        disp("Hence the bridge is not under balanced condition")    
end