From 8ac15bc5efafa2afc053c293152605b0e6ae60ff Mon Sep 17 00:00:00 2001 From: Siddharth Agarwal Date: Tue, 3 Sep 2019 18:27:40 +0530 Subject: Xcos examples from textbooks and for blocks --- Working_Examples/2777/CH3/EX3.9/Ex3_9.sce | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 Working_Examples/2777/CH3/EX3.9/Ex3_9.sce (limited to 'Working_Examples/2777/CH3/EX3.9') diff --git a/Working_Examples/2777/CH3/EX3.9/Ex3_9.sce b/Working_Examples/2777/CH3/EX3.9/Ex3_9.sce new file mode 100755 index 0000000..57edaa3 --- /dev/null +++ b/Working_Examples/2777/CH3/EX3.9/Ex3_9.sce @@ -0,0 +1,30 @@ + +// ELECTRICAL MACHINES +// R.K.Srivastava +// First Impression 2011 +// CENGAGE LEARNING INDIA PVT. LTD + +// CHAPTER : 3 : TRANSFORMERS + +// EXAMPLE : 3.9 + +clear ; clc ; close ; // Clear the work space and console + + +// GIVEN DATA + +V1 = 11000; // HV Side Voltage Rating of the Transformer in Volts +V2 = 440; // LV Side Voltage Rating of the Transformer in Volts +R = 1.0; // Resistance across the secondary side having 11kV in Ohms + + +// CALCULATIONS + +a = V1/V2; // Turns ratio of the ideal transformers +R2 = (a ^ 2)*R; // Referred value of the resistance from Primary side having 440V in Ohms + + +// DISPLAY RESULTS + +disp("EXAMPLE : 3.9 : SOLUTION :-") ; +printf("\n (a) Referred value of the resistance from Primary side having 440V , R2 = %.f Ohms \n ",R2); -- cgit