diff options
Diffstat (limited to '3813/CH1/EX1.1/Ex1_1.sce')
-rw-r--r-- | 3813/CH1/EX1.1/Ex1_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3813/CH1/EX1.1/Ex1_1.sce b/3813/CH1/EX1.1/Ex1_1.sce new file mode 100644 index 000000000..d5036bac5 --- /dev/null +++ b/3813/CH1/EX1.1/Ex1_1.sce @@ -0,0 +1,16 @@ +//Electric Drives concepts and application by V.Subrahmanyam
+//Publisher:Tata McGraw-Hill
+//Edition:Second
+//Ex1_1
+clc;
+clear;
+V=500;// voltage v
+N1=900;// speed in rpm
+Ia1=45;//armature current in A
+Ia2=21;//armature current in A
+R=8;// resistance in ohm
+Ra=1;//armature resistance in ohm
+Eb1=V-(Ia1*Ra);
+Eb2=V-(9*Ia2);
+N2=N1*(Eb2/Eb1);
+disp(N2,'New speed in rpm is :');
|