diff options
Diffstat (limited to '3673/CH1/EX1.a.7')
-rw-r--r-- | 3673/CH1/EX1.a.7/Example_a_1_7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3673/CH1/EX1.a.7/Example_a_1_7.sce b/3673/CH1/EX1.a.7/Example_a_1_7.sce new file mode 100644 index 000000000..acbd760ca --- /dev/null +++ b/3673/CH1/EX1.a.7/Example_a_1_7.sce @@ -0,0 +1,14 @@ +//Example 1_7 page no:25
+clc;
+I5=4;
+I6=1;
+V=30;
+R6=6;
+V6=24;
+V10=50;
+I10=I5+I6;
+Vc=-V6;
+V1=V10-Vc;
+disp(I10,"the current through 10 ohm resistance is (in A)");
+Vs=I10-V+Vc;//calculating the source voltage
+disp(Vs,"the source voltage Vs is (in V)");
|