├── .gitignore ├── Genetic_algorithm └── polytype_GA.py ├── IsingHamitonian_GA.ipynb ├── Ising_model ├── coefficients.py └── interactionparameterssolve.py ├── LICENSE ├── README.md ├── Structure_analysis └── ewald_energy.py ├── Structure_collections ├── 10H.vasp ├── 12H.vesta ├── 14H.vesta ├── 16H.vasp ├── 18H.vesta ├── 20H.vesta ├── 8H.vesta ├── POSCAR_11H_3c8h ├── POSCAR_11H_3c8h.cif ├── POSCAR_11H_9c2h ├── POSCAR_11H_9c2h.cif ├── POSCAR_12R ├── POSCAR_18_cubic_2c7H ├── POSCAR_18_hexagonal_1h8c ├── POSCAR_2H ├── POSCAR_2H.cif ├── POSCAR_3C ├── POSCAR_3C.cif ├── POSCAR_4H ├── POSCAR_6H ├── POSCAR_9R ├── POSCAR_cubic_original └── POSCAR_cubic_original.cif └── Structure_generator ├── POSCAR ├── disp └── polytype.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/.gitignore -------------------------------------------------------------------------------- /Genetic_algorithm/polytype_GA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Genetic_algorithm/polytype_GA.py -------------------------------------------------------------------------------- /IsingHamitonian_GA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/IsingHamitonian_GA.ipynb -------------------------------------------------------------------------------- /Ising_model/coefficients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Ising_model/coefficients.py -------------------------------------------------------------------------------- /Ising_model/interactionparameterssolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Ising_model/interactionparameterssolve.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/README.md -------------------------------------------------------------------------------- /Structure_analysis/ewald_energy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_analysis/ewald_energy.py -------------------------------------------------------------------------------- /Structure_collections/10H.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/10H.vasp -------------------------------------------------------------------------------- /Structure_collections/12H.vesta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/12H.vesta -------------------------------------------------------------------------------- /Structure_collections/14H.vesta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/14H.vesta -------------------------------------------------------------------------------- /Structure_collections/16H.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/16H.vasp -------------------------------------------------------------------------------- /Structure_collections/18H.vesta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/18H.vesta -------------------------------------------------------------------------------- /Structure_collections/20H.vesta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/20H.vesta -------------------------------------------------------------------------------- /Structure_collections/8H.vesta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/8H.vesta -------------------------------------------------------------------------------- /Structure_collections/POSCAR_11H_3c8h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_11H_3c8h -------------------------------------------------------------------------------- /Structure_collections/POSCAR_11H_3c8h.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_11H_3c8h.cif -------------------------------------------------------------------------------- /Structure_collections/POSCAR_11H_9c2h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_11H_9c2h -------------------------------------------------------------------------------- /Structure_collections/POSCAR_11H_9c2h.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_11H_9c2h.cif -------------------------------------------------------------------------------- /Structure_collections/POSCAR_12R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_12R -------------------------------------------------------------------------------- /Structure_collections/POSCAR_18_cubic_2c7H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_18_cubic_2c7H -------------------------------------------------------------------------------- /Structure_collections/POSCAR_18_hexagonal_1h8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_18_hexagonal_1h8c -------------------------------------------------------------------------------- /Structure_collections/POSCAR_2H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_2H -------------------------------------------------------------------------------- /Structure_collections/POSCAR_2H.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_2H.cif -------------------------------------------------------------------------------- /Structure_collections/POSCAR_3C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_3C -------------------------------------------------------------------------------- /Structure_collections/POSCAR_3C.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_3C.cif -------------------------------------------------------------------------------- /Structure_collections/POSCAR_4H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_4H -------------------------------------------------------------------------------- /Structure_collections/POSCAR_6H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_6H -------------------------------------------------------------------------------- /Structure_collections/POSCAR_9R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_9R -------------------------------------------------------------------------------- /Structure_collections/POSCAR_cubic_original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_cubic_original -------------------------------------------------------------------------------- /Structure_collections/POSCAR_cubic_original.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_collections/POSCAR_cubic_original.cif -------------------------------------------------------------------------------- /Structure_generator/POSCAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_generator/POSCAR -------------------------------------------------------------------------------- /Structure_generator/disp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_generator/disp -------------------------------------------------------------------------------- /Structure_generator/polytype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WMD-group/polytype/HEAD/Structure_generator/polytype.py --------------------------------------------------------------------------------