summaryrefslogtreecommitdiff
path: root/1730/CH2/EX2.41/Exa2_41.sce
blob: e42fa370e70fc9fa99c5bd57a29ba57aed0b7e6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//Exa2.41
clc;
clear;
close;
// given data
t1=20;// in degree C
t2=36;// in degree C
alpha_20=0.0043;// in per degree C  (Temperature Coefficient)
InsulationResistance=480*10^6;// in ohm
copper_cond_res=0.7;// in ohm  (copper conductor resistance)
l=500*10^-3;// in kilo meter (length)
R1_desh=InsulationResistance * l;// in ohm

// From Formula log(R2_desh)= log(R1_desh-K*(t2-t1))
// K= 1/(t2-t1)*log(R1_desh/R2_desh)
// since when t2-t1=10 degree C and R1_desh/R2_desh= 2

K=1/10*log(2);

// (i) Insulation resistance at any temperature t2, R2_desh is given by
  logR2_desh= log(R1_desh)-(t2-t1)/10* log(2);
  R2_desh= %e^logR2_desh
  
  disp("(i) Insulation resistance at any temperature : "+string(R2_desh*10^-6)+" Mega ohm");
  
// (ii) 
    R_20= copper_cond_res/l;// in ohm
    R_36=R_20*[1+alpha_20*(t2-t1)];
    
    disp("Resistance at 36 degree C is : "+string(R_36)+" ohm")