summaryrefslogtreecommitdiff
path: root/147/CH13/EX13.17/Example13_17.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH13/EX13.17/Example13_17.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '147/CH13/EX13.17/Example13_17.sce')
-rw-r--r--147/CH13/EX13.17/Example13_17.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/147/CH13/EX13.17/Example13_17.sce b/147/CH13/EX13.17/Example13_17.sce
new file mode 100644
index 000000000..a35d8c5ac
--- /dev/null
+++ b/147/CH13/EX13.17/Example13_17.sce
@@ -0,0 +1,29 @@
+close();
+clear;
+clc;
+//rated power 'P'
+P = 10000; //VA
+V1 = 2400;
+V2 = 240;
+//from open circuit test
+Vo = 240; //V
+Io = 0.8; //A
+Po = 80; //W
+//from short circuit test
+Vs = 80; //V
+Is = 5.1; //A
+Ps = 220; //W
+//converting all data into per unit values
+I1 = P/V1;
+I2 = P/V2;
+//in per unit , open circuit data are
+Vo = Vo/V2; //pu
+Io = Io/I2; //pu
+Po = Po/P; //pu
+//in per unit, short circuit data are
+Vs = Vs/V1; //pu
+Is = Is/I1; //pu
+Ps = Ps/P; //pu
+//equivalent resistance 'Rs'
+Rs = Ps/(Is^2); //pu
+mprintf("Series equivalent resistance in per unit, Rs = %0.4f pu",Rs); \ No newline at end of file