From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2642/CH2/EX2.11/Ex2_11.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 2642/CH2/EX2.11/Ex2_11.sce (limited to '2642/CH2/EX2.11') diff --git a/2642/CH2/EX2.11/Ex2_11.sce b/2642/CH2/EX2.11/Ex2_11.sce new file mode 100755 index 000000000..51e103ac0 --- /dev/null +++ b/2642/CH2/EX2.11/Ex2_11.sce @@ -0,0 +1,21 @@ +// FUNDAMENTALS OF ELECTICAL MACHINES +// M.A.SALAM +// NAROSA PUBLISHING HOUSE +// SECOND EDITION + +// Chapter 2 : BESICS OF MAGNETIC CIRCUITS +// Example : 2.11 +clc;clear; // clears the console and command history + +// Given data +I = 150 // current through conductor in A +l = 2 // conductor length in m +B = 0.35 // magnetic flux density in T + +// caclulations +F = B*l*I // force in N + +// display the result +disp("Example 2.11 solution"); +printf("\n Force \n F = %.0f N \n", F); + -- cgit