diff options
Diffstat (limited to '3648/CH17/EX17.13/Ex17_13.sce')
-rw-r--r-- | 3648/CH17/EX17.13/Ex17_13.sce | 13 |
1 files changed, 13 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)
|