File: vizinfo.py

package info (click to toggle)
lammps 20250204%2Bdfsg.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 474,368 kB
  • sloc: cpp: 1,060,070; python: 27,785; ansic: 8,956; f90: 7,254; sh: 6,044; perl: 4,171; fortran: 2,442; xml: 1,714; makefile: 1,352; objc: 238; lisp: 188; yacc: 58; csh: 16; awk: 14; tcl: 6; javascript: 2
file content (391 lines) | stat: -rw-r--r-- 13,192 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
# Pizza.py toolkit, https://lammps.github.io/pizza
# LAMMPS Development team: developers@lammps.org, Sandia National Laboratories
#
# Copyright (2005) Sandia Corporation.  Under the terms of Contract
# DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
# certain rights in this software.  This software is distributed under
# the GNU General Public License.

# vizinfo class, not a top-level Pizza.py tool

# History
#   8/05, Matt Jones (BYU): original version
#   9/05, Steve Plimpton: added 140-color table

# ToDo list

# Variables

# Imports and external programs

import types

# Class definition

class vizinfo:
  """
  Information holder for Pizza.py visualization tools

  acolor,bcolor,tcolor,lcolor = RGB values for each atom/bond/tri/line type
  arad = radius of each atom type
  brad,lrad = thickness of each bond/line type
  tfill = fill flag for each triangle type

  all of these arrays are indexed by object type which runs 1-Ntype
  nacolor,nbcolor,ntcolor,nlcolor,narad,nbrad,nlrad,ntfill
    are # of types each array holds
  actual length is nacolor+1 so that array can be indexed by 1-Ntype

  setcolors() = set atom/bond/tri/line colors
  setradii() = set atom/bond/line radii/thickness
  setfill() = set triangle fill factor
  extend() = grow an array
  """

  # --------------------------------------------------------------------

  def __init__(self):
     self.acolor = []
     self.arad = []
     self.bcolor = []
     self.brad = []
     self.tcolor = []
     self.tfill = []
     self.lcolor = []
     self.lrad = []
     self.nacolor = self.narad = 0
     self.nbcolor = self.nbrad = 0
     self.ntcolor = self.ntfill = 0
     self.nlcolor = self.nlrad = 0

  # --------------------------------------------------------------------
  # set color RGB for which = atoms, bonds, triangles

  def setcolors(self,which,ids,rgbs):

    # convert args into lists if single values
    # if arg = 0, convert to full-range list

    if type(ids) is types.IntType and ids == 0:
      if which == "atom": ids = range(self.nacolor)
      if which == "bond": ids = range(self.nbcolor)
      if which == "tri": ids = range(self.ntcolor)
      if which == "line": ids = range(self.nlcolor)
    if type(ids) is not types.ListType and type(ids) is not types.TupleType:
      ids = [ids]
    if type(rgbs) is not types.ListType and type(rgbs) is not types.TupleType:
      rgbs = [rgbs]

    # if list of types has a 0, increment each type value

    if 0 in ids:
      for i in range(len(ids)): ids[i] += 1

    # extend storage list if necessary
    # extend other arrays for same "which" so that gl::make_atom_calllist
    #   has valid arrays to work with

    if which == "atom":
      if max(ids) > self.nacolor:
        self.nacolor = self.extend(self.acolor,max(ids))
        self.nacolor = self.extend(self.arad,max(ids))
    if which == "bond":
      if max(ids) > self.nbcolor:
        self.nbcolor = self.extend(self.bcolor,max(ids))
        self.nbcolor = self.extend(self.brad,max(ids))
    if which == "tri":
      if max(ids) > self.ntcolor:
        self.ntcolor = self.extend(self.tcolor,max(ids))
        self.ntcolor = self.extend(self.tfill,max(ids))
    if which == "line":
      if max(ids) > self.nlcolor:
        self.nlcolor = self.extend(self.lcolor,max(ids))
        self.nlcolor = self.extend(self.lrad,max(ids))

    # set color for each type
    # if list lengths match, set directly, else interpolate
    # convert final color from 0-255 to 0.0-1.0

    ntypes = len(ids)
    nrgbs = len(rgbs)

    for i in range(ntypes):
      id = ids[i]

      if rgbs[0] == "loop":
        list = colors.keys()
        red,green,blue = colors[list[i % len(colors)]]
      elif ntypes == nrgbs:
        red,green,blue = colors[rgbs[i]]
      else:
        r = i/float(ntypes-1) * float(nrgbs-1)
        jlo = int(r)
        jhi = jlo + 1
        if jhi == nrgbs: jhi = nrgbs - 1
        clo = colors[rgbs[jlo]]
        chi = colors[rgbs[jhi]]
        delta = r - jlo
        red = clo[0] + delta*(chi[0]-clo[0])
        green = clo[1] + delta*(chi[1]-clo[1])
        blue = clo[2] + delta*(chi[2]-clo[2])

      color = [red/255.0,green/255.0,blue/255.0]

      if which == "atom": self.acolor[id] = color
      if which == "bond": self.bcolor[id] = color
      if which == "tri":  self.tcolor[id] = color
      if which == "line": self.lcolor[id] = color

  # --------------------------------------------------------------------
  # set radii for which = atoms, bonds, lines

  def setradii(self,which,ids,radii):

    # convert args into lists if single values
    # if arg = 0, convert to full-range list

    if type(ids) is types.IntType and ids == 0:
      if which == "atom": ids = range(self.narad)
      if which == "bond": ids = range(self.nbrad)
      if which == "line": ids = range(self.nlrad)
    if type(ids) is not types.ListType and type(ids) is not types.TupleType:
      ids = [ids]
    if type(radii) is not types.ListType and \
           type(radii) is not types.TupleType:
      radii = [radii]

    # if list of types has a 0, increment each type value

    if 0 in ids:
      for i in range(len(ids)): ids[i] += 1

    # extend storage list if necessary
    # extend other arrays for same "which" so that gl::make_atom_calllist
    #   has valid arrays to work with

    if which == "atom":
      if max(ids) > self.narad:
        self.narad = self.extend(self.arad,max(ids))
        self.narad = self.extend(self.acolor,max(ids))
    if which == "bond":
      if max(ids) > self.nbrad:
        self.nbrad = self.extend(self.brad,max(ids))
        self.nbrad = self.extend(self.bcolor,max(ids))
    if which == "line":
      if max(ids) > self.nlrad:
        self.nlrad = self.extend(self.lrad,max(ids))
        self.nlrad = self.extend(self.lcolor,max(ids))

    # set radius for each type
    # if list lengths match, set directly, else interpolate

    ntypes = len(ids)
    nradii = len(radii)

    for i in range(ntypes):
      id = ids[i]

      if ntypes == nradii: rad = radii[i]
      else:
        r = i/float(ntypes-1) * float(nradii-1)
        jlo = int(r)
        jhi = jlo + 1
        if jhi == nradii: jhi = nradii - 1
        rlo = radii[jlo]
        rhi = radii[jhi]
        delta = r - jlo
        rad = rlo + delta*(rhi-rlo)

      if which == "atom": self.arad[id] = rad
      if which == "bond": self.brad[id] = rad
      if which == "line": self.lrad[id] = rad

  # --------------------------------------------------------------------
  # set triangle fill style
  # 0 = fill only, 1 = line only, 2 = fill and line

  def setfills(self,which,ids,fills):

    # convert args into lists if single values
    # if arg = 0, convert to full-range list

    if type(ids) is types.IntType and ids == 0:
      ids = range(self.ntfill)
    if type(ids) is not types.ListType and type(ids) is not types.TupleType:
      ids = [ids]
    if type(fills) is not types.ListType and \
           type(fills) is not types.TupleType:
      fills = [fills]

    # if list of types has a 0, increment each type value

    if 0 in ids:
      for i in range(len(ids)): ids[i] += 1

    # extend storage list if necessary
    # extend other arrays for same "which" so that gl::make_atom_calllist
    #   has valid arrays to work with

    if max(ids) > self.ntfill:
      self.ntfill = self.extend(self.tfill,max(ids))
      self.ntfill = self.extend(self.tcolor,max(ids))

    # set fill flag for each type
    # if list lengths match, set directly, else set types to 1st fill value

    if len(fills) == len(ids):
      for i in range(len(ids)): self.tfill[ids[i]] = int(fills[i])
    else:
      for id in ids: self.tfill[id] = int(fills[0])

  # --------------------------------------------------------------------

  def extend(self,array,n):
    for i in range(n-len(array)+1): array.append(0)
    return n

# --------------------------------------------------------------------
# dictionary of 140 color names and associated RGB values

colors = {}

colors["aliceblue"] = [240, 248, 255]
colors["antiquewhite"] = [250, 235, 215]
colors["aqua"] = [0, 255, 255]
colors["aquamarine"] = [127, 255, 212]
colors["azure"] = [240, 255, 255]
colors["beige"] = [245, 245, 220]
colors["bisque"] = [255, 228, 196]
colors["black"] = [0, 0, 0]
colors["blanchedalmond"] = [255, 255, 205]
colors["blue"] = [0, 0, 255]
colors["blueviolet"] = [138, 43, 226]
colors["brown"] = [165, 42, 42]
colors["burlywood"] = [222, 184, 135]
colors["cadetblue"] = [95, 158, 160]
colors["chartreuse"] = [127, 255, 0]
colors["chocolate"] = [210, 105, 30]
colors["coral"] = [255, 127, 80]
colors["cornflowerblue"] = [100, 149, 237]
colors["cornsilk"] = [255, 248, 220]
colors["crimson"] = [220, 20, 60]
colors["cyan"] = [0, 255, 255]
colors["darkblue"] = [0, 0, 139]
colors["darkcyan"] = [0, 139, 139]
colors["darkgoldenrod"] = [184, 134, 11]
colors["darkgray"] = [169, 169, 169]
colors["darkgreen"] = [0, 100, 0]
colors["darkkhaki"] = [189, 183, 107]
colors["darkmagenta"] = [139, 0, 139]
colors["darkolivegreen"] = [85, 107, 47]
colors["darkorange"] = [255, 140, 0]
colors["darkorchid"] = [153, 50, 204]
colors["darkred"] = [139, 0, 0]
colors["darksalmon"] = [233, 150, 122]
colors["darkseagreen"] = [143, 188, 143]
colors["darkslateblue"] = [72, 61, 139]
colors["darkslategray"] = [47, 79, 79]
colors["darkturquoise"] = [0, 206, 209]
colors["darkviolet"] = [148, 0, 211]
colors["deeppink"] = [255, 20, 147]
colors["deepskyblue"] = [0, 191, 255]
colors["dimgray"] = [105, 105, 105]
colors["dodgerblue"] = [30, 144, 255]
colors["firebrick"] = [178, 34, 34]
colors["floralwhite"] = [255, 250, 240]
colors["forestgreen"] = [34, 139, 34]
colors["fuchsia"] = [255, 0, 255]
colors["gainsboro"] = [220, 220, 220]
colors["ghostwhite"] = [248, 248, 255]
colors["gold"] = [255, 215, 0]
colors["goldenrod"] = [218, 165, 32]
colors["gray"] = [128, 128, 128]
colors["green"] = [0, 128, 0]
colors["greenyellow"] = [173, 255, 47]
colors["honeydew"] = [240, 255, 240]
colors["hotpink"] = [255, 105, 180]
colors["indianred"] = [205, 92, 92]
colors["indigo"] = [75, 0, 130]
colors["ivory"] = [255, 240, 240]
colors["khaki"] = [240, 230, 140]
colors["lavender"] = [230, 230, 250]
colors["lavenderblush"] = [255, 240, 245]
colors["lawngreen"] = [124, 252, 0]
colors["lemonchiffon"] = [255, 250, 205]
colors["lightblue"] = [173, 216, 230]
colors["lightcoral"] = [240, 128, 128]
colors["lightcyan"] = [224, 255, 255]
colors["lightgoldenrodyellow"] = [250, 250, 210]
colors["lightgreen"] = [144, 238, 144]
colors["lightgrey"] = [211, 211, 211]
colors["lightpink"] = [255, 182, 193]
colors["lightsalmon"] = [255, 160, 122]
colors["lightseagreen"] = [32, 178, 170]
colors["lightskyblue"] = [135, 206, 250]
colors["lightslategray"] = [119, 136, 153]
colors["lightsteelblue"] = [176, 196, 222]
colors["lightyellow"] = [255, 255, 224]
colors["lime"] = [0, 255, 0]
colors["limegreen"] = [50, 205, 50]
colors["linen"] = [250, 240, 230]
colors["magenta"] = [255, 0, 255]
colors["maroon"] = [128, 0, 0]
colors["mediumaquamarine"] = [102, 205, 170]
colors["mediumblue"] = [0, 0, 205]
colors["mediumorchid"] = [186, 85, 211]
colors["mediumpurple"] = [147, 112, 219]
colors["mediumseagreen"] = [60, 179, 113]
colors["mediumslateblue"] = [123, 104, 238]
colors["mediumspringgreen"] = [0, 250, 154]
colors["mediumturquoise"] = [72, 209, 204]
colors["mediumvioletred"] = [199, 21, 133]
colors["midnightblue"] = [25, 25, 112]
colors["mintcream"] = [245, 255, 250]
colors["mistyrose"] = [255, 228, 225]
colors["moccasin"] = [255, 228, 181]
colors["navajowhite"] = [255, 222, 173]
colors["navy"] = [0, 0, 128]
colors["oldlace"] = [253, 245, 230]
colors["olive"] = [128, 128, 0]
colors["olivedrab"] = [107, 142, 35]
colors["orange"] = [255, 165, 0]
colors["orangered"] = [255, 69, 0]
colors["orchid"] = [218, 112, 214]
colors["palegoldenrod"] = [238, 232, 170]
colors["palegreen"] = [152, 251, 152]
colors["paleturquoise"] = [175, 238, 238]
colors["palevioletred"] = [219, 112, 147]
colors["papayawhip"] = [255, 239, 213]
colors["peachpuff"] = [255, 239, 213]
colors["peru"] = [205, 133, 63]
colors["pink"] = [255, 192, 203]
colors["plum"] = [221, 160, 221]
colors["powderblue"] = [176, 224, 230]
colors["purple"] = [128, 0, 128]
colors["red"] = [255, 0, 0]
colors["rosybrown"] = [188, 143, 143]
colors["royalblue"] = [65, 105, 225]
colors["saddlebrown"] = [139, 69, 19]
colors["salmon"] = [250, 128, 114]
colors["sandybrown"] = [244, 164, 96]
colors["seagreen"] = [46, 139, 87]
colors["seashell"] = [255, 245, 238]
colors["sienna"] = [160, 82, 45]
colors["silver"] = [192, 192, 192]
colors["skyblue"] = [135, 206, 235]
colors["slateblue"] = [106, 90, 205]
colors["slategray"] = [112, 128, 144]
colors["snow"] = [255, 250, 250]
colors["springgreen"] = [0, 255, 127]
colors["steelblue"] = [70, 130, 180]
colors["tan"] = [210, 180, 140]
colors["teal"] = [0, 128, 128]
colors["thistle"] = [216, 191, 216]
colors["tomato"] = [253, 99, 71]
colors["turquoise"] = [64, 224, 208]
colors["violet"] = [238, 130, 238]
colors["wheat"] = [245, 222, 179]
colors["white"] = [255, 255, 255]
colors["whitesmoke"] = [245, 245, 245]
colors["yellow"] = [255, 255, 0]
colors["yellowgreen"] = [154, 205, 50]