mdkits 0.1.5__py3-none-any.whl → 0.1.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mdkits might be problematic. Click here for more details.
- mdkits/cli/adsorbate.py +32 -78
- mdkits/cli/build_cli.py +2 -0
- mdkits/cli/build_surface.py +4 -3
- mdkits/cli/convert.py +3 -4
- mdkits/util/arg_type.py +40 -6
- mdkits/util/cp2k_input_parsing.py +19 -18
- mdkits/util/encapsulated_ase.py +12 -0
- mdkits/util/os_operation.py +5 -0
- mdkits/util/out_err.py +8 -0
- {mdkits-0.1.5.dist-info → mdkits-0.1.7.dist-info}/METADATA +2 -1
- {mdkits-0.1.5.dist-info → mdkits-0.1.7.dist-info}/RECORD +14 -13
- {mdkits-0.1.5.dist-info → mdkits-0.1.7.dist-info}/LICENSE +0 -0
- {mdkits-0.1.5.dist-info → mdkits-0.1.7.dist-info}/WHEEL +0 -0
- {mdkits-0.1.5.dist-info → mdkits-0.1.7.dist-info}/entry_points.txt +0 -0
mdkits/cli/adsorbate.py
CHANGED
|
@@ -1,91 +1,45 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
|
|
3
|
-
from ase import
|
|
4
|
-
|
|
5
|
-
import
|
|
3
|
+
from ase import build
|
|
4
|
+
import os
|
|
5
|
+
import click
|
|
6
6
|
import numpy as np
|
|
7
|
-
|
|
7
|
+
import MDAnalysis
|
|
8
|
+
from mdkits.util import arg_type, encapsulated_ase
|
|
8
9
|
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
def parse_index(s):
|
|
17
|
-
return [int(x)-1 for x in s.replace(',', ' ').split()]
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
def parse_argument():
|
|
21
|
-
parser = argparse.ArgumentParser(description='add some adsorbate')
|
|
22
|
-
parser.add_argument('filename', type=str, help='init structure filename')
|
|
23
|
-
parser.add_argument('-m', type=str, help='atom or molecule to add')
|
|
24
|
-
parser.add_argument('--index', type=parse_index, help='index(list) of atom to add atom(top site)')
|
|
25
|
-
parser.add_argument('--offset', type=parse_size, help='adjust site, default is 0,0', default='0,0')
|
|
26
|
-
parser.add_argument('--height', type=float, help='designate vacuum of surface, default is None', default=0.0)
|
|
27
|
-
parser.add_argument('-x', type=float, help='rotate axis and angle')
|
|
28
|
-
parser.add_argument('-y', type=float, help='rotate axis and angle')
|
|
29
|
-
parser.add_argument('-z', type=float, help='rotate axis and angle')
|
|
30
|
-
parser.add_argument('-o', type=str, help='specify the output file name without suffix, default is "adsorbated.cif"', default='adsorbated.cif')
|
|
31
|
-
parser.add_argument('--coord', help='coord format', action='store_true')
|
|
32
|
-
parser.add_argument('--cell', type=parse_size, help='set xyz file cell, --cell x,y,z,a,b,c')
|
|
33
|
-
parser.add_argument('--cp2k', help='output cp2k format', action='store_true')
|
|
34
|
-
|
|
35
|
-
return parser.parse_args()
|
|
36
|
-
|
|
37
|
-
@click.option('--adsorbate', type=arg_type.Molecule, help='add adsorbate on surface')
|
|
38
|
-
@click.option('--site', type=click.Choice(['ontop', 'hollow','fcc', 'hcp', 'bridge', 'shortbridge', 'longbridge']))
|
|
11
|
+
@click.command(name='adsorbate')
|
|
12
|
+
@click.argument('atoms', type=arg_type.Structure)
|
|
13
|
+
@click.argument('adsorbate', type=arg_type.Molecule)
|
|
14
|
+
@click.option('--select', type=str, help="select adsorbate position")
|
|
39
15
|
@click.option('--height', type=float, help='height above the surface')
|
|
40
|
-
@click.option('--rotate', type=click.Tuple([float, float, float]), help='rotate adsorbate molcule around x, y, z axis', default=(0, 0, 0))
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
if args.m in g2.names:
|
|
60
|
-
molecule = build.molecule(args.m)
|
|
61
|
-
if args.x:
|
|
62
|
-
molecule.rotate(args.x, 'x')
|
|
63
|
-
if args.y:
|
|
64
|
-
molecule.rotate(args.y, 'y')
|
|
65
|
-
if args.z:
|
|
66
|
-
molecule.rotate(args.z, 'z')
|
|
67
|
-
for position in position_list:
|
|
68
|
-
build.add_adsorbate(atoms, molecule, args.height, position=position)
|
|
16
|
+
@click.option('--rotate', type=click.Tuple([float, float, float]), help='rotate adsorbate molcule around x, y, z axis', default=(0, 0, 0), show_default=True)
|
|
17
|
+
@click.option('--offset', type=click.Tuple([float, float]), help='adjust site', default=(0, 0), show_default=True)
|
|
18
|
+
@click.option("--cover", type=int, help='cover the surface with adsorbate randomly')
|
|
19
|
+
def main(atoms, adsorbate, select, height, rotate, offset, cover):
|
|
20
|
+
offset = np.array(offset)
|
|
21
|
+
u = encapsulated_ase.atoms_to_u(atoms)
|
|
22
|
+
|
|
23
|
+
molecule = build.molecule(adsorbate)
|
|
24
|
+
molecule.rotate(rotate[0], 'x')
|
|
25
|
+
molecule.rotate(rotate[1], 'y')
|
|
26
|
+
molecule.rotate(rotate[2], 'z')
|
|
27
|
+
|
|
28
|
+
output_filename = f"{atoms.filename.split('.')[0]}_{adsorbate}.cif"
|
|
29
|
+
|
|
30
|
+
s = u.select_atoms(select)
|
|
31
|
+
positions = s.positions[:, 0:2] + offset
|
|
32
|
+
if cover:
|
|
33
|
+
for index in np.random.choice(positions.shape[0], cover, replace=False):
|
|
34
|
+
build.add_adsorbate(atoms, molecule, height, position=positions[index])
|
|
69
35
|
else:
|
|
70
|
-
for position in
|
|
71
|
-
build.add_adsorbate(atoms,
|
|
36
|
+
for position in positions:
|
|
37
|
+
build.add_adsorbate(atoms, molecule, height, position=position)
|
|
72
38
|
|
|
73
39
|
|
|
74
|
-
|
|
75
|
-
args.o = 'coord.xyz'
|
|
76
|
-
atoms.write(args.o, format='xyz')
|
|
77
|
-
with open(args.o, 'r') as f:
|
|
78
|
-
lines = f.readlines()
|
|
79
|
-
with open(args.o, 'w') as f:
|
|
80
|
-
f.writelines(lines[2:])
|
|
81
|
-
with open('cell.inc', 'w') as f:
|
|
82
|
-
cell = atoms.get_cell().cellpar()
|
|
83
|
-
f.write('ABC [angstrom] ' + str(cell[0]) + ' ' + str(cell[1]) + ' ' + str(cell[2]) + ' ' + '\n')
|
|
84
|
-
f.write('ALPHA_BETA_GAMMA ' + str(cell[3]) + ' ' + str(cell[4]) + ' ' + str(cell[5]) + '\n')
|
|
85
|
-
else:
|
|
86
|
-
atoms.write(args.o, format='cif')
|
|
40
|
+
atoms.write(output_filename, format='cif')
|
|
87
41
|
|
|
88
|
-
print(os.path.abspath(
|
|
42
|
+
print(os.path.abspath(output_filename))
|
|
89
43
|
|
|
90
44
|
|
|
91
45
|
if __name__ == '__main__':
|
mdkits/cli/build_cli.py
CHANGED
|
@@ -2,6 +2,7 @@ import click
|
|
|
2
2
|
from mdkits.cli import (
|
|
3
3
|
build_bulk,
|
|
4
4
|
build_surface,
|
|
5
|
+
adsorbate,
|
|
5
6
|
)
|
|
6
7
|
|
|
7
8
|
|
|
@@ -14,6 +15,7 @@ def cli_build(ctx):
|
|
|
14
15
|
|
|
15
16
|
cli_build.add_command(build_bulk.main)
|
|
16
17
|
cli_build.add_command(build_surface.main)
|
|
18
|
+
cli_build.add_command(adsorbate.main)
|
|
17
19
|
|
|
18
20
|
if __name__ == '__main__':
|
|
19
21
|
cli_build()
|
mdkits/cli/build_surface.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
|
|
3
|
-
import click
|
|
3
|
+
import click, os
|
|
4
4
|
from ase import build
|
|
5
5
|
import numpy as np
|
|
6
6
|
|
|
@@ -20,7 +20,7 @@ def surface_check(obj, surface_type):
|
|
|
20
20
|
@click.option('--thickness', type=float, help='Thickness of the layer, for mx2 and graphene')
|
|
21
21
|
@click.option('--orth', is_flag=True, help='if specified and true, forces the creation of a unit cell with orthogonal basis vectors. if the default is such a unit cell, this argument is not supported')
|
|
22
22
|
@click.option('--vacuum', type=float, help='designate vacuum of surface, default is None', default=0.0)
|
|
23
|
-
def main(symbol, surface, size, kind, a, c, thickness, orth, vacuum
|
|
23
|
+
def main(symbol, surface, size, kind, a, c, thickness, orth, vacuum):
|
|
24
24
|
#if args.primitive:
|
|
25
25
|
# a = args.a * 0.7071 * 2
|
|
26
26
|
#else:
|
|
@@ -28,7 +28,7 @@ def main(symbol, surface, size, kind, a, c, thickness, orth, vacuum, adsorbate):
|
|
|
28
28
|
|
|
29
29
|
vacuum = vacuum / 2
|
|
30
30
|
build_surface = surface_check(build, surface)
|
|
31
|
-
out_filename = f"{symbol}_{surface}_{size[0]}{size[1]}{size[2]}
|
|
31
|
+
out_filename = f"{symbol}_{surface}_{size[0]}{size[1]}{size[2]}.cif"
|
|
32
32
|
|
|
33
33
|
if surface in ['hcp0001', 'hcp10m10']:
|
|
34
34
|
atoms = build_surface(symbol, size, a=a, c=c, vacuum=vacuum, orthogonal=orth)
|
|
@@ -49,6 +49,7 @@ def main(symbol, surface, size, kind, a, c, thickness, orth, vacuum, adsorbate):
|
|
|
49
49
|
atoms = build_surface(symbol, size, a=a, vacuum=vacuum, orthogonal=orth)
|
|
50
50
|
|
|
51
51
|
atoms.write(out_filename)
|
|
52
|
+
print(os.path.abspath(out_filename))
|
|
52
53
|
|
|
53
54
|
|
|
54
55
|
if __name__ == '__main__':
|
mdkits/cli/convert.py
CHANGED
|
@@ -7,6 +7,7 @@ from mdkits.util import encapsulated_ase, arg_type
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
@click.command(name='convert')
|
|
10
|
+
@click.argument('atoms', type=arg_type.Structure)
|
|
10
11
|
@click.option('-c', help='covert to cif', is_flag=True)
|
|
11
12
|
@click.option('-x', help='covert to xyz', is_flag=True)
|
|
12
13
|
@click.option('-d', help='covert to lammps data file', is_flag=True)
|
|
@@ -14,14 +15,12 @@ from mdkits.util import encapsulated_ase, arg_type
|
|
|
14
15
|
@click.option('--coord', help='coord format', is_flag=True)
|
|
15
16
|
@click.option('--cp2k', help='convert to cp2k format(coord + cell)', is_flag=True)
|
|
16
17
|
@click.option('--center', help='center atoms', is_flag=True)
|
|
17
|
-
@click.option('--cell', type=arg_type.Cell, help='set cell from cp2k input file or a list of lattice: --cell x,y,z or x,y,z,a,b,c'
|
|
18
|
+
@click.option('--cell', type=arg_type.Cell, help='set cell from cp2k input file or a list of lattice: --cell x,y,z or x,y,z,a,b,c')
|
|
18
19
|
@click.option('-o', type=str, help='specify the output file name without suffix', default='out', show_default=True)
|
|
19
|
-
|
|
20
|
-
def main(c, x, d, v, coord, cp2k, center, cell, o, file_name):
|
|
20
|
+
def main(atoms, c, x, d, v, coord, cp2k, center, cell, o):
|
|
21
21
|
"""
|
|
22
22
|
convet structure file in some formats
|
|
23
23
|
"""
|
|
24
|
-
atoms = encapsulated_ase.atoms_read_with_cell(file_name, cell=cell, coord_mode=coord)
|
|
25
24
|
|
|
26
25
|
if center:
|
|
27
26
|
atoms.center()
|
mdkits/util/arg_type.py
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import click, os
|
|
2
|
-
from . import
|
|
2
|
+
from ase.io import read
|
|
3
|
+
import numpy as np
|
|
4
|
+
from ase.collections import g2
|
|
5
|
+
from mdkits.util import os_operation, cp2k_input_parsing, out_err
|
|
3
6
|
|
|
4
7
|
|
|
5
8
|
class CellType(click.ParamType):
|
|
@@ -8,16 +11,17 @@ class CellType(click.ParamType):
|
|
|
8
11
|
def convert(self, value, param, ctx):
|
|
9
12
|
if isinstance(value, str):
|
|
10
13
|
if ',' not in value:
|
|
11
|
-
cell = cp2k_input_parsing.parse_cell(
|
|
14
|
+
cell = cp2k_input_parsing.parse_cell()
|
|
12
15
|
return cell
|
|
13
16
|
else:
|
|
14
17
|
cell = [float(x) for x in value.split(',')]
|
|
15
18
|
|
|
16
19
|
if len(cell) == 3:
|
|
17
|
-
|
|
18
|
-
|
|
20
|
+
cell += [90, 90, 90]
|
|
21
|
+
out_err.cell_output(cell)
|
|
22
|
+
return cell
|
|
19
23
|
elif len(cell) == 6:
|
|
20
|
-
|
|
24
|
+
out_err.cell_output(cell)
|
|
21
25
|
return cell
|
|
22
26
|
else:
|
|
23
27
|
self.fail(f"{value} is not a valid cell parameter", param, ctx)
|
|
@@ -37,7 +41,28 @@ class FrameRangeType(click.ParamType):
|
|
|
37
41
|
self.fail(f"{value} is not a valid frame range", param, ctx)
|
|
38
42
|
|
|
39
43
|
|
|
40
|
-
|
|
44
|
+
class StructureType(click.ParamType):
|
|
45
|
+
name = "structure file type"
|
|
46
|
+
def convert(self, value, param, ctx):
|
|
47
|
+
no_cell=np.array([0., 0., 0., 90., 90., 90.])
|
|
48
|
+
if isinstance(value, str):
|
|
49
|
+
if os.path.exists(value):
|
|
50
|
+
try:
|
|
51
|
+
atoms = read(value)
|
|
52
|
+
except:
|
|
53
|
+
self.fail(f"{value} is not a valid structure file", param, ctx)
|
|
54
|
+
|
|
55
|
+
if np.array_equal(atoms.cell.cellpar(), no_cell):
|
|
56
|
+
cell = cp2k_input_parsing.parse_cell()
|
|
57
|
+
atoms.set_cell(cell)
|
|
58
|
+
|
|
59
|
+
atoms.filename = value.replace('./', '').replace('.\\', '')
|
|
60
|
+
return atoms
|
|
61
|
+
else:
|
|
62
|
+
self.fail(f"{value} is not exists", param, ctx)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
41
66
|
class MoleculeType(click.Choice):
|
|
42
67
|
name = "mocular type"
|
|
43
68
|
def __init__(self):
|
|
@@ -45,8 +70,17 @@ class MoleculeType(click.Choice):
|
|
|
45
70
|
g2.names.append(click.Path(exists=True))
|
|
46
71
|
self.choices = tuple(g2.names)
|
|
47
72
|
|
|
73
|
+
class AdsSiteType(click.Choice):
|
|
74
|
+
name = "adsorption site"
|
|
75
|
+
def __init__(self):
|
|
76
|
+
super().__init__(self)
|
|
77
|
+
site = ['ontop', 'hollow','fcc', 'hcp', 'bridge', 'shortbridge', 'longbridge']
|
|
78
|
+
self.choices = tuple(site)
|
|
79
|
+
|
|
48
80
|
|
|
49
81
|
|
|
50
82
|
Cell = CellType()
|
|
51
83
|
FrameRange = FrameRangeType()
|
|
52
84
|
Molecule = MoleculeType()
|
|
85
|
+
AdsSite = AdsSiteType()
|
|
86
|
+
Structure = StructureType()
|
|
@@ -5,9 +5,10 @@ function: prase cp2k file
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
import sys
|
|
8
|
+
from mdkits.util import os_operation, out_err
|
|
8
9
|
|
|
9
10
|
|
|
10
|
-
def parse_cell(
|
|
11
|
+
def parse_cell():
|
|
11
12
|
"""
|
|
12
13
|
function: parse cell information from cp2k input file
|
|
13
14
|
parameter:
|
|
@@ -15,24 +16,24 @@ def parse_cell(cp2k_input_file):
|
|
|
15
16
|
return:
|
|
16
17
|
cell: list with 6 number
|
|
17
18
|
"""
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
cell
|
|
19
|
+
for file in os_operation.default_input():
|
|
20
|
+
try:
|
|
21
|
+
with open(file, 'r') as f:
|
|
22
|
+
cell = []
|
|
23
|
+
for line in f:
|
|
24
|
+
if "ABC" in line:
|
|
25
|
+
xyz = line.split()[-3:]
|
|
26
|
+
cell.extend(xyz)
|
|
27
|
+
if "ALPHA_BETA_GAMMA" in line:
|
|
28
|
+
abc = line.split()[-3:]
|
|
29
|
+
cell.extend(abc)
|
|
30
|
+
if len(cell) == 3:
|
|
31
|
+
cell.extend([90.0, 90.0, 90.0])
|
|
30
32
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
sys.exit(1)
|
|
33
|
+
out_err.cell_output(cell)
|
|
34
|
+
return cell
|
|
35
|
+
except FileNotFoundError:
|
|
36
|
+
sys.exit(f"cant parse cell information from {','.join(os_operation.default_input())}, assign a cell")
|
|
36
37
|
|
|
37
38
|
|
|
38
39
|
#def get_cell(cp2k_input_file, cell=None):
|
mdkits/util/encapsulated_ase.py
CHANGED
|
@@ -8,6 +8,7 @@ from ase.io import iread, read
|
|
|
8
8
|
import io
|
|
9
9
|
import numpy as np
|
|
10
10
|
from ase.io.cube import read_cube_data
|
|
11
|
+
import MDAnalysis
|
|
11
12
|
|
|
12
13
|
|
|
13
14
|
def wrap_to_cell(chunk, cell, name, big=False):
|
|
@@ -132,3 +133,14 @@ def jread(filepath):
|
|
|
132
133
|
atom = read(filepath)
|
|
133
134
|
|
|
134
135
|
return atom
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
def atoms_to_u(atoms):
|
|
139
|
+
virtual_file = io.StringIO()
|
|
140
|
+
cell = atoms.cell.cellpar()
|
|
141
|
+
atoms.write(virtual_file, format='xyz')
|
|
142
|
+
|
|
143
|
+
u = MDAnalysis.Universe(virtual_file, format='xyz')
|
|
144
|
+
u.dimensions = cell
|
|
145
|
+
|
|
146
|
+
return u
|
mdkits/util/os_operation.py
CHANGED
|
@@ -33,3 +33,8 @@ def sort_word_and_number(unsort_list):
|
|
|
33
33
|
sorted_list = sorted(unsort_list, key=fns)
|
|
34
34
|
|
|
35
35
|
return sorted_list
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def default_input():
|
|
39
|
+
default_input_name = os.environ.get("DEFAULT_INPUT", "input.inp,setup.inp,cell.inc").split(',')
|
|
40
|
+
return default_input_name
|
mdkits/util/out_err.py
ADDED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: mdkits
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.7
|
|
4
4
|
Summary: kits for md or dft
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: molecular dynamics,density functional theory
|
|
@@ -13,6 +13,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Requires-Dist: Cp2kData (>=0.7.2,<0.8.0)
|
|
16
17
|
Requires-Dist: MDAnalysis (>=2.8.0,<3.0.0)
|
|
17
18
|
Requires-Dist: ase (>=3.22.1,<4.0.0)
|
|
18
19
|
Requires-Dist: click (>=8.1.3,<9.0.0)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
mdkits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
"mdkits/cli/,hb_distribution_down.py",sha256=i3NguzGebqCgy4uuVBeFajZRZnXtjhsJBPDGDdumlWA,4733
|
|
3
|
-
mdkits/cli/adsorbate.py,sha256=
|
|
3
|
+
mdkits/cli/adsorbate.py,sha256=rTj0oXkiUOboaxkfpbBoUicguMsB4-G-hJslsoUlbq0,1669
|
|
4
4
|
mdkits/cli/build_bulk.py,sha256=mOjoHHBui5fTYASabD96l6zBoKlQukT-LOyR2FZNzM4,1549
|
|
5
|
-
mdkits/cli/build_cli.py,sha256=
|
|
5
|
+
mdkits/cli/build_cli.py,sha256=5fFuq4VoW5sqbqKzRb5pWbNBlXBtuzHP68ur63o8WNo,380
|
|
6
6
|
mdkits/cli/build_interface.py,sha256=i1YE5iwazKVsTdQ_DXalNYeA8oflORWFePgJin1AJM4,3537
|
|
7
|
-
mdkits/cli/build_surface.py,sha256=
|
|
8
|
-
mdkits/cli/convert.py,sha256=
|
|
7
|
+
mdkits/cli/build_surface.py,sha256=LZtE3DMNgriOUb_sfPGbpYfZEf9b7sRWeKooaETsp2M,2663
|
|
8
|
+
mdkits/cli/convert.py,sha256=yAMgxPvgKSB94W0PNnjIhXHwAxE8wynPdfnwjG7Fb4U,1871
|
|
9
9
|
mdkits/cli/cube.py,sha256=G-QNup8W6J1-LCcEl1EHsV3nstd23byePDOcE_95t18,1176
|
|
10
10
|
mdkits/cli/cut_surface.py,sha256=D1naCWj0QJE3AiInzy3SeGO37butothE3BS1rZsZ5MU,1425
|
|
11
11
|
mdkits/cli/data.py,sha256=FGA4S9Cfo6WUJBSPWKOJrrZXHo_Qza-jNG1P_Dw7yi4,3262
|
|
@@ -24,16 +24,17 @@ mdkits/config/__init__.py,sha256=ZSwmnPK02LxJLMgcYmNb-tIOk8fEuHf5jpqD3SDHWLg,103
|
|
|
24
24
|
mdkits/config/settings.yml,sha256=PY7u0PbFLuxSnd54H5tI9oMjUf-mzyADqSZtm99BwG0,71
|
|
25
25
|
mdkits/mdkits.py,sha256=ASOEhY94G_P902ojOobvqPYu1L3AOFTS_Ooh5LJAjX0,603
|
|
26
26
|
mdkits/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
mdkits/util/arg_type.py,sha256=
|
|
28
|
-
mdkits/util/cp2k_input_parsing.py,sha256=
|
|
29
|
-
mdkits/util/encapsulated_ase.py,sha256=
|
|
27
|
+
mdkits/util/arg_type.py,sha256=AbjQpv4CEjJJVV2J34jRHOtUYcvwr0lyy5EI9Su7T0s,2728
|
|
28
|
+
mdkits/util/cp2k_input_parsing.py,sha256=Hnp8QEMs3bGID2qusJX1OjXVq6cdVL-d24aAUIMji_U,1290
|
|
29
|
+
mdkits/util/encapsulated_ase.py,sha256=uhqIhsALxzwJYuFrfOYGGC6U0QLm_dcZNridvfl_XGc,4339
|
|
30
30
|
mdkits/util/encapsulated_mda.py,sha256=td3H24u3eHOIS2nwPucfIaMxeaVxI77oFI8nnNhw7vo,2217
|
|
31
31
|
mdkits/util/fig_operation.py,sha256=FwffNUtXorMl6qE04FipgzcVljEQii7wrNJUCJMyY3E,1045
|
|
32
32
|
mdkits/util/numpy_geo.py,sha256=1Op8THoQeyqybSZAi7hVxohYCr4SzY6ndZC8_gAGXDA,3619
|
|
33
|
-
mdkits/util/os_operation.py,sha256=
|
|
33
|
+
mdkits/util/os_operation.py,sha256=ErN2ExjX9vZRfPe3ypsj4eyoQTEePqzlEX0Xm1N4lL4,980
|
|
34
|
+
mdkits/util/out_err.py,sha256=5ckrO2_wP5QObBeJ5SJ58u6OtvMii5NsXB6-plHrmpg,207
|
|
34
35
|
mdkits/util/structure_parsing.py,sha256=mRPMJeih3O-ST7HeETDvBEkfV-1psT-XgxyYgDadV0U,4152
|
|
35
|
-
mdkits-0.1.
|
|
36
|
-
mdkits-0.1.
|
|
37
|
-
mdkits-0.1.
|
|
38
|
-
mdkits-0.1.
|
|
39
|
-
mdkits-0.1.
|
|
36
|
+
mdkits-0.1.7.dist-info/entry_points.txt,sha256=xoWWZ_yL87S501AzCO2ZjpnVuYkElC6z-8J3tmuIGXQ,44
|
|
37
|
+
mdkits-0.1.7.dist-info/LICENSE,sha256=VLaqyB0r_H7y3hUntfpPWcE3OATTedHWI983htLftcQ,1081
|
|
38
|
+
mdkits-0.1.7.dist-info/METADATA,sha256=2g49Gv9xK-pjNm6S9xCormq10ppXLQQTaCl59y2uY0o,6910
|
|
39
|
+
mdkits-0.1.7.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
40
|
+
mdkits-0.1.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|