summaryrefslogtreecommitdiff
path: root/1964/CH14/EX14.4
diff options
context:
space:
mode:
Diffstat (limited to '1964/CH14/EX14.4')
-rwxr-xr-x1964/CH14/EX14.4/ex14_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1964/CH14/EX14.4/ex14_4.sce b/1964/CH14/EX14.4/ex14_4.sce
new file mode 100755
index 000000000..b2eca1b50
--- /dev/null
+++ b/1964/CH14/EX14.4/ex14_4.sce
@@ -0,0 +1,14 @@
+//Chapter-14, Example 14.4, Page 458
+//=============================================================================
+clc
+clear
+//INPUT DATA
+A=10;//gain of inverting amplifier
+f=40*10^3;//frequency in hz
+SR=0.5;//slewrate in V/us----->SR=(2*%pi*f*Vm)/(10^6)
+//CALCULATIONS
+Vm=(SR*10^6)/(2*%pi*f);//maximum output voltage in V peak
+Vm=2*Vm;//maximum output voltage in V peak to peak
+Vid=Vm/A;//maximum peak-to-peak input voltage for undistorted output
+mprintf("Thus maximum peak-to-peak input voltage for undistorted output is %1.3f V peak-to-peak",Vid);
+//=================================END OF PROGRAM=======================================================================================================