-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplotContour.py
205 lines (185 loc) · 4.63 KB
/
plotContour.py
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
import matplotlib.pyplot as pl
from matplotlib import cm, ticker
from decimal import Decimal
import numpy as np
from matplotlib.colors import LogNorm
from matplotlib.ticker import FormatStrFormatter
from matplotlib import rcParams, use
use("agg")
rcParams.update({"figure.autolayout": True})
def sciFormat(num):
num = "%.1E" % Decimal(str(num))
return num
def plot_tri_contour(
solutions,
x,
y,
xlabel,
ylabel,
bar_label,
title,
filename=None,
colormap="plasma",
levels=None,
limit_line=0.2,
decimals=1,
):
fig = pl.figure(figsize=(8, 6.4))
ax = fig.add_subplot(1, 1, 1)
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
pl.title(title)
c = ax.tricontourf(x, y, solutions, levels=levels, cmap=colormap)
l = ax.tricontour(x, y, solutions, colors="black", levels=[limit_line])
ax.clabel(l, l.levels, inline=True, fontsize=10, fmt=sciFormat)
fig.colorbar(
c,
ax=ax,
label=bar_label,
format=ticker.FormatStrFormatter(f"%.{decimals}f"),
)
if filename is not None:
fig.savefig(filename)
else:
fig.savefig(title + ".png")
pl.close()
def plot_tri_contour_log(
solutions,
x,
y,
xlabel,
ylabel,
bar_label,
title,
filename=None,
limit_line=1e18,
colormap="plasma",
levels=None,
decimals=1,
):
print("beep")
fig = pl.figure(figsize=(8, 6.4))
ax = fig.add_subplot(1, 1, 1)
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
pl.title(title)
c = ax.tricontourf(
x, y, solutions, levels=levels, norm=LogNorm(), cmap=colormap
)
l = ax.tricontour(x, y, solutions, colors="black", levels=[limit_line])
ax.clabel(l, l.levels, inline=True, fontsize=10, fmt=sciFormat)
fig.colorbar(
c,
ax=ax,
label=bar_label,
format=ticker.FormatStrFormatter(f"%.{decimals}f"),
)
if filename is not None:
fig.savefig(filename)
else:
fig.savefig(title + ".png")
pl.close()
def plotContour(
solutions,
x,
y,
barLabel,
xlabel,
ylabel,
title,
colormap="plasma",
levels=10,
filename=None,
decimals=1,
): # plot 2d solutions
# plot it
fig = pl.figure()
ax = fig.add_subplot(1, 1, 1)
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
pl.title(title)
levels = np.linspace(np.min(solutions), np.max(solutions), levels)
print(levels)
c = ax.contourf(x, y, solutions, levels, cmap=colormap)
cbar = fig.colorbar(c, ax=ax, label=barLabel)
cbar.ax.yaxis.set_major_formatter(FormatStrFormatter(f"%.{decimals}f"))
if filename is not None:
fig.savefig(filename)
else:
fig.savefig(title + ".png")
pl.close()
def plotContourLog(
solutions,
x,
y,
barLabel,
xlabel,
ylabel,
title,
levels=None,
colormap="plasma",
filename=None,
decimals=1,
): # plot 2d solutions
# plot it
fig = pl.figure(figsize=(5, 4))
ax = fig.add_subplot(1, 1, 1)
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
pl.title(title)
c = ax.contourf(
x, y, solutions, norm=LogNorm(), levels=levels, cmap=colormap
)
fig.colorbar(
c,
ax=ax,
label=barLabel,
format=ticker.FormatStrFormatter(f"%.{decimals}f"),
)
if filename is not None:
fig.savefig(filename + ".png")
else:
fig.savefig(title + ".png")
pl.close()
def plotContourLinesLog(
solutions, x, y, barLabel, xlabel, ylabel, title, decimals=1
):
# plot it
fig = pl.figure(figsize=(5, 4))
ax = fig.add_subplot(1, 1, 1)
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
pl.title(title)
c = ax.contourf(x, y, solutions, locator=ticker.LogLocator())
l = ax.contour(
x, y, solutions, colors="black", locator=ticker.LogLocator()
)
ax.clabel(l, l.levels, inline=True, fontsize=10, fmt=sciFormat)
fig.colorbar(
c,
ax=ax,
label=barLabel,
format=ticker.FormatStrFormatter(f"%.{decimals}f"),
)
fig.savefig(title + ".png")
pl.close()
def plotContourLines(
solutions, x, y, barLabel, xlabel, ylabel, title, decimals
):
# plot it
fig = pl.figure(figsize=(5, 4))
ax = fig.add_subplot(1, 1, 1)
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
pl.title(title)
c = ax.contourf(x, y, solutions)
l = ax.contour(x, y, solutions, colors="black")
ax.clabel(l, l.levels, inline=True, fontsize=10, fmt=sciFormat)
fig.colorbar(
c,
ax=ax,
label=barLabel,
format=ticker.FormatStrFormatter(f"%.{decimals}f"),
)
fig.savefig(title + ".png")
pl.close()