diff options
Diffstat (limited to '3673/CH1/EX1.a.2/Example_a_1_2.sce')
-rw-r--r-- | 3673/CH1/EX1.a.2/Example_a_1_2.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3673/CH1/EX1.a.2/Example_a_1_2.sce b/3673/CH1/EX1.a.2/Example_a_1_2.sce new file mode 100644 index 000000000..958bcd2d0 --- /dev/null +++ b/3673/CH1/EX1.a.2/Example_a_1_2.sce @@ -0,0 +1,12 @@ +//Example 1_2 page no:21
+clc;
+I8=20/8;
+I15=(2.5*11)/(11+28);
+V28=0.71*28;
+V19=2.5*19;
+emf=V28+V19;//calculating the emf
+disp(I8,"the current flowing through 8 ohm resistor is (in A)");
+disp(I15,"the current flowing through 15 ohm resistor is (in A)");
+disp(V28,"the voltage across 28 ohm resistor is (in V)");
+disp(V19,"the voltage across 19 ohm resistor is (in V)");
+disp(emf,"the emf of the battery is (in V)");
|