diff options
Diffstat (limited to '165/CH11/EX11.1/ex11_1.sce')
-rw-r--r-- | 165/CH11/EX11.1/ex11_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/165/CH11/EX11.1/ex11_1.sce b/165/CH11/EX11.1/ex11_1.sce new file mode 100644 index 000000000..99064cab8 --- /dev/null +++ b/165/CH11/EX11.1/ex11_1.sce @@ -0,0 +1,11 @@ +//Example 11.1
+clc;
+
+//Given values of bridge elements
+R1=10000;
+R2=15000;
+R3=40000;
+//We Know Balanced bridge equations as
+// R1*R3=R2*R4
+Rx=R2*R3/R1;
+disp(Rx,'Value of unknown Resistence Rx is')
\ No newline at end of file |