class EnergyLandscape2d¶
- class deeptime.util.EnergyLandscape2d(x_meshgrid, y_meshgrid, energies, kbt)¶
Result of the
energy2d()
method.- Parameters:
x_meshgrid (ndarray) – (n_bins_x,)-shaped array with x coordinates for the energy landscape.
y_meshgrid (ndarray) – (n_bins_y,)-shaped array with y coordinates for the energy landscape.
energies (ndarray) – (n_bins_y, n_bins_x)-shaped array with the estimated energies.
kbt (float) – The value of \(k_BT\) in the desired energy unit.
See also
Methods
plot
([ax, levels, contourf_kws, cbar, ...])Plot estimated energy landscape directly.
- plot(ax=None, levels=100, contourf_kws=None, cbar=True, cbar_kws=None, cbar_ax=None)¶
Plot estimated energy landscape directly. See
deeptime.plots.plot_energy2d()
.