summaryrefslogtreecommitdiff
path: root/569/CH4/EX4.5/4_5.sci
blob: ec3685f0d869b032c26131eb427be12da637d422 (plain)
1
2
3
4
5
6
7
8
// Calculate the value of resistance after 15s
clc;
R0=29.44;
Rs=100;
t=15;
tc=5.5;
R_15=Rs+R0*[1-exp(-t/tc)];
disp(R_15,'value of resistance after 15s(ohm)')