forked from rytheranderson/cif2lammps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_run.py
executable file
·35 lines (30 loc) · 1.12 KB
/
test_run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from main_conversion import serial_conversion
from UFF4MOF_construction import UFF4MOF
from UFF_construction import UFF
from Dreiding_construction import Dreiding
from zeoliteFFs_construction import MZHB
from ZIFFF_construction import ZIFFF
if __name__ == '__main__':
optional_arguments = {'force_field':UFF4MOF,
'ff_string':'UFF4MOF',
'small_molecule_force_field':'TIP4P',
'charges':False,
'replication':'1x1x1',
'read_cifs_pymatgen':False,
'add_molecule':None}
#optional_arguments = {'force_field':UFF4MOF,
# 'ff_string':'UFF4MOF',
# 'small_molecule_force_field':'TIP4P',
# 'charges':False,
# 'replication':'1x1x1',
# 'read_cifs_pymatgen':False,
# 'add_molecule':('water','TIP3P_long',0)}
#optional_arguments = {'force_field':UFF4MOF,
# 'ff_string':'UFF4MOF',
# 'small_molecule_force_field':None,
# 'charges':False,
# 'replication':'1x1x1',
# 'read_cifs_pymatgen':False,
# 'add_molecule':None}
serial_conversion('unopt_cifs', **optional_arguments)
#serial_conversion('check_cifs', **optional_arguments)