Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
epsilon_0 = 8.85418781762e-12 # C^2 * N^-1 * m^-2 | |
pi = 3.14159265359 | |
n_a = 6.02214129e+23 # mol^-1 | |
e = 1.602176565e-19 # C | |
k_b = 1.3806488e-23 # J K^-1 | |
t_abs = 298.15 # K | |
epsilon = 78.54*epsilon_0 # at 298.15 K | |
rho_0 = 0.99714 # kg * L^-1 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from matplotlib import pyplot as plt | |
dpi_res = 250 | |
npoints = 200 | |
figure = plt.figure(dpi= dpi_res) | |
ax = plt.axes() | |
# HA + H2O <<==>> H3O(+) + A(-) | |
# 2H2O <<==>> H3O(+) + HO(-) | |
pKa = 6.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import numpy as np | |
import scipy.stats as stats | |
import colormaps | |
import PySide | |
import pyqtgraph as pg | |
from pyqtgraph.Qt import QtGui, QtCore | |
from pyqtgraph import PlotWidget | |
app = QtGui.QApplication([]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Open documentation files contained in directory. | |
""" | |
import os | |
import webbrowser | |
index_found = False | |
def enter_node(current_dir, index_html_files): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import string | |
import numpy as np | |
import colormaps | |
# noinspection PyUnresolvedReferences | |
import PySide | |
import pyqtgraph as pg | |
from pyqtgraph.Qt import QtGui, QtCore | |
from scipy.integrate import ode |