blob: 9638c817b78bd412eeaef7769d3fb6dc0fae990c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Exa 8.1
clc;
clear;
// Given data
// Monostable multivibrator
R=100*10^3; // Ω
T=100*10^-3; // Time delay (sec)
// Solution
printf(' Using Eqn.(8.2) on page no.313, we get,');
//T= 1.1*R*C;
C=T/(1.11*R);
printf(' C = %.1f μF.\n From the graph of Fig.8.6 on page no. 314, the value of C is found to be 0.9 μF also.\n',C*10^6);
|