— DEV — I–V characteristics of n-doped GaN single layer

Introduction

This tutorial shows the accuracy of drifft-diffusion model implemented in nextnano++ on a simple example: a single layer of an n-doped GaN. We compare the I–V characteristics obtained by nextnano++ with analytical solutions.

IV characteristics of an n-doped GaN single layer

The conductivity σ and the resistivity ρ of an n-type doped GaN sample can be calculated analytically, following formulas:

σ=qμnn,ρ=d/σ,

where q is electron charge, n is concentration of electron carriers, μn is mobility of electrons, and d is thickness of the material.

This is a good check for the results obtained with nextnano++ simulations. The thickness of the GaN layer is d=100nm.

The structure we are dealing with consists of bulk GaN that is sandwiched between two contacts. The whole structure has the following dimensions:

material

width (nm)

doping

contact

10

n-GaN

100

1×1018cm3

contact

10

As you see, the GaN is n-type doped with a donor concentration of ND=1×1018cm3. The energy level is chosen to be 0.01507eV below the conduction band edge.

70impurities{
71    donor{ name = "Si_donor" degeneracy = 2 energy = 0.01507 }
72}

This leads to the electron density of 5.2846×1017cm3. This is also equivalent to the concentration of the ionized donors. The result obtained by another commercial software is 5.355×1017cm3.

61contacts{
62    ohmic{ name = "left_contact" bias = 0.0 }
63    ohmic{
64        name = "right_contact"
65        !WHEN $biassweep bias = [ $biasstart, $biasend ]
66        !WHEN $biassweep steps = $biassteps
67        !WHEN $nosweep   bias = $biasstart
68    }
69}

If $biassweep = 1, sweeping bias takes place. Otherwise, if $biassweep = 0 and $nosweep (= 1 - $biassweep) = 1, sweeping bias is not applied. Since the bias is swept from 0.00V to 0.10V, $biasstart is set to 0.0 and $biasend is set to 0.1. In addition, $biassteps is equal to 10.

We take the GaN mobility to be constant: μn=100cm2/Vs. The mobility model that is applied is called constant and described as below.

116currents{
117    mobility_model = constant
118    recombination_model{
119        SRH = no
120        Auger = no
121        radiative = no
122    }
123    output_currents{ }
124}

We sweep the voltage at the right contact and calculate the current density for 0.00V, 0.01V, 0.02V, …, 0.10V (10 steps).

Results

1D

The current-voltage (IV) characteristic can be found in the following file: IV_characteristics.dat. Figure 2.4.55 shows the IV curve obtained by nextnano++.

../../../_images/1D_GaN_n_doped_IV.svg

Figure 2.4.55 IV curve of an n-doped GaN single layer.

The figure shows that the GaN layer is an ohmic resistor. From Figure 2.4.55, you can obtain a resistivity of the n-GaN layer of 1.1819×106Ωcm2. Another commercial software results in 1.43×106Ωcm2.

A good check is the analytic formula given above. From this, you can obtain:

σn=eμnn=1.6022×1019As×100cm2/Vs×5.2846×1017cm3=8.4670A/Vcm
ρ=d/σ=100nm/(8.46700A/Vcm)=1.1811×106Ωcm2

Another analytical result with the other commercial software is 1.168×106Ωcm2.

Thus, you can see that the nextnano++ result agrees better with the analytical result than the result by the other commercial software.

2D

Now, we try the same structure in a 2D nextnano++ simulation to check if the 2D result agrees with the 1D one. The input file IV_GaN_n_doped_2D_nnp.in is used for this section. The width of the sample along the y direction is 200nm. The x direction is the same as in 1D.

Note that the unit for the current in a 2D simulation is [A/cm]. Dividing this two-dimensional current value by the width of the device (in our case 200nm), we obtain the current density in units of [A/cm2] which is the usual unit of a 1D simulation. As our simple 2D example structure is basically equivalent to a 1D structure, we can easily compare our 2D results with the 1D results to check for consistency.

voltage

current (A/cm) (nextnano++ 2D)

current density (A/cm2) (nextnano++ 2D*)

current density (A/cm2) (nextnano++ 1D)

0

0

0

0

0.02

0.33845

16922.4

16922.4

0.04

0.67689

33844.7

33844.7

0.06

1.0153

50767.0

50767.0

0.08

1.3538

67689.2

67689.2

0.10

1.6922

84611.2

84611.3

Here, the current density of the 2D simulation is obtained by dividing the current [A/cm] by the width 200nm.

From the IV characteristics obtained from the 2D simulation, you can obtain a resistivity of the n-GaN layer of 1.1819×106Ωcm2 which agrees very well with the 1D result (1D: 1.1819×106Ωcm2).

3D

Of course, it is also possible to simulate this structure in 3D. In this case, the unit of the current is [A] and have to be divided by the area of the device perpendicular to the current flow direction to obtain the units of [A/cm2].


Last update: 17/07/2024