from pyiron_atomistics import Project
pr = Project('FeC')
basis = pr.create_structure('Fe', 'bcc', 2.78)
basis[1] = 'C'
job = pr.create_job(pr.job_type.Lammps, 'lammpsFeC')
job.structure = basis
job.potential = '2008--Hepburn-D-J--Fe-C--LAMMPS--ipr1'
job.run()
The job lammpsFeC was saved and received the ID: 3
job.output.energy_tot
array([-7.47519366])
job.output.energy_pot
array([-7.47519366])
job.output.positions
array([[[0. , 0. , 0. ], [1.39, 1.39, 1.39]]])
job.output.cells
array([[[2.78000000e+00, 1.15608312e-32, 1.15608312e-32], [0.00000000e+00, 2.78000000e+00, 1.15608312e-32], [0.00000000e+00, 0.00000000e+00, 2.78000000e+00]]])
job.output.pressures
array([[[ 3.53781395e+01, -1.09310765e-15, -1.09310765e-15], [-1.09310765e-15, 3.53781395e+01, -1.35829945e-15], [-1.09310765e-15, -1.35829945e-15, 3.53781395e+01]]])
job.output.temperature
array([0])
job.output.forces
array([[[-2.22044605e-16, -9.02056208e-17, 2.08166817e-17], [ 0.00000000e+00, 0.00000000e+00, -1.11022302e-16]]])
job.output.steps
array([0])
job.output.time
array([], dtype=float64)
job.output.volume
array([21.484952])
job.output.unwrapped_positions
array([[[0. , 0. , 0. ], [1.39, 1.39, 1.39]]])