blob: 2a439a81a0a50611bfcee08fb4eb7715c62a1218 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter 7
//Example 7-1
//ProbOnDeadZoneCircuit
//Page 201,202, Figure 7-15
clear;clc;
V = 15 ;
mR = 30*10^3 ;
R = 10*10^3 ;
Ei = -10 ;
Vref = V / 3 ;
Voa = -Ei-Vref ;
Vob = Ei / 2 ;
printf ( "\n\n Values of Voa and Vob are %.4f V , %.4f V" , Voa, Vob)
|