Skip to content

Instantly share code, notes, and snippets.

@smaret
Last active November 5, 2020 12:45
Show Gist options
  • Save smaret/ac9923474149c07dc7f8ee92dbd11d37 to your computer and use it in GitHub Desktop.
Save smaret/ac9923474149c07dc7f8ee92dbd11d37 to your computer and use it in GitHub Desktop.
Astrochem issue #52
from astrochem.wrapper import *
import numpy as np
p = phys()
initial_abundances = {
"H2": 0.5,
"He": 0.14,
"N": 2.14e-5,
"O": 1.76e-4,
"C(+)": 7.30e-5,
"S(+)": 8.00e-8,
"Si(+)": 8.00e-9,
"Fe(+)": 3.00e-9,
"Na(+)": 2.00e-9,
"Mg(+)": 7.00e-9,
"P(+)": 2.00e-10,
"Cl(+)": 1.00e-9,
"F": 6.68e-9,
"e(-)": 7.31012e-5
}
c = cell(av=20, nh=1e3, tgas=10, tdust=10)
s = solver(c, "osu2009.chm", p , 1e-15, 1e-6, initial_abundances, 1e3, 0)
time = np.logspace(-6, 7, 128)
for ti in time:
abundances = s.solve(ti)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment