diff options
author | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
---|---|---|
committer | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
commit | 8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch) | |
tree | e1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/2777/CH3/EX3.9 | |
parent | 52a477ec613900885e29c4a0b02806a415b4f83a (diff) | |
download | Xcos_block_examples-master.tar.gz Xcos_block_examples-master.tar.bz2 Xcos_block_examples-master.zip |
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);
|