blob: bf148d2b5f0880256f055b66b1425e10b81feceb (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Network Theorem-1
//pg no.-2.2
//example2.5
//converting delta network to star network
a=10;
b=10;
c=10;
R=(a*b)/(a+b+c);
printf("\nConverting the delta formed by three resistors of 10 Ohm into an equivalent star network");
mprintf("\nR1=R2=R3= %.3f Ohm",R);
|