summaryrefslogtreecommitdiff
path: root/2276/CH10/EX10.5
diff options
context:
space:
mode:
Diffstat (limited to '2276/CH10/EX10.5')
-rwxr-xr-x2276/CH10/EX10.5/chapter10_ex5.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/2276/CH10/EX10.5/chapter10_ex5.sce b/2276/CH10/EX10.5/chapter10_ex5.sce
new file mode 100755
index 000000000..35ecf53a9
--- /dev/null
+++ b/2276/CH10/EX10.5/chapter10_ex5.sce
@@ -0,0 +1,23 @@
+clc
+clear
+
+//input
+p=2;//number of poles
+v=415;//3 phase supply voltage in volts
+n=3;//number of phases
+x=0.6;//reactance of phase in ohms
+f=50;//supply ferquency in hertz
+e=0.08;//resultant e.m.f. is 0.08of supply voltage
+
+//calculations
+e1=(e*v)/(3^0.5);//resultant e.m.f. per phase in volts
+i=e1/x;//current per phase in current
+il=i;//line current in amperes
+phi=(180/%pi)*atan(e);//load angle in degrees
+the=(180-phi)/p;
+PHI=cos(atan(e));//power factor
+inp=(3^0.5)*v*PHI*il;//power input in watts
+t=inp/(2*%pi*(f/(p/2)));//torque in newton meter
+
+//output
+mprintf('the total torque produced is %3.0f Nm',t)