blob: a0d8da52e800be6cf8b5019c6de6506ff274a8c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clear
//
//the eqns are formed using the given diagram
//the derivations from the eqns are obtained as below using matrices for their construction
//the below eqns are in polar form
delta=0.3165
delta1=5.95
delta2=6.82
v1=delta1/delta
printf("\n v1 at -47.63 is= %0.1f V",v1)
v2=delta2/delta
printf("\n v2 at -42.30 is= %0.1f V",v2)
|