Attachment 'Si-diamond.py'

Download

   1 #!/usr/bin/env python
   2 
   3 from Dacapo import Dacapo
   4 from ASE import Atom, ListOfAtoms
   5 
   6 bulk = ListOfAtoms([Atom('Si', (0,    0,     0)),
   7                     Atom('Si', (0.25, 0.25, 0.25))])
   8 
   9 #Use experimental lattice constant
  10 a0 = 5.43
  11 b = a0/2.
  12 bulk.SetUnitCell([(0, b, b),
  13                   (b, 0, b),
  14                   (b, b, 0)])
  15 
  16 calc = Dacapo(kpts=(8,8,8),           # set the k-points Monkhorst-Pack
  17               planewavecutoff=340,    # planewavecutoff in eV
  18               densitycutoff=500,      # density cutoff in eV
  19               nbands=12,              # set the number of electronic bands
  20               usesymm=True,           # use symmetry to reduce the k-point set
  21               out='Si-diamond.nc',    # define the out netcdf file
  22               txtout='Si-diamond.txt')# define the out ASCII file
  23 
  24 
  25 calc.SetElectronicTemperature(0.1)
  26 calc.StayAliveOff()
  27 
  28 
  29 bulk.SetCalculator(calc)
  30 
  31 energy = calc.GetPotentialEnergy()

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2006-02-03 13:40:31, 0.7 KB) [[attachment:Al-fcc.py]]
  • [get | view] (2006-02-03 13:41:10, 78.7 KB) [[attachment:Al_dos.jpg]]
  • [get | view] (2006-02-03 14:04:32, 27.8 KB) [[attachment:CO_dos.jpg]]
  • [get | view] (2006-02-03 13:28:17, 85.3 KB) [[attachment:CO_eigenstates.jpg]]
  • [get | view] (2006-02-03 13:24:30, 4.1 KB) [[attachment:CO_moscheme.gif]]
  • [get | view] (2006-02-03 13:27:59, 1.3 KB) [[attachment:CO_wavefunction.py]]
  • [get | view] (2006-02-03 13:33:40, 0.5 KB) [[attachment:Fe-anti.py]]
  • [get | view] (2006-02-03 13:33:18, 0.5 KB) [[attachment:Fe-ferro_compl.py]]
  • [get | view] (2006-02-03 13:33:58, 0.5 KB) [[attachment:Fe-non.py]]
  • [get | view] (2006-02-03 13:39:48, 28.7 KB) [[attachment:Fe_anti_viz.jpg]]
  • [get | view] (2006-02-03 13:28:48, 1.9 KB) [[attachment:Fe_atom_magn.gif]]
  • [get | view] (2006-02-03 13:34:47, 91.0 KB) [[attachment:Fe_dos_anti.jpg]]
  • [get | view] (2006-02-03 13:34:30, 100.7 KB) [[attachment:Fe_dos_ferro.jpg]]
  • [get | view] (2006-02-03 13:35:29, 85.6 KB) [[attachment:Fe_dos_non.jpg]]
  • [get | view] (2006-02-03 13:43:25, 0.9 KB) [[attachment:Si-diamond.py]]
  • [get | view] (2006-02-03 14:04:11, 67.5 KB) [[attachment:Si_dos.jpg]]
  • [get | view] (2006-02-03 13:38:47, 1.1 KB) [[attachment:dos.py]]
  • [get | view] (2006-02-03 13:39:11, 0.6 KB) [[attachment:viz_Fe_anti.py]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.