summaryrefslogtreecommitdiff
path: root/3769/CH5/EX5.33/Ex5_33.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH5/EX5.33/Ex5_33.sce')
-rw-r--r--3769/CH5/EX5.33/Ex5_33.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3769/CH5/EX5.33/Ex5_33.sce b/3769/CH5/EX5.33/Ex5_33.sce
new file mode 100644
index 000000000..a6a783283
--- /dev/null
+++ b/3769/CH5/EX5.33/Ex5_33.sce
@@ -0,0 +1,20 @@
+clear
+//Given
+Rab=500.0 //ohm
+Rl=500 //ohm
+Rbc=1500 //ohm
+E=50 //Volts
+Rac=2000.0 //ohm
+V=40
+
+//Calculation
+R=Rbc*Rl/(Rbc+Rl)
+I=E/(Rab+R)
+Pd=I*Rab
+Rl1=E-Pd
+I1=E/Rac
+R12=V/I1
+
+//Result
+printf("\n (i) Potential difference across the road is %0.2f V",Rl1)
+printf("\n (ii) Resistance at BC is %0.3f ohm", R12)