File:Copper-resistivity-loglog.svg
Summary
| Description |
English: Logarithmic plot of the electrical resistivity of pure copper. The resistivity of copper at room temperature is (grey lines). |
| Date | |
| Source | Own work |
| Author | Geek3 |
| SVG development | |
| Source code | Python code#! /usr/bin/env python3
# -*- coding:utf8 -*-
import matplotlib.pyplot as plt
import numpy as np
from math import *
plt.rcParams['font.sans-serif'] = 'DejaVu Sans'
plt.rc('mathtext', default='regular')
# data: https://doi.org/10.1063/1.555614 TABLE 2.
# T in K, rho in 1e-8 Ohm*m
T_rho = np.array([
[20, 0.000798], [25, 0.00249], [30,0.00628], [35, 0.0127], [40, 0.0219],
[45, 0.0338], [50, 0.0498], [55, 0.0707], [60, 0.0951], [70, 0.152],
[80, 0.213], [90, 0.279], [100, 0.346], [125, 0.520], [150, 0.697],
[175, 0.872], [200, 1.044], [225, 1.215], [250, 1.385], [273.15, 1.541],
[293, 1.676], [300, 1.723], [350, 2.061], [400, 2.400], [500, 3.088],
[600, 3.790], [700, 4.512], [800, 5.260], [900, 6.039], [1000, 6.856],
[1100, 7.715], [1200, 8.624], [1300, 9.590], [1357.6, 10.169]
])
fig = plt.figure(figsize=(520 / 90.0, 340 / 90.0), dpi=72)
plt.plot([0, 293, 293], [1.676e-8, 1.676e-8, 0], color='gray')
plt.plot(T_rho[:,0], 1e-8*T_rho[:,1], '-', mew=0.8, color='#b87333', lw=3)
plt.gca().set_xscale('log')
plt.gca().set_yscale('log')
plt.grid(True)
plt.xlim(1e1, 2e3)
plt.ylim(1e-12, 2e-7)
plt.xlabel('T [K]')
plt.ylabel(r'$\rho$ [$\Omega m$]')
plt.tight_layout()
plt.savefig('Copper-resistivity-loglog.svg')
|
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.