diff options
Diffstat (limited to '3554/CH11/EX11.1/Ex11_1.sce')
-rw-r--r-- | 3554/CH11/EX11.1/Ex11_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
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);
|