Skip to content

Commit 1e2657a

Browse files
Added more example complex and edited example_*.py
1 parent 92293b0 commit 1e2657a

4 files changed

Lines changed: 44 additions & 3 deletions

File tree

example-input/Multiple-metals.xyz

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
27
2+
3+
Pd -4.00534221 0.02615609 -0.20809414
4+
H -5.05474766 -1.05664770 -0.68042945
5+
H -4.36178662 -0.85416912 1.05692269
6+
H -3.75669600 0.91454153 1.07657423
7+
H -5.24520009 0.99956909 -0.31656896
8+
H -2.91841654 1.10574261 -0.59697663
9+
H -2.76092144 -0.94738589 -0.20495554
10+
H -3.93877425 0.02161747 -1.78771818
11+
Ru 1.56871313 0.38020477 -2.64594231
12+
H 3.10932671 0.37506162 -2.64567912
13+
H 1.57009275 1.91998756 -2.64835716
14+
H 1.57018304 0.38427253 -1.10591921
15+
H 0.02827773 0.37785998 -2.64523251
16+
H 1.56648653 -1.15979944 -2.64428264
17+
H 1.57027982 0.38262840 -4.18631770
18+
C -0.45087404 -3.79499875 1.36146977
19+
C 0.95060479 -3.79511234 1.36091358
20+
C 1.65136951 -2.58148375 1.36023188
21+
C 0.95068637 -1.36762962 1.35441800
22+
C -0.45077718 -1.36757967 1.35815639
23+
C -1.15143779 -2.58134794 1.35987893
24+
H -0.98582299 -4.72134078 1.36303463
25+
H 1.48563048 -4.72158844 1.36125878
26+
H 2.72133629 -2.58140897 1.35205743
27+
H 1.48559808 -0.44087339 1.34742874
28+
Fe 2.298354 5.161785 7.971898
29+
O 1.747515 6.960963 7.932784
30+
O 1.885657 4.804777 6.183726
31+
N 2.812425 3.266553 8.131637
32+
N 0.539005 4.482809 8.460004
33+
N 2.886404 5.392925 9.848966
34+
N 4.094380 5.807257 7.588689
35+
H -0.98571912 -0.44068814 1.35084224
36+
H -2.22139152 -2.58099596 1.35994962
37+
38+
39+
40+
41+

example-py/example_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#############
66

77
# Open and read input file
8-
file = r"C:\Users\Nutt\Desktop\OctaDist-TestFile\Fe\Multiple-metals.xyz"
8+
file = r"../example-input/Multiple-metals.xyz"
99

1010
# Extract atomic labels and coordinates of octahedral structure from metal complex
1111
atom, coor = coord.extract_octa(file)

example-py/example_3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#############
66

77
# Open and read input file
8-
file = r"C:\Users\Nutt\Desktop\OctaDist-TestFile\Fe\Multiple-metals.xyz"
8+
file = r"../example-input/Multiple-metals.xyz"
99

1010
# If complex contains metal center more than one, you can specify the index of metal of interest.
1111
# For example, this complex contains three metal atoms: Fe, Ru, and Rd. I add second argument "2"

example-py/example_4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#############
66

77
# Open and read input file
8-
file = r"C:\Users\Nutt\Desktop\OctaDist-TestFile\Fe\Multiple-metals.xyz"
8+
file = r"../example-input/Multiple-metals.xyz"
99

1010
# Graphical display for octahedral complex
1111
full_atom, full_coor = coord.get_coord(file)

0 commit comments

Comments
 (0)