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 --- 3554/CH11/EX11.1/Ex11_1.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 3554/CH11/EX11.1/Ex11_1.sce (limited to '3554/CH11/EX11.1/Ex11_1.sce') diff --git a/3554/CH11/EX11.1/Ex11_1.sce b/3554/CH11/EX11.1/Ex11_1.sce new file mode 100644 index 000000000..973ab4783 --- /dev/null +++ b/3554/CH11/EX11.1/Ex11_1.sce @@ -0,0 +1,17 @@ +// Exa 11.1 + +clc; +clear all; + +// Given data + +// Wheatstone's bridge circuit +R1=10; // k Ohms +R2=15; // k Ohms +R3=40; // k Ohms + +// Solution +// From the equation (11.4) of balanced bridge we have + +Rx=R2*R3/R1; // Unknown resistance Rx +printf(' The unknown resistance Rx is = %d k Ohms \n',Rx); -- cgit