Skip to content

Commit 637c4f8

Browse files
add crystal-structure-npt to kimspec.edn
1 parent cb5fb13 commit 637c4f8

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

job.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
python run.py -m EAM_Dynamo_ErcolessiAdams_1994_Al__MO_123629422045_005 -p A_cF4_225_a -s Al
1+
python run.py -m Sim_LAMMPS_ADP_StarikovGordeevLysogorskiy_2020_SiAuAl__SM_113843830602_000 -p A_cF4_225_a -s Au
22
mv output output_A_cF4_225_a_Al_EAM_Dynamo_ErcolessiAdams_1994_Al__MO_123629422045_005
33
python run.py -m Sim_LAMMPS_ReaxFF_BrugnoliMiyataniAkaji_SiCeNaClHO_2023__SM_282799919035_000 -p AB2_cF12_225_a_c -s Ce O
44
mv output output_AB2_cF12_225_a_c_Ce_O_Sim_LAMMPS_ReaxFF_BrugnoliMiyataniAkaji_SiCeNaClHO_2023__SM_282799919035_000

kimspec.edn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"tag:staff@noreply.openkim.org,2026-02-09:property/heat-capacity-crystal-npt"
88
"tag:staff@noreply.openkim.org,2026-02-09:property/thermal-expansion-coefficient-tensor-npt"
99
"tag:staff@noreply.openkim.org,2026-02-09:property/volume-thermal-expansion-coefficient-crystal-npt"
10+
"tag:staff@noreply.openkim.org,2023-02-21:property/crystal-structure-npt"
1011
]
1112
"publication-year" "2026"
1213
"simulator-name" "LAMMPS"

run.py

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
1-
import argparse
2-
import subprocess
3-
from kim_tools.test_driver.core import query_crystal_structures
41
from test_driver.test_driver import TestDriver
2+
from ase.build import bulk
53

4+
atoms = bulk("Au")
5+
td=TestDriver("Sim_LAMMPS_ADP_StarikovGordeevLysogorskiy_2020_SiAuAl__SM_113843830602_000")
6+
print(td(
7+
atoms,
8+
temperature_K= 293.15,
9+
repeat= (3, 3, 3),
10+
lammps_command= "lmp",
11+
max_workers= 3,
12+
))
613

14+
15+
16+
17+
"""
718
if __name__ == '__main__':
819
# Argument parsing
920
parser = argparse.ArgumentParser(description='Pass arguments to the KIM test driver')
@@ -34,3 +45,4 @@
3445
except Exception as e:
3546
print(f"Got exception {repr(e)}")
3647
test_driver.write_property_instances_to_file()
48+
"""

0 commit comments

Comments
 (0)