diff options
Diffstat (limited to '1319/CH12/EX12.15')
-rw-r--r-- | 1319/CH12/EX12.15/i_15.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1319/CH12/EX12.15/i_15.sce b/1319/CH12/EX12.15/i_15.sce new file mode 100644 index 000000000..7a29f4e0f --- /dev/null +++ b/1319/CH12/EX12.15/i_15.sce @@ -0,0 +1,18 @@ +// To determine the currents in parallel branches of a network.
+
+clc;
+clear;
+
+I=40;
+
+R1=20;
+R2=60;
+
+//Current Divider equation I1= I*(R2/(R1+R2))
+
+I1=I*(R2/(R1+R2));
+I2=I*(R1/(R1+R2));
+
+disp('A',I1,'The Current in the 20 ohm branch =')
+disp('A',I2,'The Current in the 60 ohm branch =')
+
|