summaryrefslogtreecommitdiff
path: root/3760/CH1/EX1.40
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3760/CH1/EX1.40
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 '3760/CH1/EX1.40')
-rw-r--r--3760/CH1/EX1.40/Ex1_40.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3760/CH1/EX1.40/Ex1_40.sce b/3760/CH1/EX1.40/Ex1_40.sce
new file mode 100644
index 000000000..4a5976531
--- /dev/null
+++ b/3760/CH1/EX1.40/Ex1_40.sce
@@ -0,0 +1,17 @@
+clc;
+E1=2500; // primary side voltage
+E2=250; // secondary side voltage
+P=10000; // rated VA of transformer
+// to achieve a voltage level of 2625, two equal parts of 125 V each of secondary winding are connected in parallel with each other and in series with primary winding
+Eo=E1+E2/2; // desired output of autotransformer
+il=P/E2; // rated current of l v winding
+i=2*il; // Total output current
+K=(i*Eo)/1000; // Auto transsformer KVA rating
+ip=P/E1; // rated current of h v winding
+I=i+ip; // current drawn from supply
+Pt=(i*(E2/2))/1000; // KVA transformed
+Pc=K-Pt; // KVA conducted
+printf('KVA output of autotransformer is %f KVA\n',K);
+printf('KVA transformed is %f KVA\n',Pt);
+printf('KVA conducted is %f KVA',Pc);
+