Thermal Transport from NEMD

Introduction

In this tutorial, we use the NEMD method to study heat transport in graphene at 300 K and zero pressure. Here we consider the ballistic regime. The diffusive regime can be found in the HNEMD example. The spectral decomposition method as described in [Fan 2019] is used here.

Importing Relevant Functions

The inputs/outputs for GPUMD are processed using the Atomic Simulation Environment (ASE) and the gpyumd package.

[55]:
from pylab import *
from ase.build import graphene_nanoribbon
from ase.io import write
from gpyumd.atoms import GpumdAtoms
from gpyumd.load import load_shc, load_compute

Preparing the Inputs

We consider a graphene sheet of size of about 25 nm x 43 nm (40400 atoms). The transport is in the \(y\) direction. We divide the length in the \(y\) direction into 9 groups. Group 0 (a small one) will be fixed. Group 1 (about 9 nm long) will act as a heat source and group 8 (about 9 nm long) will act as a sink. The remaining middle part is evenly divided into a few groups (group 2 to group 7). We use a Tersoff potential [Tersoff 1989] parameterized by Lindsay et al. [Lindsay 2010].

Generate the model.xyz file:

[56]:
gnr = GpumdAtoms(graphene_nanoribbon(100, 101, type='armchair', sheet=True, vacuum=3.35/2))
gnr.euler_rotate(theta=90)
lx, lz, ly = gnr.cell.lengths()
gnr.cell = gnr.cell.new((lx, ly, lz))
gnr.center()
gnr.pbc = [True, True, False]
gnr
[56]:
GpumdAtoms(symbols='C40400', pbc=[True, True, False], cell=[245.95121467478057, 430.26, 3.35])

Add Groups for NEMD

[57]:
split = np.array([ly/100] + [ly/5] + [ly/10]*6)-0.4
split = [0] + list(np.cumsum(split)) + [ly]
print("y-direction boundaries:", [round(x,2) for x in split])
y-direction boundaries: [0, 3.9, 89.55, 132.18, 174.81, 217.43, 260.06, 302.68, 345.31, 430.26]
[58]:
group_method, ncounts = gnr.group_by_position(split, direction='y')
ncounts
[58]:
array([ 400, 8000, 4000, 4000, 4000, 4000, 4000, 4000, 8000])
[59]:
gnr.sort_atoms(sort_key='group', group_method=group_method, order=list(range(len(ncounts))))
[60]:
gnr.arrays["group"] = gnr.group_methods[0].groups
[61]:
write("model.xyz", gnr)

The `run.in file:

The run.in input file is given below:

potential    ../../../../potentials/tersoff/Graphene_Lindsay_2010_modified.txt
velocity     300

ensemble     nvt_ber 300 300 100
fix          0
time_step    1
dump_thermo  1000
run          100000

ensemble     heat_lan 300 100 10 1 8
fix          0
compute      0 10 100 temperature
compute_shc  2 250 1 1000 400.0 group 0 4
run          1000000

The first line uses the potential keyword to define the potential to be used, which is specified in the file Graphene_Lindsay_2010_modified.txt.

The second line uses the velocity keyword and sets the velocities to be initialized with a temperature of 300 K.

There are two runs. The first run serves as the equilibration stage.

  • Here, the NVT ensemble (the Berendsen thermostat) is used. The target temperature is 300 K and the coupling constant is 100 time steps for the thermostat.

  • The time_step for integration is 1 fs.

  • Atoms in group 0 will be fixed.

  • The thermodynamic quantities will be output every 1000 steps.

  • There are \(10^5\) steps (100 ps) for this run.

The second run is for production.

  • Here, two local Langevin thermostats (ensemble) are applied to generate a nonequilibrium heat current. The time parameter in the Langevin thermostats is 0.1 ps (100 time steps). The target temperature of the heat source is \(300+10=310\) K and the target temperature of the heat sink is \(300-10=290\) K. Atoms in group 1 are in the heat source region and atoms in group 8 are in the heat sink region.

  • Atoms in group 0 will be fixed.

  • The compute is used to compute the group temperatures and energy transfer rate. Here, grouping method 0 is used, and the relevant data are sampled every 10 time steps and averaged for every 100 data points before written out.

  • The line with the compute_shc keyword is used to compute the spectral heat current (SHC). The SHC will be calculated for group 4 in grouping method 0. The relevant data will be sampled every 2 steps and the maximum correlation time is \(250 \times 2 \times 1~{\rm fs} = 500~{\rm fs}\). The transport directions is 1 (\(y\) direction). The number of frequency points is 1000 and the maximum angular frequncy is 400 THz.

  • There are \(10^6\) steps (1 ns) in the production run. This is just an example. To get more accurate results, we suggest you use \(10^7\) steps (10 ns).

Results and Discussion

Computation Time

  • Using a GeForce RTX 2080 Ti GPU, the NEMD simulation takes about 15 minutes.

Figure Properties

[62]:
aw = 2
fs = 16
font = {'size'   : fs}
matplotlib.rc('font', **font)
matplotlib.rc('axes' , linewidth=aw)

def set_fig_properties(ax_list):
    tl = 8
    tw = 2
    tlm = 4

    for ax in ax_list:
        ax.tick_params(which='major', length=tl, width=tw)
        ax.tick_params(which='minor', length=tlm, width=tw)
        ax.tick_params(axis='both', direction='in', right=True, top=True)

Plot NEMD Results

The compute.out output file is loaded and processed to create the following figure.

[63]:
compute = load_compute(['temperature'])
compute.keys()
[63]:
dict_keys(['Ein', 'Eout', 'm', 'temperature'])
[64]:
T = compute['temperature']
Ein = compute['Ein']
Eout = compute['Eout']
ndata = T.shape[0]
temp_ave = mean(T[int(ndata/2)+1:, 1:], axis=0)

dt = 0.001  # ps
Ns = 1000  # Sample interval
t = dt*np.arange(1,ndata+1) * Ns/1000  # ns
[65]:
figure(figsize=(10,5))
subplot(1,2,1)
set_fig_properties([gca()])
group_idx = range(1,9)
plot(group_idx, temp_ave,linewidth=3,marker='o',markersize=10)
xlim([1, 8])
gca().set_xticks(group_idx)
ylim([290, 310])
gca().set_yticks(range(290,311,5))
xlabel('group index')
ylabel('T (K)')
title('(a)')

subplot(1,2,2)
set_fig_properties([gca()])
plot(t, Ein/1000, 'C3', linewidth=3)
plot(t, Eout/1000, 'C0', linewidth=3, linestyle='--' )
xlim([0, 1])
gca().set_xticks(linspace(0,1,6))
ylim([-10, 10])
gca().set_yticks(range(-10,11,5))
xlabel('t (ns)')
ylabel('Heat (keV)')
title('(b)')
tight_layout()
show()
../_images/tutorials_thermal_transport_nemd_18_0.png

(a) Temperature profile in the NEMD simulation. (b) Energies accumulated in the thermostats.

  • The figure above shows the temperature profile and the energies accumulated in the thermostats. The energy of the thermostat coupling to the heat source region is decreasing, because energy is transferred from the thermostat to the atoms in the source region. The energy of the thermostat coupling to the heat sink region is increasing, because energy is transferred from the atoms in the sink region to the thermostat. The absolute values of the slopes of the lines in (b) should be the same; otherwise it means energy is not conserved. The absolute slope is the energy transfer rate \(Q=dE/dt\).

  • The thermal conductance in this system can be calculated as

    \[G = \frac{Q/S}{\Delta T}\]

    where \(S\) is the cross-sectional area and \(\Delta T\) is the temperature difference, which is 19 K here (slightly smaller than the target value of 20 K). The calculated thermal conductance is about 10 GW m-2 K-1. This is the classical value.

[66]:
deltaT = temp_ave[0] - temp_ave[-1]  # [K]
deltaT
[66]:
19.04638256513016
[67]:
Q1 = (Ein[int(ndata/2)] - Ein[-1])/(ndata/2)/dt/Ns
Q2 = (Eout[-1] - Eout[int(ndata/2)])/(ndata/2)/dt/Ns
Q = mean([Q1, Q1])  # [eV/ps]
Q
[67]:
9.635182
[68]:
l = gnr.cell.lengths()
A = l[0]*l[2]/100  # [nm2]
G = 160*Q/deltaT/A  # [GW/m2/K]
G
[68]:
9.82366678786541

Plot Spectral Heat Current Results

The shc.out output file is loaded and processed to create the following figure.

[69]:
shc = load_shc(250, 1000)['run0']
shc.keys()
[69]:
dict_keys(['t', 'Ki', 'Ko', 'nu', 'jwi', 'jwo'])
[70]:
Ly = split[5]-split[4]
Lx, Lz = l[0], l[2]
V = Lx*Ly*Lz
Gc = 1.6e4*(shc['jwi']+shc['jwo'])/V/deltaT
[71]:
figure(figsize=(10,5))
subplot(1,2,1)
set_fig_properties([gca()])
plot(shc['t'], (shc['Ki']+shc['Ko'])/Ly, linewidth=2)
xlim([-0.5, 0.5])
gca().set_xticks([-0.5, 0, 0.5])
ylim([-4, 10])
gca().set_yticks(range(-4,11,2))
ylabel('K (eV/ps)')
xlabel('Correlation time (ps)')
title('(a)')

subplot(1,2,2)
set_fig_properties([gca()])
plot(shc['nu'], Gc, linewidth=2)
xlim([0, 50])
gca().set_xticks(range(0,51,10))
ylim([0, 0.35])
gca().set_yticks(linspace(0,0.35,8))
ylabel(r'$G$($\omega$) (GW/m$^2$/K/THz)')
xlabel(r'$\omega$/2$\pi$ (THz)')
title('(b)')
tight_layout()
show()
../_images/tutorials_thermal_transport_nemd_27_0.png

(a) Virial-velocity correlation function. (b) Spectral thermal conductance.

The figure above shows the virial-velocity correlation function \(K(t)\) and the spectral thermal conductance \(G(\omega)\). See Theoretical formulations for the definitions of these quantities. Using the spectral thermal conductance, one can perform quantum correction, see [Li 2019].

[72]:
np.save('../diffusive/Gc.npy', Gc)

References