summaryrefslogtreecommitdiff
path: root/3554/CH13/EX13.4/Ex13_4.sce
blob: 6c1a6e03ba5c0207b4fb20ffb0f686c523554898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Exa 13.4

clc;
clear all;

// Given data

R= 4;// Resistance of thermistor in k Ohms
R1=0.003;// Meter resistance in k Ohms
Rc=0.017; // in k Ohms
Vt=15;// in Volts

// Solution

// From fig. 13.2(b)- graph of Temp vs Resistance we find that,thermistor resistance at 25 degree Celsius is 4  K ohms and at 65.5556 degree Celsius it is 950 ohms.
R_25= 4;// in k Ohms
R_65=0.95; // in k Ohms

I1=Vt/(R_25+R1+Rc); // current at 25 degree Celsius(A)
I2=Vt/(R_65+R1+Rc); // current at 65.556 degree Celsius(A)

printf(' The current meter reading at 25 degree Celsius = %.2f mA and at 150 degree fahrenheit = %.1f mA \n', I1,I2);