blob: c5dc1628c744241c81694f1b1179c92505f0657f (
plain)
1
2
3
4
5
6
7
8
9
|
//Example 15.8//
//from the figure
//p20,Cu-0.1Si ~23.610^*9 ohm m
prt=23.6*10^-9//ohm m //room temperature value of restivity
a=0.00393;//C^-1//temperature coefficient of restivity
t=100;//C //temperature
tn=20;//C//room temperature
p=prt*(1+a*(t-tn))
mprintf("p = %e ohm m",p)
|