diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3760/CH1/EX1.46 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3760/CH1/EX1.46')
-rw-r--r-- | 3760/CH1/EX1.46/Ex1_46.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3760/CH1/EX1.46/Ex1_46.sce b/3760/CH1/EX1.46/Ex1_46.sce new file mode 100644 index 000000000..a68bd686a --- /dev/null +++ b/3760/CH1/EX1.46/Ex1_46.sce @@ -0,0 +1,8 @@ +clc;
+r1=9 ; // ratio of reactance to resistance for transformer 1
+r2=3 ; // ratio of reactance to resistance for transformer 2
+d=atand(r1)-atand(r2); // differene between angles of transformer's leakage impedance
+// leakage impedance of both transformers are equal z1=z2, threefore currents in both transformers are equal that is i1=i2;
+I=1/cos((d/2)*(%pi/180)); // ratio of numerical sum of i1 and i2 to phasor sum of i1 and i2
+k=cos((d/2)*(%pi/180));
+printf('ratio of full load KVA delivered to sum of both transformers KVA ratings is %f',k);
|