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.14 | |
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.14')
-rwxr-xr-x | 431/CH3/EX3.14/EX3_14.sce | 14 | ||||
-rwxr-xr-x | 431/CH3/EX3.14/resultEX3_14.txt | 4 |
2 files changed, 18 insertions, 0 deletions
diff --git a/431/CH3/EX3.14/EX3_14.sce b/431/CH3/EX3.14/EX3_14.sce new file mode 100755 index 000000000..0b42c3afd --- /dev/null +++ b/431/CH3/EX3.14/EX3_14.sce @@ -0,0 +1,14 @@ +//Calculate current and power input
+//Chapter 3
+//Example 3.14
+//page 217
+clear;
+clc;
+disp("Example 3.14")
+N1=90; //number of primary turns
+N2=180; //number of secondary turns
+R1=0.067; //primary resistance in ohms
+R2=0.233; //secondary resistance in ohms
+printf("Primary winding resistance referred to secondary side=%fohms",(R1*(N2/N1)^2))
+printf("\nsecondary winding resistance referred to primary side=%fohms",(R2*(N1/N2)^2))
+printf("\nTotal resistance of the transformer refferred to primary side=%fohms",((R1*(N2/N1)^2)+(R2*(N2/N1)^2)))
\ No newline at end of file diff --git a/431/CH3/EX3.14/resultEX3_14.txt b/431/CH3/EX3.14/resultEX3_14.txt new file mode 100755 index 000000000..d891bc703 --- /dev/null +++ b/431/CH3/EX3.14/resultEX3_14.txt @@ -0,0 +1,4 @@ + Example 3.14
+Primary winding resistance referred to secondary side=0.268000ohms
+secondary winding resistance referred to primary side=0.058250ohms
+Total resistance of the transformer refferred to primary side=1.200000ohms
\ No newline at end of file |