summaryrefslogtreecommitdiff
path: root/3769/CH5/EX5.37/Ex5_37.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH5/EX5.37/Ex5_37.sce')
-rw-r--r--3769/CH5/EX5.37/Ex5_37.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3769/CH5/EX5.37/Ex5_37.sce b/3769/CH5/EX5.37/Ex5_37.sce
new file mode 100644
index 000000000..27d4906c9
--- /dev/null
+++ b/3769/CH5/EX5.37/Ex5_37.sce
@@ -0,0 +1,16 @@
+clear
+//Given
+R1=2.0 //ohm
+R2=3 //ohm
+R3=2.8
+E=6 //V
+
+//Calculation
+Rab=R1*R2/(R1+R2)
+Rt=Rab+R3
+I=E/Rt
+Vab=I*Rab
+I1=Vab/2.0
+
+//Result
+printf("\n The steady state current is %0.3f A", I1)