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.18 | |
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.18')
-rwxr-xr-x | 431/CH2/EX2.18/EX2_18.sce | 26 | ||||
-rwxr-xr-x | 431/CH2/EX2.18/resultEX2_18.txt | 11 |
2 files changed, 37 insertions, 0 deletions
diff --git a/431/CH2/EX2.18/EX2_18.sce b/431/CH2/EX2.18/EX2_18.sce new file mode 100755 index 000000000..ec0e70ce4 --- /dev/null +++ b/431/CH2/EX2.18/EX2_18.sce @@ -0,0 +1,26 @@ +//calculating resistance required in series
+//Chapter 2
+//Example 2.18
+//page 124
+clear;
+clc;
+disp("Example 2.18")
+V=230; //voltage supply in volts
+Ia=20; //armature current in amperes
+Ra=0.5; //armature resistance in ohms
+E=V-(Ia*Ra);
+printf("E=%dV",E)
+disp("when extra resistance is added in the armature circuit,the speed is halved")
+E2=E/2;
+R=((V-E2)/Ia)-Ra;
+disp("The load torque is conatant")
+printf("extra resistance in the armature circui,R=%fohms",R)
+disp("The load torque directly proportional to square of speed")
+disp("if N is halfed, Iais one-fourthed")
+Ia2=Ia/4;
+R=((V-E2)/Ia2)-Ra;
+printf("extra resistance in the armature circui,R=%fohms",R)
+
+
+
+
diff --git a/431/CH2/EX2.18/resultEX2_18.txt b/431/CH2/EX2.18/resultEX2_18.txt new file mode 100755 index 000000000..28ab354a8 --- /dev/null +++ b/431/CH2/EX2.18/resultEX2_18.txt @@ -0,0 +1,11 @@ +
+ Example 2.18
+E=220V
+ when extra resistance is added in the armature circuit,the speed is halved
+
+ The load torque is conatant
+extra resistance in the armature circui,R=5.500000ohms
+ The load torque directly proportional to square of speed
+
+ if N is halfed, Iais one-fourthed
+extra resistance in the armature circui,R=23.500000ohms
\ No newline at end of file |