blob: dd49a36025f3338840f5c14018496634f0f95399 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Network Theorem-1
//pg no.-2.9
//example2.5
//converting delta network to star network
a=25;
b=20;
c=35;
R1=(b*c)/(a+b+c);
R2=(a*b)/(a+b+c);
R3=(a*c)/(a+b+c);
printf("\nConverting the delta formed by resistors 20 Ohm ,25 Ohm, 35 Ohm into an equivalent star network");
printf("\nR1= %.2f Ohm",R1);
printf("\nR2= %.2f Ohm",R2);
printf("\nR3= %.2f Ohm",R3);
|