summaryrefslogtreecommitdiff
path: root/3775/CH3/EX3.2/Ex3_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3775/CH3/EX3.2/Ex3_2.sce')
-rw-r--r--3775/CH3/EX3.2/Ex3_2.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3775/CH3/EX3.2/Ex3_2.sce b/3775/CH3/EX3.2/Ex3_2.sce
new file mode 100644
index 000000000..c276b4c9f
--- /dev/null
+++ b/3775/CH3/EX3.2/Ex3_2.sce
@@ -0,0 +1,17 @@
+//Ex 3.2 page 118
+
+clc;
+clear;
+close;
+
+R=10;// ohm
+E=165;// V
+//vt=330*sin(314*t)
+Vm=330;// V
+f=314/2/%pi;// Hz
+alpha1=asin(E/Vm);// radian
+alpha2=%pi-alpha1;// radian
+Io=1/2/%pi/R*(2*Vm*cos(alpha1)-E*(alpha2-alpha1));// A
+P=E*Io;// W
+
+printf('Power supplied to battery = %d W',P)