summaryrefslogtreecommitdiff
path: root/3769/CH5/EX5.31/Ex5_31.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH5/EX5.31/Ex5_31.sce')
-rw-r--r--3769/CH5/EX5.31/Ex5_31.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3769/CH5/EX5.31/Ex5_31.sce b/3769/CH5/EX5.31/Ex5_31.sce
new file mode 100644
index 000000000..010ce40cc
--- /dev/null
+++ b/3769/CH5/EX5.31/Ex5_31.sce
@@ -0,0 +1,20 @@
+clear
+//Given
+R1=5 //ohm
+R2=9 //ohm
+R3=14 //ohm
+R4=11
+R5=7
+R6=18
+R7=13
+R8=22
+V=22
+
+//Calculation
+Rec=(R1+R2)*R3/(R1+R2+R3)
+Rbe=(R4+R5)*R6/(R4+R5+R6)
+Rae=(R7+R2)*R8/(R7+R2+R8)
+I=V/Rae
+
+//Result
+printf("\n The value of current in the branch AF is %0.3f A", I)