summaryrefslogtreecommitdiff
path: root/3648/CH17/EX17.13
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH17/EX17.13')
-rw-r--r--3648/CH17/EX17.13/Ex17_13.sce13
-rw-r--r--3648/CH17/EX17.13/Ex17_13.txt3
2 files changed, 16 insertions, 0 deletions
diff --git a/3648/CH17/EX17.13/Ex17_13.sce b/3648/CH17/EX17.13/Ex17_13.sce
new file mode 100644
index 000000000..28898f713
--- /dev/null
+++ b/3648/CH17/EX17.13/Ex17_13.sce
@@ -0,0 +1,13 @@
+//Example 17_13
+clc();
+clear;
+//To find the values of e, R and I
+i1=2 //Units in A
+i2=0.5 //Units in A
+i=i1+i2 //Units in A
+v1=6 //Units in V
+v2=16 //Units in V
+r=-(v1-v2)/0.5 //Units in Ohms
+v3=25 //Units in V
+e=v2+v3 //Units in V
+printf("The current I=%.1f A\n Resistance is R=%d Ohms\n The value E is=%d V",i,r,e)
diff --git a/3648/CH17/EX17.13/Ex17_13.txt b/3648/CH17/EX17.13/Ex17_13.txt
new file mode 100644
index 000000000..1655327fb
--- /dev/null
+++ b/3648/CH17/EX17.13/Ex17_13.txt
@@ -0,0 +1,3 @@
+The current I=2.5 A
+ Resistance is R=20 Ohms
+ The value E is=41 V \ No newline at end of file