diff options
Diffstat (limited to '3673/CH1/EX1.a.11/Example_a_1_11.sce')
-rw-r--r-- | 3673/CH1/EX1.a.11/Example_a_1_11.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3673/CH1/EX1.a.11/Example_a_1_11.sce b/3673/CH1/EX1.a.11/Example_a_1_11.sce new file mode 100644 index 000000000..4af08c460 --- /dev/null +++ b/3673/CH1/EX1.a.11/Example_a_1_11.sce @@ -0,0 +1,15 @@ +//Example 1_11 page no:28
+clc;
+R1=5;
+R2=25;
+R3=10;
+V=50;
+It=6;
+//current in branch ADB
+I30=V/(R2+R1);
+disp(I30,"the current in branch ADB is (in A)");
+//current in branch ACB
+I10=It-I30;
+disp(I10,"the current in branch ACB is (in A)");
+R=(V/I10)-R3;
+disp(R,"the resistance R is (in ohm)");
|