diff options
Diffstat (limited to '3811/CH3/EX3.16')
-rw-r--r-- | 3811/CH3/EX3.16/Ex3_16.jpg | bin | 0 -> 38258 bytes | |||
-rw-r--r-- | 3811/CH3/EX3.16/Ex3_16.sce | 23 |
2 files changed, 23 insertions, 0 deletions
diff --git a/3811/CH3/EX3.16/Ex3_16.jpg b/3811/CH3/EX3.16/Ex3_16.jpg Binary files differnew file mode 100644 index 000000000..152f50833 --- /dev/null +++ b/3811/CH3/EX3.16/Ex3_16.jpg diff --git a/3811/CH3/EX3.16/Ex3_16.sce b/3811/CH3/EX3.16/Ex3_16.sce new file mode 100644 index 000000000..5c283818f --- /dev/null +++ b/3811/CH3/EX3.16/Ex3_16.sce @@ -0,0 +1,23 @@ +//Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
+//chapter 3
+//example 3.16
+//edition 1
+//publisher and place:Nelson Engineering
+clc;
+clear;
+Vdc=250;
+Vs=208;//line to line ac voltage
+R=3;//system resistance between battery bank and source in ohm
+Beta=122;
+Vmax=(sqrt(2)*Vs)/sqrt(3);
+mprintf("\na.To calculate minimum triggering angle and associated conduction period:")
+alphamin=60-asind(Vdc/(sqrt(3)*Vmax));
+alphamin=ceil(alphamin);
+gama=Beta-alphamin;
+mprintf("\nThe minimum triggering angle is %d degree and the associated time period is %d degree",alphamin,gama)
+mprintf("\nTo compute the average charging current for the minimum triggering angle:")
+VR=Vdc+(((9*Vmax)/(2*%pi))*cosd(alphamin+150));
+l=((9*Vmax)/(2*%pi))*cosd(alphamin+150);
+IRave=VR/R;
+mprintf("\nThe average charging current of minimum triggering angle is %f A",IRave)
+//The answers vary due to round off error
|