Dell AMD EPYC 7662 / NVIDIA Tesla A100

Softwares Instalados

Categoria: Química/Física

Wannier Tools 2.5.1
Versão 2.5.1
Descrição WannierTools, a software for investigation of novel topological materials. This code works in the tight-binding framework, which can be generated by another software package Wannier90. It can help to classify the topological phase of a given materials by calculating the Wilson loop, and can get the surface state spectrum which is detected by angle resolved photoemission (ARPES) and in scanning tunneling microscopy (STM) experiments . It also identifies positions of Weyl/Dirac points and nodal line structures, calculates the Berry phase around a closed momentum loop and Berry curvature in a part of the Brillouin zone(BZ). Besides, WannierTools also can calculate ordinary magnetoresistance for non-magnetic metal and semimetal using Boltzmann transport theory, calculate Landau level spectrum with given magnetic field direction and strength, and get unfolded energy spectrum from a supercell calculation.
Documentação Documentação
Licença PUBLIC
Localização http://www.wanniertools.com/

Como usar

- Módulos de ativação para uso:

module load wannier_tools/2.5.1-intel-2021.3.0 Compilada com Intel-OneAPI-2021.3.0

- Executável disponível na pasta:

/opt/pub/wannier_tools/2.5.1/intel/2021.3.0/bin

wt.x

Exemplo de script de submissão de um job:

#!/bin/bash

### Nome da fila de execução ###
 #PBS -q par128

### Nome do job ###
 #PBS -N teste

### Nome do arquivo de saida ###
 #PBS -o saida

### Nome do arquivo de erros ###
 #PBS -e erros

### Recursos necessarios para execução:     ###
###   nodes=   Numero de nos computacionais ###
###   ppn=     Numero de processos por no   ###
### Total de processos = nodes X ppn        ###
 #PBS -l nodes=1:ppn=128

cd $PBS_O_WORKDIR

echo "-----------------------------------------"

echo "Inicio do job:" `date`

### Configura ambiente para execução do Wannier Tools###

module load wannier_tools/2.5.1-intel-2021.3.0

### A opção -np indica o numero total de processos.  ###

mpirun -np 128 wt.x

echo "Final do job:" `date`

echo "-----------------------------------------"