blob: 973ab4783a96af2188c2fe1b59932c06b1e24fcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
|