summaryrefslogtreecommitdiff
path: root/3673/CH2/EX2.12
diff options
context:
space:
mode:
Diffstat (limited to '3673/CH2/EX2.12')
-rw-r--r--3673/CH2/EX2.12/Ex2_12.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/3673/CH2/EX2.12/Ex2_12.sce b/3673/CH2/EX2.12/Ex2_12.sce
new file mode 100644
index 000000000..ddf9e86a8
--- /dev/null
+++ b/3673/CH2/EX2.12/Ex2_12.sce
@@ -0,0 +1,22 @@
+//Example 2_12 page no:76
+clc
+//applying kirchoff's law to the given circuit
+R1=10//resistance in ohm
+R2=3//resistance in ohm
+R3=5//resistance in ohm
+R4=1//resistance in ohm
+V=10//source voltage
+resistance=[(1/10+1/3),-1/3;-1/3,(1/3+1/5+1)]
+current=[5,10]
+volt=inv(resistance)'*current'//calculating V1 V2
+disp(volt(1),"voltage across node 1 is (in V)")
+disp(volt(2),"voltage across node 2 is (in V)")
+I1=volt(1,1)/R1;
+disp(I1,"current in branch I10 (in ampere)")
+I2=(volt(1,1)-volt(2,1))/R2;
+disp(I2,"current in branch I3 (in ampere)")
+I3=volt(2,1)/R3
+disp(I3,"current in branch I5 (in ampere)")
+I4=(volt(2,1)-V)/R4
+disp(I4,"current in branch I1 (in ampere)")
+//in textbook node voltages are rounded off so that current in each branches are more approximated in text book so current values varies slightly with textbook