diff options
Diffstat (limited to '3813/CH3/EX3.1/Ex3_1.sce')
-rw-r--r-- | 3813/CH3/EX3.1/Ex3_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3813/CH3/EX3.1/Ex3_1.sce b/3813/CH3/EX3.1/Ex3_1.sce new file mode 100644 index 000000000..57327d8d9 --- /dev/null +++ b/3813/CH3/EX3.1/Ex3_1.sce @@ -0,0 +1,14 @@ +//Electric Drives:concepts and applications by V.subrahmanyam
+//Publisher:Tata McGraw-Hill
+//Edition:Second
+//Ex3_1
+clc;
+clear;
+Rd=2;//Resistance in ohm
+Eb=150;//Back emf in V
+Vs=400;//Supply voltage in V
+Alpha=0.52;//angle in radian
+Vdia=((2*sqrt(2)*Vs*cos(Alpha))/%pi);
+Id=(Vdia-Eb)/Rd;
+Irms=Id/sqrt(2);
+disp(Id,"Current in the load in A is:")
|