From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3769/CH9/EX9.39/Ex9_39.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 3769/CH9/EX9.39/Ex9_39.sce (limited to '3769/CH9/EX9.39/Ex9_39.sce') diff --git a/3769/CH9/EX9.39/Ex9_39.sce b/3769/CH9/EX9.39/Ex9_39.sce new file mode 100644 index 000000000..d688a77cb --- /dev/null +++ b/3769/CH9/EX9.39/Ex9_39.sce @@ -0,0 +1,15 @@ +clear +//Given +R1=1200.0 //ohm +R2=600 //ohm +Vab=5 //V +V=35 + +//Calculation +Rp=(R1*R2)/(R1+R2) +I=Vab/Rp +pd=V-Vab +R=pd/I + +//Result +printf("\n value of unknown resistance is %0.3f ohm", R) -- cgit