diff options
Diffstat (limited to 'Working_Examples/2777/CH3/EX3.9')
-rwxr-xr-x | Working_Examples/2777/CH3/EX3.9/Ex3_9.sce | 30 |
1 files changed, 30 insertions, 0 deletions
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);
|