Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

comment out orbitals2bands guidance pending bugfix #13

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/workshop/02_bands_dos.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ First you will look at the CASTEP input files (.cell and .param) used to produce

Next you will use the perl script dispersion.pl which can be used to take CASTEP output and plot band structure diagrams.

Then you will use orbitals2bands. A tool which provides more information about the orbitals that contribute to different bands in your band structure diagram.
<!-- Then you will use orbitals2bands. A tool which provides more information about the orbitals that contribute to different bands in your band structure diagram. -->

Finally you will look at the band structure of iron, to show how magnetic systems can be studied using CASTEP, you will also plot the density of states of iron using dos.pl.

Expand Down Expand Up @@ -72,13 +72,14 @@ $ dispersion.pl -np -xg -bs -symmetry hexagonal graphite.bands | xmgrace -
```
The `-xg` option tells dispersion.pl that you are using grace to plot the band structure, the `-bs` option tells the script that you want to plot using CASTEP output files, the `-symmetry hexagonal` option labels the high symmetry points on the bands structure plot.

When you view this band structure plot you will notice the bands are coloured from lowest to highest energy. Using information about the wavefunction CASTEP can improve this band structure plot, so bands are coloured due to the orbitals that contribute. The `orbitals2bands` tool can be used to alter the `Si.bands` file represent the orbitals that contribute to the bands. This tool can be run in the same directory that you ran CASTEP in.
<!-- When you view this band structure plot you will notice the bands are coloured from lowest to highest energy. Using information about the wavefunction CASTEP can improve this band structure plot, so bands are coloured due to the orbitals that contribute. The `orbitals2bands` tool can be used to alter the `Si.bands` file represent the orbitals that contribute to the bands. This tool can be run in the same directory that you ran CASTEP in.
The program `orbitals2bands` overwrites your `Si.bands` file, so it's best to copy it to another file to preserve it

```
$ cp graphite.bands graphite.bands.orig
$ orbitals2bands graphite
```
```
-->


## Example 2 - Silicon and Aluminium.
Expand Down
Loading