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.43/Ex9_43.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 3769/CH9/EX9.43/Ex9_43.sce (limited to '3769/CH9/EX9.43/Ex9_43.sce') diff --git a/3769/CH9/EX9.43/Ex9_43.sce b/3769/CH9/EX9.43/Ex9_43.sce new file mode 100644 index 000000000..ba47a3bc5 --- /dev/null +++ b/3769/CH9/EX9.43/Ex9_43.sce @@ -0,0 +1,17 @@ +clear +//Given +V1=60 //ohm +V2=30 +R=300.0 +R1=1200 +R2=400 //ohm + +//Calculation +V=V1-V2 +I=V/R +R11=(R1*R)/(R1+R) +I=V1/(R11+R2) +V11=I*R11 + +//Result +printf("\n Voltmeter will read %0.3f V", V11) -- cgit