summaryrefslogtreecommitdiff
path: root/1319/CH12/EX12.5
diff options
context:
space:
mode:
Diffstat (limited to '1319/CH12/EX12.5')
-rw-r--r--1319/CH12/EX12.5/i_5.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1319/CH12/EX12.5/i_5.sce b/1319/CH12/EX12.5/i_5.sce
new file mode 100644
index 000000000..0105e964a
--- /dev/null
+++ b/1319/CH12/EX12.5/i_5.sce
@@ -0,0 +1,12 @@
+//Current Calculation using ohm's law.
+clc;
+clear;
+
+V=220;
+R=80;
+
+// Using Ohm's Law V=I*R
+
+I=V/R;
+
+disp('amperes',I,'The Load Current =')