summaryrefslogtreecommitdiff
path: root/165/CH11/EX11.5/ex11_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '165/CH11/EX11.5/ex11_5.sce')
-rw-r--r--165/CH11/EX11.5/ex11_5.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/165/CH11/EX11.5/ex11_5.sce b/165/CH11/EX11.5/ex11_5.sce
new file mode 100644
index 000000000..6aea25e85
--- /dev/null
+++ b/165/CH11/EX11.5/ex11_5.sce
@@ -0,0 +1,17 @@
+//Example 11.5
+clc;
+
+E=6; //Applied potential across bridge
+//Given values of bridge elements
+R1=5000;
+R2=5000;
+R3=5000;
+//We Know Balanced bridge equations as
+// R1*R3=R2*R4
+Rv=R2*R3/R1;
+disp(Rv,'Value of unknown Resistence Rv is at 80 deg C')
+//Now given from the graph is the value of Rv at 60 deg C
+Rv=4500;
+//The error signal can be calculated using following formula
+es=E*(R3/(R1+R3)-Rv/(R2+Rv));
+disp(es,'The value of error signal at 60 deg C is') \ No newline at end of file