summaryrefslogtreecommitdiff
path: root/3784/CH4/EX4.34/Ex4_34.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3784/CH4/EX4.34/Ex4_34.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3784/CH4/EX4.34/Ex4_34.sce')
-rw-r--r--3784/CH4/EX4.34/Ex4_34.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3784/CH4/EX4.34/Ex4_34.sce b/3784/CH4/EX4.34/Ex4_34.sce
new file mode 100644
index 000000000..71cc9576c
--- /dev/null
+++ b/3784/CH4/EX4.34/Ex4_34.sce
@@ -0,0 +1,17 @@
+clc
+//Variable Initialisation
+Ea=230//Input Voltage of motor in volts
+Ia=15//Armature Current in Ampere
+Ra=1.2//Armature resistance in ohm
+Rb=20//Braking Resistance in ohm
+Ia2=15*Ia
+N1=1200//Motor Speed in rpm
+//Solution
+Eb=Ea-(Ia*Ra)
+Eb1=Ea-(Ia2*Ra)
+d1=1-(((Eb1/Ia2)-Ra)/Rb)
+d2=0.5//Duty ratio
+Eb2=Ia*(((1-d2)*Rb)+Ra)
+N2=(Eb2/Eb)*N1
+printf('\n\n Duty ratio Of Chopper=%0.1f\n\n',d1)
+printf('\n\n Motor Speed=%0.1frpm\n\n',N2)