summaryrefslogtreecommitdiff
path: root/1964/CH5/EX5.43/ex5_43.sce
diff options
context:
space:
mode:
Diffstat (limited to '1964/CH5/EX5.43/ex5_43.sce')
-rwxr-xr-x1964/CH5/EX5.43/ex5_43.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1964/CH5/EX5.43/ex5_43.sce b/1964/CH5/EX5.43/ex5_43.sce
new file mode 100755
index 000000000..71767c52c
--- /dev/null
+++ b/1964/CH5/EX5.43/ex5_43.sce
@@ -0,0 +1,12 @@
+//Chapter-5, Example 5.43, Page 209
+//=============================================================================
+clc
+clear
+//INPUT DATA
+V1=400;//voltage in volts
+Il=10;//current in A
+//CALCULATIONS
+//in star connected system,phase current=(line current)=I1
+phase_voltage=(V1)/(sqrt(3));//voltage in Volts
+mprintf("Thus phase voltage is %1.0f V",phase_voltage);
+//=================================END OF PROGRAM======================================================================================================