We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example from the journal club:
from ase.build import bulk from pyiron_atomistics import Project, ase_to_pyiron import structuretoolkit as stk from tqdm import tqdm structure = bulk('Cu',cubic=True).repeat(3) target_c = 0.75 mole_fractions = {'Cu': target_c, 'Ag': 1-target_c} pr = Project(".") lmp = pr.create.job.Lammps(job_name="lmp", delete_existing_job=True) lmp.potential = '2006--Williams-P-L--Cu-Ag--LAMMPS--ipr1' lmp.interactive_open() lmp.calc_static() for _ in tqdm(range(10)): lmp.structure = ase_to_pyiron(stk.build.sqs_structures( structure=structure, mole_fractions=mole_fractions, )[0]) lmp.run() lmp.interactive_close() lmp.output.energy_tot
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example from the journal club:
The text was updated successfully, but these errors were encountered: