-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into archive_modified
- Loading branch information
Showing
19 changed files
with
265 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
#!/bin/bash | ||
set -e | ||
dftb+ > output | ||
dp_dos band.out dos_total.dat >> output | ||
dp_dos -w dos_ti.1.out dos_ti.s.dat >> output | ||
dp_dos -w dos_ti.2.out dos_ti.p.dat >> output | ||
dp_dos -w dos_ti.3.out dos_ti.d.dat >> output | ||
dp_dos -w dos_o.1.out dos_o.s.dat >> output | ||
dp_dos -w dos_o.2.out dos_o.p.dat >> output | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
set -e | ||
cp ../1_density/charges.bin . | ||
dftb+ > output | ||
dp_bands band.out band >> output | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,9 +26,6 @@ Hamiltonian = DFTB { | |
O = "p" | ||
H = "s" | ||
} | ||
Filling = Fermi { | ||
Temperature [Kelvin] = 0.0 | ||
} | ||
} | ||
|
||
Options {} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,9 +25,6 @@ Hamiltonian = DFTB { | |
O = "p" | ||
H = "s" | ||
} | ||
Filling = Fermi { | ||
Temperature [Kelvin] = 0.0 | ||
} | ||
} | ||
|
||
Options { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
set -e | ||
dftb+ > output | ||
waveplot >> output |
15 changes: 7 additions & 8 deletions
15
...cipes/waveplot/firststeps/waveplot_in.hsd → ...s/recipes/basics/waveplot/waveplot_in.hsd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,29 @@ | ||
# General options | ||
|
||
Options = { | ||
Options { | ||
TotalChargeDensity = Yes # Total density be plotted? | ||
TotalChargeDifference = Yes # Total density difference plotted? | ||
ChargeDensity = Yes # Charge density for each state? | ||
RealComponent = Yes # Plot real component of the wavefunction | ||
PlottedSpins = { 1 -1 } | ||
PlottedLevels = { 4 } # Levels to plot | ||
PlottedSpins = 1 -1 | ||
PlottedLevels = 4 # Levels to plot | ||
PlottedRegion = OptimalCuboid {} # Region to plot | ||
|
||
NrOfPoints = { 50 50 50 } # Number of grid points in each direction | ||
NrOfPoints = 50 50 50 # Number of grid points in each direction | ||
NrOfCachedGrids = -1 # Nr of cached grids (speeds up things) | ||
Verbose = Yes # Wanna see a lot of messages? | ||
} | ||
|
||
DetailedXML = "detailed.xml" # File containing the detailed xml output | ||
DetailedXml = "detailed.xml" # File containing the detailed xml output | ||
# of DFTB+ | ||
EigenvecBin = "eigenvec.bin" # File cointaining the binary eigenvecs | ||
|
||
|
||
# Definition of the basis | ||
Basis = { | ||
Basis { | ||
Resolution = 0.01 | ||
# Including mio-0-1.hsd. (If you use a set, which depends on other sets, | ||
# Including mio-1-1.hsd. (If you use a set, which depends on other sets, | ||
# the wfc.*.hsd files for each required set must be included in a similar | ||
# way.) | ||
<<+ "../../slakos/wfc/wfc.mio-1-1.hsd" | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.