diff options
Diffstat (limited to '3784/CH1/EX1.3')
-rw-r--r-- | 3784/CH1/EX1.3/Ex1_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3784/CH1/EX1.3/Ex1_3.sce b/3784/CH1/EX1.3/Ex1_3.sce new file mode 100644 index 000000000..60ac898eb --- /dev/null +++ b/3784/CH1/EX1.3/Ex1_3.sce @@ -0,0 +1,14 @@ +clc
+//Variable Initialization
+V=120 //Supply Voltage In Volts
+Vm=120*1.414 //Max. Voltage In Volts
+Ra=10 //Armature Resistance In Ohm
+af=0 //Firing Angle Of Converter
+Eb=60 //Back Emf In Volts
+
+//Solution
+Va=Vm*(1+cos(af))*(1/%pi)//Voltage Across armature In Volts
+Ia=(Va-Eb)/Ra //Average Value Of Armature Current In Amp
+
+//Result
+printf('\n\n The Average Value Of Armature Current=%0.1f Amp\n\n',Ia)
|