diff options
Diffstat (limited to '3784/CH3/EX3.4/Ex3_4.sce')
-rw-r--r-- | 3784/CH3/EX3.4/Ex3_4.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3784/CH3/EX3.4/Ex3_4.sce b/3784/CH3/EX3.4/Ex3_4.sce new file mode 100644 index 000000000..0f1194964 --- /dev/null +++ b/3784/CH3/EX3.4/Ex3_4.sce @@ -0,0 +1,15 @@ +clc
+// Variable Initiallization
+F=50 //Supply Frequency In Hz
+Erms=230 //RMS Voltage Per Phase In Volts
+L=0.015 //Inductance In Henry
+A1=60 //Firing Angle
+A2=120 //Firing Angle
+
+
+
+
+//solution
+W=2*%pi*F
+Icp=((3*sqrt(2)*Erms)/(W*L))*(1-sind(A1))
+printf('\n\n The Peak value of Circulating Current=%0.1f Amp\n\n',Icp)
|