summaryrefslogtreecommitdiff
path: root/3811/CH3/EX3.5/Ex3_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3811/CH3/EX3.5/Ex3_5.sce')
-rw-r--r--3811/CH3/EX3.5/Ex3_5.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3811/CH3/EX3.5/Ex3_5.sce b/3811/CH3/EX3.5/Ex3_5.sce
new file mode 100644
index 000000000..673c0e53c
--- /dev/null
+++ b/3811/CH3/EX3.5/Ex3_5.sce
@@ -0,0 +1,24 @@
+//Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
+//chapter 3
+//example 3.5
+//edition 1
+//publishing place:Thomson Learning
+clc;
+clear;
+Vsrms=110;//The voltage on the ac side in volts
+R=5;//Resistance value of the resistive load in ohm
+Vrms=55;//voltage across the load
+//iteration method
+xold=1;//assumed value
+x=(180/%pi)*(2.25+(sind(2*xold)/2));
+err=100;//assumed value
+while(err>0.0001)
+ xnew=(180/%pi)*(2.25+(sind(2*x)/2));
+ x=xnew;
+ err=abs(xnew-xold);
+ xold=x;
+ end
+disp(x,'The triggering angle in degree is')
+P=(Vrms)^2/R;
+disp(P,'The load power in watt is:')
+//The answer given in the book is wrong