diff options
Diffstat (limited to '343/CH1/EX1.13')
-rwxr-xr-x | 343/CH1/EX1.13/ex1_13.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/343/CH1/EX1.13/ex1_13.sce b/343/CH1/EX1.13/ex1_13.sce new file mode 100755 index 000000000..596b314cb --- /dev/null +++ b/343/CH1/EX1.13/ex1_13.sce @@ -0,0 +1,12 @@ +R1=8; // Assigning values to resistors
+R2=6;
+R3=3;
+R4=18;
+R5=5;
+R=1/((1/R2)+(1/R3)); //simplifying the network
+Rs1=R+R4;
+Rs2=1/((1/Rs1)+(1/R5));
+Rs3=R1+Rs2;
+V=60;
+I=V/Rs3; // Current through the simplified network
+disp("Amperes",I,"Current through 8 Ohm resistor");
\ No newline at end of file |