/usr/share/python-ase/doc/logo.py is in python-ase-doc 3.9.1.4567-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | import os
import numpy as np
from ase import Atoms, Atom
ase = """\
H HH HHH
H H H H
HHH H HH
H H H H
H H HH HHH"""
d = 1.2
logo = Atoms()
for i, line in enumerate(ase.split('\n')):
for j, c in enumerate(line):
if c == 'H':
logo.append(Atom('H', [d * j, d * i, 0]))
logo.set_cell((15, 15, 2))
logo.center()
#logo.center(vacuum=2.0)
#view(logo)
if 1:
from gpaw import GPAW
calc = GPAW()
logo.set_calculator(calc)
e = logo.get_potential_energy()
calc.write('logo2.gpw')
if 0:
from gpaw import GPAW
calc = GPAW('logo2.gpw', idiotproof=0)
if 1:
print(calc.density.nt_sg.shape)
n = calc.density.nt_sg[0, :, :, 10]
#1c4e63
c0 = np.array([19, 63, 82.0]).reshape((3, 1, 1)) / 255
c1 = np.array([1.0, 1, 0]).reshape((3, 1, 1))
a = c0 + n / n.max() * (c1 - c0)
import pylab as p
i = p.imshow(a.T, aspect=True)
i.write_png('ase.png')
os.system('convert ase.png -geometry 256x256! ase256.png')
#p.axis('off')
p.show()
#p.savefig('ase.png', dpi=8)
|