blob: 068b1a030974ea3d346b217305b157bda6907c96 (
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.3
clc;
clear;
// Given data
// A non-inverting amplifier
G=100;// Gain of amplifier at 25 degree celsius
T1 = 25; // degree celsius
T2 = 50; // degree celsius
VoT=0.15; // Offset voltage drift in mV/degreecelsius
// Solution
printf(' Input offset voltage due to temperature rise = ');
Vos=VoT*(T2-T1);
printf(' %.2f mV. \n ',Vos);
printf(' Due to this input change, the output voltage will change by ');
Vo=Vos*G;
printf( '%d mV. \n ',Vo);
printf(' This could represent a very major shift in the output voltage.');
|