diff options
Diffstat (limited to '3673/CH1/EX1.a.6/Example_a_1_6.sce')
-rw-r--r-- | 3673/CH1/EX1.a.6/Example_a_1_6.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3673/CH1/EX1.a.6/Example_a_1_6.sce b/3673/CH1/EX1.a.6/Example_a_1_6.sce new file mode 100644 index 000000000..90e3b7edd --- /dev/null +++ b/3673/CH1/EX1.a.6/Example_a_1_6.sce @@ -0,0 +1,11 @@ +//Example 1_6 page no:24
+clc;
+Vs=30;
+R1=5;
+R2=4;
+R3=2;
+R4=4;
+R5=1/((1/(R2))+(1/(R3))+(1/(R4)));
+Rt=R1+R5;
+It=Vs/Rt;//calculating the total current
+disp(It,"the total current is (in A)");
|