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 /1319/CH5/EX5.4/5_4.sce | |
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 '1319/CH5/EX5.4/5_4.sce')
-rw-r--r-- | 1319/CH5/EX5.4/5_4.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/1319/CH5/EX5.4/5_4.sce b/1319/CH5/EX5.4/5_4.sce new file mode 100644 index 000000000..886ab0e11 --- /dev/null +++ b/1319/CH5/EX5.4/5_4.sce @@ -0,0 +1,32 @@ +// Total resitance and total copper loss at full load
+
+clc;
+clear;
+
+P=40*(10^3);
+E1=2000;
+E2=250;
+
+n=E2/E1; //Transformation ratio
+
+R1=1.15;
+R2=0.0155;
+
+R1w2=R1*(n^2);
+R2w1=R2/(n^2);
+
+Rt=R2+R1w2;
+
+// Full load currents
+I1=P/E1;
+I2=P/E2;
+
+Pc1=(I1^2)*R1; // Primary Loss
+Pc2=(I2^2)*R2; // Secondary Loss
+
+Pc= Pc1+Pc2; // Total Copper loss at full load
+
+printf('a) The total resitance in terms of the secondary winding = %f ohms \n',Rt)
+printf('b) Total copper loss on full load = %f watts',Pc)
+
+
|