summaryrefslogtreecommitdiff
path: root/Working_Examples/2777/CH2/EX2.3/Ex2_3.sce
diff options
context:
space:
mode:
authorSiddharth Agarwal2019-09-03 18:27:40 +0530
committerSiddharth Agarwal2019-09-03 18:27:40 +0530
commit8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch)
treee1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/2777/CH2/EX2.3/Ex2_3.sce
parent52a477ec613900885e29c4a0b02806a415b4f83a (diff)
downloadXcos_block_examples-master.tar.gz
Xcos_block_examples-master.tar.bz2
Xcos_block_examples-master.zip
Xcos examples from textbooks and for blocksHEADmaster
Diffstat (limited to 'Working_Examples/2777/CH2/EX2.3/Ex2_3.sce')
-rwxr-xr-xWorking_Examples/2777/CH2/EX2.3/Ex2_3.sce34
1 files changed, 34 insertions, 0 deletions
diff --git a/Working_Examples/2777/CH2/EX2.3/Ex2_3.sce b/Working_Examples/2777/CH2/EX2.3/Ex2_3.sce
new file mode 100755
index 0000000..2821ad5
--- /dev/null
+++ b/Working_Examples/2777/CH2/EX2.3/Ex2_3.sce
@@ -0,0 +1,34 @@
+
+// ELECTRICAL MACHINES
+// R.K.Srivartava
+// First Impression 2011
+// CENGAGE LEARNING INDIA PVT. LTD
+
+// CHAPTER : 2 : FORCES IN AN ELECTROMAGNETIC SYSTEMS
+
+// EXAMPLE : 2.3
+
+clear ; clc ; close ; // Clear the work space and console
+
+
+// GIVEN DATA
+
+F = 35; // Total MMF in Amphere-Turns
+Lc = 0.1; // Inductance of The Material "c" in Henry
+a = 0.001; // Area of the all Materials "a,b,c" in Metre-Square
+
+
+// CALCULATIONS
+
+Hc = F/Lc; // Field Intensity in Amphere-Turns/Meter (Given that entire MMf apperas on Material "c" Because of the highest reluctance about 45000 MKS unit From Example 2.2)
+Bc = 0.65; // Flux density of material "c" in in Telsa obtained from the Standard B-H curve
+phi = Bc*a; // Flux in the core in Weber
+Ba = Bc; // Flux density of material "a" in in Telsa Same because Area of Cross Section is Same
+Bb = Bc; // Flux density of material "b" in in Telsabecause Area of Cross Section is Same
+
+
+// DISPLAY RESULTS
+
+disp("EXAMPLE : 2.3 : SOLUTION :-") ;
+printf("\n (a) Flux in the core , phi = %.5f Wb \n ",phi);
+printf("\n (b) Flux density of material a,b,c , Ba = Bb = Bc %.2f T \n",Ba);