summaryrefslogtreecommitdiff
path: root/3769/CH14/EX14.13/Ex14_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH14/EX14.13/Ex14_13.sce')
-rw-r--r--3769/CH14/EX14.13/Ex14_13.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3769/CH14/EX14.13/Ex14_13.sce b/3769/CH14/EX14.13/Ex14_13.sce
new file mode 100644
index 000000000..7c4a55b6c
--- /dev/null
+++ b/3769/CH14/EX14.13/Ex14_13.sce
@@ -0,0 +1,16 @@
+clear
+//Given
+P=120*10**3 //W
+R=0.4 //ohm
+Ev=240.0 //V
+Ev1=24000.0 //V
+
+//Calculation
+Iv=P/Ev
+P=Iv**2*R
+Iv1=P/Ev1
+P1=Iv1**2*R
+
+//Result
+printf("\n (i) Power loss at 240 V is %0.3f K W", P*10**-3)
+printf("\n (ii) Power loss at 24000 V is %0.0f W",P1)