4Finds atomistic waters in an xyz file and generates an OpenMD (omd)
5file with center of mass and orientational coordinates for rigid body
11 -h, --help show this help
12 -x, use the specified input (.xyz) file
13 -o, --output-file=... use specified output (.omd) file
14 -s, --starting-index=. start the water objects with an index
18 waterReplacer -x basal.xyz -o basal.omd
22__author__ = "Dan Gezelter (gezelter@nd.edu)"
23__copyright__ = "Copyright (c) 2004-present The University of Notre Dame. All Rights Reserved."
34_haveOutputFileName = 0
47#Hmat = zeros([3,3],Float)
48#BoxInv = zeros([3],Float)
53def readFile(XYZFileName):
54 print("reading XYZ file")
56 XYZFile = open(XYZFileName, 'r')
57 # Find number of atoms first
58 line = XYZFile.readline()
62 line = XYZFile.readline()
63 for i in range(nAtoms):
64 line = XYZFile.readline()
67 indices.append(myIndex)
69 atypes.append(atomType)
73 positions.append([x, y, z])
77 print("finding water molecules")
78 # simpler since we only have to find H atoms within a few
79 # angstroms of each water:
84 OHbond = hCovRad + oCovRad + covTol
88 for i in range(len(indices)):
89 if (atypes[i] == "O"):
93 for j in range(len(indices)):
94 if (atypes[j] == "H"):
96 dx = opos[0] - hpos[0]
97 dy = opos[1] - hpos[1]
98 dz = opos[2] - hpos[2]
99 dist = math.sqrt(dx*dx + dy*dy + dz*dz)
102 print("oxygen %d had too many hydrogens" % (i))
105 print("oxygen %d had %d hydrogens, skipping" % (i, len(H)))
107 Xcom = Omass * opos[0] + Hmass*(positions[H[0]][0] + positions[H[1]][0])
108 Ycom = Omass * opos[1] + Hmass*(positions[H[0]][1] + positions[H[1]][1])
109 Zcom = Omass * opos[2] + Hmass*(positions[H[0]][2] + positions[H[1]][2])
111 totalMass = Omass + 2.0*Hmass
112 Xcom = Xcom / totalMass
113 Ycom = Ycom / totalMass
114 Zcom = Zcom / totalMass
115 COM = [Xcom, Ycom, Zcom]
117 bisector = [0.0, 0.0, 0.0]
121 RotMat = numpy.zeros((3, 3), numpy.float_)
124 bisector[j] = 0.5*(positions[H[0]][j] + positions[H[1]][j])
125 uz[j] = bisector[j] - opos[j]
126 uy[j] = positions[H[0]][j] - positions[H[1]][j]
133 q = [0.0, 0.0, 0.0, 0.0]
135 # RotMat to Quat code is out of OpenMD's SquareMatrix3.hpp code:
141 t = RotMat[0][0] + RotMat[1][1] + RotMat[2][2] + 1.0
144 s = 0.5 / math.sqrt( t )
146 q[1] = (RotMat[1][2] - RotMat[2][1]) * s
147 q[2] = (RotMat[2][0] - RotMat[0][2]) * s
148 q[3] = (RotMat[0][1] - RotMat[1][0]) * s
154 if( ad1 >= ad2 and ad1 >= ad3 ):
155 s = 0.5 / math.sqrt( 1.0 + RotMat[0][0] - RotMat[1][1] - RotMat[2][2] )
156 q[0] = (RotMat[1][2] - RotMat[2][1]) * s
158 q[2] = (RotMat[0][1] + RotMat[1][0]) * s
159 q[3] = (RotMat[0][2] + RotMat[2][0]) * s
160 elif ( ad2 >= ad1 and ad2 >= ad3 ):
161 s = 0.5 / math.sqrt( 1.0 + RotMat[1][1] - RotMat[0][0] - RotMat[2][2] )
162 q[0] = (RotMat[2][0] - RotMat[0][2] ) * s
163 q[1] = (RotMat[0][1] + RotMat[1][0]) * s
165 q[3] = (RotMat[1][2] + RotMat[2][1]) * s
167 s = 0.5 / math.sqrt( 1.0 + RotMat[2][2] - RotMat[0][0] - RotMat[1][1] )
168 q[0] = (RotMat[0][1] - RotMat[1][0]) * s
169 q[1] = (RotMat[0][2] + RotMat[2][0]) * s
170 q[2] = (RotMat[1][2] + RotMat[2][1]) * s
175 Eliminate.append(H[0])
176 Eliminate.append(H[1])
179def writeFile(outputFileName, startingIndex):
180 outputFile = open(outputFileName, 'w')
182 outputFile.write("<OpenMD version=1>\n");
184 for metaline in metaData:
185 outputFile.write(metaline)
187 outputFile.write(" <Snapshot>\n")
189 for frameline in frameData:
190 outputFile.write(frameline)
192 outputFile.write(" <StuntDoubles>\n")
196 index = startingIndex
197 for i in range(len(WaterPos)):
198 outputFile.write("%10d %7s %18.10g %18.10g %18.10g %13e %13e %13e %13e %13e %13e %13e %13e %13e %13e\n" % (index, sdFormat, WaterPos[i][0], WaterPos[i][1], WaterPos[i][2], 0.0, 0.0, 0.0, WaterQuats[i][0], WaterQuats[i][1], WaterQuats[i][2], WaterQuats[i][3], 0.0, 0.0, 0.0))
203 for i in range(len(indices)):
204 if i not in Eliminate:
205 outputFile.write("%10d %7s %18.10g %18.10g %18.10g %13e %13e %13e \n" % (index, sdFormat, positions[i][0], positions[i][1], positions[i][2], 0.0, 0.0, 0.0))
208 outputFile.write(" </StuntDoubles>\n")
209 outputFile.write(" </Snapshot>\n")
210 outputFile.write("</OpenMD>\n")
215 for i in range(len(L1)):
216 myDot = myDot + L1[i]*L2[i]
221 myLength = math.sqrt(dot(L1, L1))
222 for i in range(len(L1)):
223 L2.append(L1[i] / myLength)
227 # don't call this with anything other than length 3 lists please
230 L3[0] = L1[1]*L2[2] - L1[2]*L2[1]
231 L3[1] = L1[2]*L2[0] - L1[0]*L2[2]
232 L3[2] = L1[0]*L2[1] - L1[1]*L2[0]
237 opts, args = getopt.getopt(argv, "hx:o:s:", ["help", "xyz-file=", "output-file=", "starting-index="])
238 except getopt.GetoptError:
242 for opt, arg in opts:
243 if opt in ("-h", "--help"):
246 elif opt in ("-x", "--xyz-file"):
248 global _haveXYZFileName
250 elif opt in ("-o", "--output-file"):
252 global _haveOutputFileName
253 _haveOutputFileName = 1
254 elif opt in ("-s", "--starting-index"):
255 startingIndex = int(arg)
256 if (_haveXYZFileName != 1):
258 print("No XYZ file was specified")
260 if (_haveOutputFileName != 1):
262 print("No output file was specified")
264 readFile(xyzFileName)
266 writeFile(outputFileName, startingIndex)
268if __name__ == "__main__":
269 if len(sys.argv) == 1: