summaryrefslogtreecommitdiff
path: root/1964/CH14/EX14.3/ex14_3.sce
blob: 8e30f1fc21fa19ab253250f17fba13e15dc8b032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Chapter-14, Example 14.3, Page 458
//=============================================================================
clc
clear
//INPUT DATA
A=50;//gain of inverting amplifier
Vid=20*10^-3;//voltage in V
SR=0.5;//slewrate in V/us----->SR=(2*%pi*f*Vm)/(10^6)
//CALCULATIONS
Vm=A*(Vid);//maximum output voltage in V
fmax=(SR*10^6)/(2*%pi*Vm);//frequency in hz
mprintf("thus maximum frequency of the input for which undistorted output is obtained is %g hz",fmax);
//=================================END OF PROGRAM=======================================================================================================