Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kwant
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michael Wimmer
kwant
Commits
b32c4655
Commit
b32c4655
authored
11 years ago
by
Anton Akhmerov
Committed by
Christoph Groth
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add logo-generating script to examples
parent
69c63e90
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/logo.py
+99
-0
99 additions, 0 deletions
examples/logo.py
with
99 additions
and
0 deletions
examples/logo.py
0 → 100644
+
99
−
0
View file @
b32c4655
"""
The script generating Kwant logo. In addition to Kwant it also needs Python
image library (PIL).
"""
import
Image
import
ImageFont
import
ImageDraw
import
matplotlib
import
numpy
as
np
import
scipy
import
kwant
def
main
():
def
bbox
(
array
):
x
,
y
=
np
.
where
(
array
)
return
np
.
min
(
x
),
np
.
max
(
x
),
np
.
min
(
y
),
np
.
max
(
y
)
# Prepare an image.
x
=
500
y
=
160
im
=
Image
.
new
(
'
L
'
,
(
x
,
y
),
255
)
draw
=
ImageDraw
.
Draw
(
im
)
# Select a font for the logo and make an image of the logo. We use a font
# available in Debian/Ubuntu, but it can also be downloaded e.g. at
# http://www.fonts2u.com/free-monospaced-bold.font
fontfile
=
"
/usr/share/fonts/truetype/freefont/FreeMonoBold.ttf
"
font
=
ImageFont
.
truetype
(
fontfile
,
150
)
draw
.
text
((
10
,
10
),
"
kwant
"
,
font
=
font
)
dy
=
3
dx1
=
5
dx2
=
3
mu_system
=
3.8
# The the coordinates of text.
textpos
=
(
1.
-
np
.
array
(
im
.
getdata
())
/
255.
).
reshape
(
y
,
x
)
# Cut away empty space around the letters.
xmin
,
xmax
,
ymin
,
ymax
=
bbox
(
textpos
)
textpos
=
textpos
[(
xmin
-
1
)
:
(
xmax
+
dx2
)][:,
(
ymin
-
dy
)
:
(
ymax
+
dy
)]
xmin
,
xmax
,
ymin
,
ymax
=
bbox
(
textpos
)
# Add an underscore that touches the lettes.
geometry
=
np
.
copy
(
textpos
)
geometry
[(
xmax
-
dx1
)
:
(
xmax
+
dx2
)][:,
(
ymin
-
dy
)
:
(
ymax
+
dy
)]
=
1
# Find x-coordinates separating the letters.
nonempty
=
np
.
apply_along_axis
(
np
.
sum
,
0
,
textpos
)
>
0
borders
=
np
.
where
(
np
.
diff
(
nonempty
))[
0
]
letters
=
borders
.
reshape
(
-
1
,
2
)
gaps
=
borders
[
1
:
-
1
].
reshape
(
-
1
,
2
)
# Construct the system, and calculate LDOS.
sys
=
kwant
.
Builder
()
lat
=
kwant
.
lattice
.
square
()
sys
[(
lat
(
*
coord
)
for
coord
in
np
.
argwhere
(
geometry
))]
=
mu_system
sys
[
lat
.
neighbors
()]
=
-
1
lead
=
kwant
.
Builder
(
kwant
.
TranslationalSymmetry
((
1
,
0
)))
for
y1
in
range
(
ymin
-
dy
,
ymax
+
dy
):
lead
[
lat
(
0
,
y1
)]
=
mu_system
lead
[
lat
.
neighbors
()[
0
]]
=
-
3
sys
.
attach_lead
(
lead
)
sys
=
sys
.
finalized
()
ldos
=
kwant
.
solvers
.
default
.
ldos
(
sys
,
energy
=
0
)
# Due to the letters having different overall thickness, the LDOS is larger
# in some letters, which makes them have visually different colors. We
# adjust this by normalizing each letter to its maximum.
def
normalize_data
(
data
):
sums
=
[]
for
letter
in
letters
:
letter_data
=
data
[:,
slice
(
*
letter
)]
letter_data
=
letter_data
[
np
.
nonzero
(
letter_data
)]
sums
.
append
(
np
.
max
(
letter_data
))
weights
=
np
.
zeros
(
data
.
shape
[
1
])
for
i
,
letter
in
enumerate
(
letters
):
weights
[
slice
(
*
letter
)]
=
1
/
sums
[
i
]
for
i
,
gap
in
enumerate
(
gaps
):
weights
[
slice
(
*
gap
)]
=
np
.
linspace
(
1
/
sums
[
i
],
1
/
sums
[
i
+
1
],
gap
[
1
]
-
gap
[
0
])
new_data
=
data
*
weights
.
reshape
(
1
,
-
1
)
new_data
/=
np
.
max
(
new_data
)
return
new_data
# Here we apply a nonlinear transformation to LDOS to ensure that the
# result is not too empty or not too dark.
out
=
np
.
zeros
(
textpos
.
shape
)
for
i
,
rho
in
enumerate
(
ldos
**
.
2
):
x1
,
y1
=
sys
.
site
(
i
).
tag
out
[
x1
,
y1
]
=
rho
out
=
normalize_data
(
out
)
# We use the original text data as a transparency mask for anti-aliasing.
out
=
matplotlib
.
cm
.
PuBu
(
out
,
bytes
=
True
)
out
[:,
:,
3
]
=
255
*
geometry
scipy
.
misc
.
imsave
(
'
logo.png
'
,
out
)
if
__name__
==
'
__main__
'
:
main
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment