diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /431/CH2/EX2.10 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '431/CH2/EX2.10')
-rwxr-xr-x | 431/CH2/EX2.10/EX2_10.sce | 20 | ||||
-rwxr-xr-x | 431/CH2/EX2.10/resultEX2_10.txt | 4 |
2 files changed, 24 insertions, 0 deletions
diff --git a/431/CH2/EX2.10/EX2_10.sce b/431/CH2/EX2.10/EX2_10.sce new file mode 100755 index 000000000..bd763f5a5 --- /dev/null +++ b/431/CH2/EX2.10/EX2_10.sce @@ -0,0 +1,20 @@ +//calculating the torque developed
+//Chapter 2
+//Example 2.10
+//page 98
+clear;
+clc;
+disp("Example 2.10")
+n=10; //number of turns in 1 coil
+l=0.2;
+d=0.2; //diameter in metres
+B=1; //uniform magnetic field density in weber per m^2
+N=1500; //speed in rpm
+r=(d/2); //radius in metres
+E=(B*l*((2*3.14*N)/60)*r*2*n);
+printf("total induced emf=%f V",E)
+R=4; //total resistance in ohms
+I=E/R;
+printf("\nThe current through the armature coil when connected to the load,I=%f A",I)
+T=(E*I)/((2*3.14*N)/60)
+printf("\ntorque=%f Nm",T)
\ No newline at end of file diff --git a/431/CH2/EX2.10/resultEX2_10.txt b/431/CH2/EX2.10/resultEX2_10.txt new file mode 100755 index 000000000..e4ea80188 --- /dev/null +++ b/431/CH2/EX2.10/resultEX2_10.txt @@ -0,0 +1,4 @@ + Example 2.10
+total induced emf=62.800000 V
+The current through the armature coil when connected to the load,I=15.700000 A
+torque=6.280000 Nm
\ No newline at end of file |