summaryrefslogtreecommitdiff
path: root/1757/CH11/EX11.6/EX11_6.sce
blob: bcdeb8d069b17520802a0b6c3dbfe36c0b8160f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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 ');