|
29 | 29 | ############################################################################### |
30 | 30 |
|
31 | 31 | """ |
32 | | -This is the main executable script for CanTherm, a tool for computing chemical |
| 32 | +This is the main executable script for Arkane, a tool for computing chemical |
33 | 33 | reaction rates and other properties used in detailed kinetics models using |
34 | | -various methodologies and theories. To run CanTherm, use the command :: |
| 34 | +various methodologies and theories. To run Arkane, use the command :: |
35 | 35 |
|
36 | | - $ python cantherm.py FILE |
| 36 | + $ python arkane.py FILE |
37 | 37 |
|
38 | | -where ``FILE`` is the path to a CanTherm input file describing the job to |
39 | | -execute. CanTherm will run the specified job, writing the output to |
40 | | -``output.py`` and a log to both the console and to ``cantherm.log``, with both |
| 38 | +where ``FILE`` is the path to an Arkane input file describing the job to |
| 39 | +execute. Arkane will run the specified job, writing the output to |
| 40 | +``output.py`` and a log to both the console and to ``Arkane.log``, with both |
41 | 41 | files appearing in the same directory as the input file. Some additional |
42 | 42 | command-line arguments are available; run the command :: |
43 | 43 |
|
44 | | - $ python cantherm.py -h |
| 44 | + $ python arkane.py -h |
45 | 45 |
|
46 | 46 | for more information. |
47 | 47 | """ |
48 | 48 |
|
49 | 49 | import os |
50 | 50 | import logging |
51 | 51 |
|
52 | | -from rmgpy.cantherm.main import * |
| 52 | +from arkane.main import * |
53 | 53 |
|
54 | | -cantherm = CanTherm() |
| 54 | +arkane = Arkane() |
55 | 55 |
|
56 | 56 | # Parse and validate the command-line arguments |
57 | | -cantherm.parseCommandLineArguments() |
| 57 | +arkane.parseCommandLineArguments() |
58 | 58 |
|
59 | 59 | # Execute the job |
60 | | -cantherm.execute() |
| 60 | +arkane.execute() |
61 | 61 |
|
62 | 62 | try: |
63 | 63 | import psutil |
|
0 commit comments