summaryrefslogtreecommitdiff
path: root/3554/CH11/EX11.5/Ex11_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3554/CH11/EX11.5/Ex11_5.sce')
-rw-r--r--3554/CH11/EX11.5/Ex11_5.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3554/CH11/EX11.5/Ex11_5.sce b/3554/CH11/EX11.5/Ex11_5.sce
new file mode 100644
index 000000000..8d39131b8
--- /dev/null
+++ b/3554/CH11/EX11.5/Ex11_5.sce
@@ -0,0 +1,24 @@
+// Exa 11.5
+
+clc;
+clear all;
+
+// Given data
+// Refering circuit in Fig. 11.15(a) and graph in 11.15(b) on page no.317
+
+R1=5; // k Ohms
+R2=5; //k Ohms
+R3= 5; // k Ohms
+E=6; // Applied voltage(V)
+
+// Solution
+
+// The value of Rv when bridge is balanced is calculated as
+Rv=R2*R3/R1;
+printf(' The value of Rv = %d K Ohms \n' , Rv);
+disp(" From the graph, the temperature at which bridge is balanced is = 80 degree celsius");
+disp(" From the graph, the resistance Rv for balancing bridge at 60 degree celcius comes out to be 4.5 k Ohms ");
+// Therefore
+Rv1=4.5; // Resistance Rv at 60 degree celcius(K ohms)
+es=E*(R3/(R1+R3) - Rv1/(R2+Rv1) ); // Error signal
+printf(' The amplitude of error signal at 60 degree celsius is = %.3f V \n',es);