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.7 | |
parent | 52a477ec613900885e29c4a0b02806a415b4f83a (diff) | |
download | Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.gz Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.bz2 Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.zip |
Diffstat (limited to 'Working_Examples/2777/CH3/EX3.7')
-rwxr-xr-x | Working_Examples/2777/CH3/EX3.7/Ex3_7.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Working_Examples/2777/CH3/EX3.7/Ex3_7.sce b/Working_Examples/2777/CH3/EX3.7/Ex3_7.sce new file mode 100755 index 0000000..c61f784 --- /dev/null +++ b/Working_Examples/2777/CH3/EX3.7/Ex3_7.sce @@ -0,0 +1,30 @@ +
+// ELECTRICAL MACHINES
+// R.K.Srivastava
+// First Impression 2011
+// CENGAGE LEARNING INDIA PVT. LTD
+
+// CHAPTER : 3 : TRANSFORMERS
+
+// EXAMPLE : 3.7
+
+clear ; clc ; close ; // Clear the work space and console
+
+
+// GIVEN DATA
+
+a = 100/200; // Turn ratio of the Ideal transformer
+R = 1.0; // Resistance across the secondary side having 200 turns in Ohms
+
+
+// CALCULATIONS
+
+R1 = (a ^ 2)*R; // Referred value of the resistance from Primary side having 100 turns in Ohms
+
+
+// DISPLAY RESULTS
+
+disp("EXAMPLE : 3.7 : SOLUTION :-") ;
+printf("\n (a) Referred value of the %.f Ohm resistance from Primary side having 100 turns , R1 = %.2f ohms \n ",R,R1);
+printf("\n\n [ TEXT BOOK SOLUTION IS PRINTED WRONGLY ( I verified by manual calculation )]\n" );
+printf("\n WRONGLY PRINTED ANSWERS ARE :- (a) Referred value of the resistance from Primary side having 100 turns = 0.025 Ohms instead of %.2f Ohms \n ",R1);
|