This file contains hidden or 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
#!/usr/bin/env python | |
import numpy as np | |
def rotate_vector(v, R): | |
"""Rotates a vector v using a rotation matrix R.""" | |
return np.dot(R, v) | |
def energy_function(positions): | |
"""A toy energy function that depends on interatomic distances.""" |
This file contains hidden or 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
from PIL import Image | |
import pytesseract | |
from fpdf import FPDF | |
def extract_and_clean_text(image_path): | |
# Extract text from the image | |
image = Image.open(image_path) | |
raw_text = pytesseract.image_to_string(image) | |
This file contains hidden or 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
#!/usr/bin/env python3.11 | |
''' | |
# AIB_EM | |
# Asif Iqbal | |
''' | |
import os, sys | |
import pandas as pd | |
import numpy as np | |
from ase.io import read, write | |
import dpdata |
This file contains hidden or 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
#!/usr/bin/env python3 | |
''' | |
### | |
# ML error analysis | |
# AIB_EM for VASP.6.4.1 | |
### | |
''' | |
import os, sys |
This file contains hidden or 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
#!/bin/bash | |
#------------------------------------------------------------------------------------------ | |
# |||--> b means burger vector | |
# |||--> b = a*1/2[111] ;|b| = a*sqrt(3)/2 | |
# |||--> On the (110) plane the slip occur at <1-11> | |
# |||--> For gamma surface vary b form 0b to 1b | |
# Some bcc materials (e.g. α-Fe) can contain up to 48 slip systems. | |
# There are six slip planes of type {110}, each with two <111> directions (12 systems). | |
# There are 24 {123} and 12 {112} planes each with one <111> direction (36 systems, | |
# for a total of 48). While the {123} and {112} planes are not exactly identical in |
This file contains hidden or 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
#!/usr/bin/env python3 | |
import numpy as np | |
import os, sys, subprocess | |
from scipy import linalg as LA | |
import matplotlib.pyplot as plt | |
''' The complication that arises by parsing the data from the file is | |
the trailing empty lines and tabs that need to be deleted before it | |
can be read. In the case of a simple file format, there is no need for |
This file contains hidden or 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
#!/usr/bin/env python3.6 | |
#_____________________________________________________________________________ | |
''' | |
USAGE: python3 script to create directories for POSCAR files generated from | |
PHONOPY code. | |
Credit: Asif Iqbal Bhatti | |
DATED: 19-01-2020 | |
''' |
This file contains hidden or 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
#!/usr/bin/env python3 | |
''' | |
# | Elastic Properties | |
# | Code for calculating mechanical properties | |
# from Energy vs Strain relationship | |
# | |
# Equations can be found at Golesorkhtabar, R., Pavone, P., Spitaler, J., | |
# Puschnig, P. & Draxl, C. ElaStic: A tool for calculating second-order elastic | |
# constants from first principles. Comput. Phys. Commun. 184, 1861–1873 (2013). |
This file contains hidden or 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
#!/bin/bash | |
# | |
# USAGE: script to extract energy from each folder. This script output energy-vs-volume | |
# and energy-vs-strain output files. The units are converted from eV to Ha | |
# and A3 to Bohr3. | |
# | |
echo -e "************************************************************************* \e[92m" | |
echo "*************************************************************************" | |
echo -e "*************************************************************************\e[0m" |
This file contains hidden or 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
#!/usr/bin/env python3 | |
''' | |
#####--------------------------------------------------------- | |
#####--------------------------------------------------------- | |
# Credit : Asif Iqbal BHATTI | |
# CODE to: OBTAIN Elastic properties form OUTCAR files, | |
# compare POSCAR and CONTCAR volume deformation | |
# upon minimization, and extract energy from a number | |
# of directories. |
NewerOlder