diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /431/CH3/EX3.32 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '431/CH3/EX3.32')
-rwxr-xr-x | 431/CH3/EX3.32/EX3_32.sce | 16 | ||||
-rwxr-xr-x | 431/CH3/EX3.32/resultEX3_32.txt | 6 |
2 files changed, 22 insertions, 0 deletions
diff --git a/431/CH3/EX3.32/EX3_32.sce b/431/CH3/EX3.32/EX3_32.sce new file mode 100755 index 000000000..65d019a10 --- /dev/null +++ b/431/CH3/EX3.32/EX3_32.sce @@ -0,0 +1,16 @@ +//Calculate current in different parts of winding of autotransformer//Chapter 3
+//Example 3.32
+//page 240
+clear;
+clc;
+disp("Example 3.32")
+V1=230; //primary voltage of auto-transformer
+V2=75; //secondary voltage of auto-transformer
+r=(V1/V2); //ratio of primary to secondary turns
+I2=200; //load current in amperes
+I1=I2/r;
+printf("Primary current,I1=%fA",I1);
+printf("\nLoad current,I1=%fA",I2);
+printf("\ncirrent flowing through the common portion of winding=%fA",(I2-I1));
+printf("\nEconomy in saving in copper in percentage=%fpercent",(100/r));
+
diff --git a/431/CH3/EX3.32/resultEX3_32.txt b/431/CH3/EX3.32/resultEX3_32.txt new file mode 100755 index 000000000..441ea142b --- /dev/null +++ b/431/CH3/EX3.32/resultEX3_32.txt @@ -0,0 +1,6 @@ +
+ Example 3.32
+Primary current,I1=65.217391A
+Load current,I1=200.000000A
+cirrent flowing through the common portion of winding=134.782609A
+Economy in saving in copper in percentage=32.608696percent
\ No newline at end of file |