summaryrefslogtreecommitdiff
path: root/3775/CH3/EX3.6/Ex3_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3775/CH3/EX3.6/Ex3_6.sce')
-rw-r--r--3775/CH3/EX3.6/Ex3_6.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3775/CH3/EX3.6/Ex3_6.sce b/3775/CH3/EX3.6/Ex3_6.sce
new file mode 100644
index 000000000..ed56e8cbd
--- /dev/null
+++ b/3775/CH3/EX3.6/Ex3_6.sce
@@ -0,0 +1,16 @@
+//Ex 3.6 page 122
+
+clc;
+clear;
+close;
+
+R=10;// ohm
+L=100/1000;// H
+E=100;// V
+Vs=230;// V
+f=50;// Hz
+alpha = 45;// degree
+Vm=Vs*sqrt(2);// V
+Vo=2*Vm/%pi*cos(alpha*%pi/180);// V
+Io=(Vo-E)/R;// A
+printf('Average load current = %.3f A',Io)