summaryrefslogtreecommitdiff
path: root/3682/CH3/EX3.4/Ex3_4.sce
blob: 2a1e9947b1d0ffd2582b0fdd805311342ccce692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Exa 3.4

clc;
clear;

// Given data

// Fig. 3.13 shows output of an op-amp voltage follower
F =2; // frequency in MHz
Vipp= 8; // Input voltage (Peak to peak) in volts

// Solution

printf(' Since the frequency is given we can get time period as T = %.1f μsec. \n\n',1/F);

printf('  Since, the slew rate is defined as the maximum rate of change of the output, \n  so from Fig. 3.13, it can be seen that, maximum change in output is 6V in 0.25 μsec.');

dVo=6;
dT=0.25 ; // μsec
SR=dVo/dT;

printf('\n\n  Therefore, the slew rate of the op-amp = %d V/μsec. \n',SR);