@@ -18,17 +18,30 @@ module ReactionMechanismSimulator
18
18
function __init__ ()
19
19
copy! (Chem,pyimport_conda (" rdkit.Chem" ," rdkit" ," rmg" ))
20
20
copy! (Desc,pyimport_conda (" rdkit.Chem.Descriptors" ," rdkit" ," rmg" ))
21
- copy! (molecule,pyimport_conda (" molecule.molecule" ," rmgmolecule" ," hwpang" ))
21
+ try
22
+ copy! (molecule,pyimport (" rmgpy.molecule" ))
23
+ copy! (chemkin,pyimport (" rmgpy.chemkin" ))
24
+ copy! (species,pyimport (" rmgpy.species" ))
25
+ copy! (reaction,pyimport (" rmgpy.reaction" ))
26
+ copy! (nasa,pyimport (" rmgpy.thermo.nasa" ))
27
+ copy! (wilhoit,pyimport (" rmgpy.thermo.wilhoit" ))
28
+ copy! (arrhenius,pyimport (" rmgpy.kinetics.arrhenius" ))
29
+ copy! (falloff,pyimport (" rmgpy.kinetics.falloff" ))
30
+ copy! (chebyshev,pyimport (" rmgpy.kinetics.chebyshev" ))
31
+ copy! (solvation,pyimport (" rmgpy.data.solvation" ))
32
+ catch e
33
+ copy! (molecule,pyimport_conda (" molecule.molecule" ," rmgmolecule" ," hwpang" ))
34
+ copy! (chemkin,pyimport_conda (" molecule.chemkin" ," rmgmolecule" ," hwpang" ))
35
+ copy! (species,pyimport_conda (" molecule.species" ," rmgmolecule" ," hwpang" ))
36
+ copy! (reaction,pyimport_conda (" molecule.reaction" ," rmgmolecule" ," hwpang" ))
37
+ copy! (nasa,pyimport_conda (" molecule.thermo.nasa" ," rmgmolecule" ," hwpang" ))
38
+ copy! (wilhoit,pyimport_conda (" molecule.thermo.wilhoit" ," rmgmolecule" ," hwpang" ))
39
+ copy! (arrhenius,pyimport_conda (" molecule.kinetics.arrhenius" ," rmgmolecule" ," hwpang" ))
40
+ copy! (falloff,pyimport_conda (" molecule.kinetics.falloff" ," rmgmolecule" ," hwpang" ))
41
+ copy! (chebyshev,pyimport_conda (" molecule.kinetics.chebyshev" ," rmgmolecule" ," hwpang" ))
42
+ copy! (solvation,pyimport_conda (" molecule.data.solvation" ," rmgmolecule" ," hwpang" ))
43
+ end
22
44
copy! (pydot,pyimport_conda (" pydot" ," pydot" ))
23
- copy! (chemkin,pyimport_conda (" molecule.chemkin" ," rmgmolecule" ," hwpang" ))
24
- copy! (species,pyimport_conda (" molecule.species" ," rmgmolecule" ," hwpang" ))
25
- copy! (reaction,pyimport_conda (" molecule.reaction" ," rmgmolecule" ," hwpang" ))
26
- copy! (nasa,pyimport_conda (" molecule.thermo.nasa" ," rmgmolecule" ," hwpang" ))
27
- copy! (wilhoit,pyimport_conda (" molecule.thermo.wilhoit" ," rmgmolecule" ," hwpang" ))
28
- copy! (arrhenius,pyimport_conda (" molecule.kinetics.arrhenius" ," rmgmolecule" ," hwpang" ))
29
- copy! (falloff,pyimport_conda (" molecule.kinetics.falloff" ," rmgmolecule" ," hwpang" ))
30
- copy! (chebyshev,pyimport_conda (" molecule.kinetics.chebyshev" ," rmgmolecule" ," hwpang" ))
31
- copy! (solvation,pyimport_conda (" molecule.data.solvation" ," rmgmolecule" ," hwpang" ))
32
45
copy! (os,pyimport_conda (" os" ," os" ))
33
46
end
34
47
include (" Constants.jl" )
0 commit comments