diff options
Diffstat (limited to '3557/CH15/EX15.8/Ex15_8.sce')
-rw-r--r-- | 3557/CH15/EX15.8/Ex15_8.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3557/CH15/EX15.8/Ex15_8.sce b/3557/CH15/EX15.8/Ex15_8.sce new file mode 100644 index 000000000..c5dc1628c --- /dev/null +++ b/3557/CH15/EX15.8/Ex15_8.sce @@ -0,0 +1,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)
|