summaryrefslogtreecommitdiff
path: root/1757/CH11/EX11.6/EX11_6.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1757/CH11/EX11.6/EX11_6.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1757/CH11/EX11.6/EX11_6.sce')
-rwxr-xr-x1757/CH11/EX11.6/EX11_6.sce69
1 files changed, 69 insertions, 0 deletions
diff --git a/1757/CH11/EX11.6/EX11_6.sce b/1757/CH11/EX11.6/EX11_6.sce
new file mode 100755
index 000000000..bcdeb8d06
--- /dev/null
+++ b/1757/CH11/EX11.6/EX11_6.sce
@@ -0,0 +1,69 @@
+//Example11.6 // determine the analog output voltage and feed back current If
+clc;
+clear;
+close;
+Vref = 12 ;
+BI = 1001 ; BI = 1101 ; BI = 1010 ; BI = 0011 ;
+Rf = 25 ; // K ohm
+R = 0.25*Rf ;
+
+// The output voltage of given binary weighted resistor D/A converter is defined as
+
+// Vo = -(Rf*Vref/R)*(2^0*b0+2^-1*b1+2^-2*b2+2^-3*b3) ;
+
+// Vo = -(Rf*Vref/R)*(b0+2^-1*b1+2^-2*b2+2^-3*b3) ;
+
+// for the given value Rf,R and Vref the output voltage
+
+// Vo = -60*(b0+2^-1*b1+2^-2*b2+2^-3*b3) ;
+
+// for the binary input 1001 analog output is
+b3 = 1 ;
+b2 = 0 ;
+b1 = 0 ;
+b0 = 1 ;
+Vo = -60*(b0+2^-1*b1+2^-2*b2+2^-3*b3) ;
+disp('for the binary input 1001 analog output is = '+string(Vo)+ ' V ');
+
+// the feedback current If is given by
+If = -(Vo/Rf) ;
+disp('the feedback current If is = '+string(If)+ ' mA ');
+
+
+// for the binary input 1101 analog output is
+b3 = 1 ;
+b2 = 1 ;
+b1 = 0 ;
+b0 = 1 ;
+Vo = -60*(b0+2^-1*b1+2^-2*b2+2^-3*b3) ;
+disp('for the binary input 1101 analog output is = '+string(Vo)+ ' V ');
+
+// the feedback current If is given by
+If = -(Vo/Rf) ;
+disp('the feedback current If is = '+string(If)+ ' mA ');
+
+
+// for the binary input 1010 analog output is
+b3 = 1 ;
+b2 = 0 ;
+b1 = 1 ;
+b0 = 0 ;
+Vo = -60*(b0+2^-1*b1+2^-2*b2+2^-3*b3) ;
+disp('for the binary input 1010 analog output is = '+string(Vo)+ ' V ');
+
+// the feedback current If is given by
+If = -(Vo/Rf) ;
+disp('the feedback current If is = '+string(If)+ ' mA ');
+
+
+// for the binary input 0011 analog output is
+b3 = 0 ;
+b2 = 0 ;
+b1 = 1 ;
+b0 = 1 ;
+Vo = -60*(b0+2^-1*b1+2^-2*b2+2^-3*b3) ;
+disp('for the binary input 0011 analog output is = '+string(Vo)+ ' V ');
+
+// the feedback current If is given by
+If = -(Vo/Rf) ;
+disp('the feedback current If is = '+string(If)+ ' mA ');