summaryrefslogtreecommitdiff
path: root/3682/CH3/EX3.3/Ex3_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3682/CH3/EX3.3/Ex3_3.sce')
-rw-r--r--3682/CH3/EX3.3/Ex3_3.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/3682/CH3/EX3.3/Ex3_3.sce b/3682/CH3/EX3.3/Ex3_3.sce
new file mode 100644
index 000000000..068b1a030
--- /dev/null
+++ b/3682/CH3/EX3.3/Ex3_3.sce
@@ -0,0 +1,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.');