diff options
Diffstat (limited to '1733/CH4/EX4.3')
-rwxr-xr-x | 1733/CH4/EX4.3/4_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1733/CH4/EX4.3/4_3.sce b/1733/CH4/EX4.3/4_3.sce new file mode 100755 index 000000000..1844de8c0 --- /dev/null +++ b/1733/CH4/EX4.3/4_3.sce @@ -0,0 +1,12 @@ +//4.3
+clc;
+Vs=240;
+emf_800=Vs-20*0.5;
+emf_600=230*600/800;
+Vav=emf_600+20*0.5;
+Duty_cycle=Vav/Vs;
+printf("Duty cycle when motor develop the rated torque = %.4f ", Duty_cycle)
+//when motor develop half of the rated torque
+Vav=emf_600+10*0.5;
+Duty_cycle=Vav/Vs;
+printf("\nDuty cycle when motor develop half of the rated torque = %.4f ", Duty_cycle)
\ No newline at end of file |