graphene/2D-Conductivity/j_to_ev.m

6 lines
96 B
Matlab

function eV = j_to_ev(j)
%J_TO_EV Transform Joules into electron-volts
eV = j / 1.602e-19;
end