From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 503/CH3/EX3.22/ch3_22.sci | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 503/CH3/EX3.22/ch3_22.sci (limited to '503/CH3/EX3.22') diff --git a/503/CH3/EX3.22/ch3_22.sci b/503/CH3/EX3.22/ch3_22.sci new file mode 100755 index 000000000..d68092b8d --- /dev/null +++ b/503/CH3/EX3.22/ch3_22.sci @@ -0,0 +1,30 @@ +// To calculate voltage and kva rating of 1-ph transformer + +clc; + +V_p=33; //primary side voltage(V) +V_s=11; //secondary side voltage(V) +V_p1=V_p/sqrt(3); //per ph primary side voltage(V) +V_p2=V_s/sqrt(3); //per ph secondary side voltage(V) + +r=6000; //kva rating 3-ph +s=r/3; //per phase +disp('Y/Y conn'); +disp(V_p1,'primary side ph voltage(V)'); +disp(V_p2,'secondary side ph voltage(V)'); +disp(s,'kva rating of transformer'); + +disp('Y/D conn'); +disp(V_p1,'primary side ph voltage(V)'); +disp(V_s,'secondary side ph voltage(V)'); +disp(s,'kva rating of transformer'); + +disp('D/Y conn'); +disp(V_p,'primary side ph voltage(V)'); +disp(V_p2,'secondary side ph voltage(V)'); +disp(s,'kva rating of transformer'); + +disp('D/D conn'); +disp(V_p,'primary side ph voltage(V)'); +disp(V_s,'secondary side ph voltage(V)'); +disp(s,'kva rating of transformer'); -- cgit