Skip to content

Commit 17c09e1

Browse files
committed
Import fragment module
1 parent 02b73d0 commit 17c09e1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/ReactionMechanismSimulator.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module ReactionMechanismSimulator
44
const Chem = PyNULL()
55
const Desc = PyNULL()
66
const molecule = PyNULL()
7+
const fragment = PyNULL()
78
const pydot = PyNULL()
89
const chemkin =PyNULL()
910
const species = PyNULL()
@@ -29,6 +30,7 @@ module ReactionMechanismSimulator
2930
copy!(falloff,pyimport("rmgpy.kinetics.falloff"))
3031
copy!(chebyshev,pyimport("rmgpy.kinetics.chebyshev"))
3132
copy!(solvation,pyimport("rmgpy.data.solvation"))
33+
copy!(fragment,pyimport("rmgpy.molecule.fragment"))
3234
catch e
3335
copy!(molecule,pyimport_conda("molecule.molecule","rmgmolecule","hwpang"))
3436
copy!(chemkin,pyimport_conda("molecule.chemkin","rmgmolecule","hwpang"))
@@ -40,6 +42,7 @@ module ReactionMechanismSimulator
4042
copy!(falloff,pyimport_conda("molecule.kinetics.falloff","rmgmolecule","hwpang"))
4143
copy!(chebyshev,pyimport_conda("molecule.kinetics.chebyshev","rmgmolecule","hwpang"))
4244
copy!(solvation,pyimport_conda("molecule.data.solvation","rmgmolecule","hwpang"))
45+
copy!(fragment,pyimport_conda("molecule.molecule.fragment","rmgmolecule","hwpang"))
4346
end
4447
copy!(pydot,pyimport_conda("pydot","pydot"))
4548
copy!(os,pyimport_conda("os","os"))

0 commit comments

Comments
 (0)