summaryrefslogtreecommitdiff
path: root/1319/CH12/EX12.7/i_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '1319/CH12/EX12.7/i_7.sce')
-rw-r--r--1319/CH12/EX12.7/i_7.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1319/CH12/EX12.7/i_7.sce b/1319/CH12/EX12.7/i_7.sce
new file mode 100644
index 000000000..c2b9785e6
--- /dev/null
+++ b/1319/CH12/EX12.7/i_7.sce
@@ -0,0 +1,13 @@
+// Power Rating Calculation
+
+clc;
+clear;
+
+V=250;
+I=15;
+
+// Power Equation or Watt's Law P=V*I.
+
+P=V*I;
+
+disp('watts',P,'The power rating of the device =')