blob: ce5d18ebfe200219ea39f70f175a12fa86846870 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Chapter4
// Page.No-141, Figure.No-4.28(b)
// Example_4_12
// Output ripple voltage
// Given
clear;clc;
delta_Vio=15.85*10^-6; // Change in input offset voltage
delta_V=1; // Unit change in supply voltage
V=10*10^-3; // Change in supply voltage
R1=1*10^3;Rf=100*10^3;
delta_Voo=(1+Rf/R1)*(delta_Vio/delta_V)*V; // Change in output offset voltage
printf("\n Change in output offset voltage is = %.6f V \n",delta_Voo) // Result
|