Skip to content

Commit d81bd85

Browse files
authored
Merge pull request #51 from avcopan/main
Fix: 1 bar standard pressure for ThermP entropy
2 parents f24e797 + db24a12 commit d81bd85

12 files changed

Lines changed: 59 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,4 @@ build/
121121
# Log files
122122
*.log
123123
.automech/
124+
.vscode/

pixi.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ extend-ignore = [
109109
"D416", # Section name should end with a colon
110110
"N806", # Variable in function should be lowercase
111111
"C901", # Too complex
112+
"RUF022", # Require __all__ to be sorted
112113
]
113114

114115
[tool.mypy]

src/automech-toolbox/.recipe/recipe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: automech-toolbox
3-
version: "2024.7.18"
3+
version: "2025.4.11"
44

55
source:
66
path: .
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
Natural log of the partition function, its derivatives, entropy, and thermal capacity:
2+
T, K C5H7
3+
Z_0 Z_1 Z_2 S, cal/mol/K C, cal/mol/K
4+
200.000 75.222500 0.03193550 -1.074350e-04
5+
300.000 78.004300 0.02468860 -4.720640e-05
6+
400.000 80.284200 0.02128020 -2.454030e-05
7+
500.000 82.307800 0.01933990 -1.555400e-05
8+
600.000 84.172000 0.01800990 -1.152250e-05
9+
700.000 85.919400 0.01697430 -9.381850e-06
10+
800.000 87.572400 0.01610730 -8.045160e-06
11+
900.000 89.144600 0.01535230 -7.103320e-06
12+
1000.000 90.645600 0.01467930 -6.385250e-06
13+
1100.000 92.082600 0.01407050 -5.809250e-06
14+
1200.000 93.461400 0.01351420 -5.330950e-06
15+
1300.000 94.786900 0.01300200 -4.923670e-06
16+
1400.000 96.063100 0.01252770 -4.570220e-06
17+
1500.000 97.293500 0.01208660 -4.258950e-06
18+
1600.000 98.481400 0.01167480 -3.981670e-06
19+
1700.000 99.629400 0.01128930 -3.732450e-06
20+
1800.000 100.740000 0.01092750 -3.506850e-06
21+
1900.000 101.816000 0.01058720 -3.301490e-06
22+
2000.000 102.858000 0.01026660 -3.113690e-06
23+
2100.000 103.870000 0.00996399 -2.941330e-06
24+
2200.000 104.851000 0.00967790 -2.782620e-06
25+
2300.000 105.806000 0.00940706 -2.636100e-06
26+
2400.000 106.733000 0.00915031 -2.500520e-06
27+
2500.000 107.636000 0.00890663 -2.374800e-06
28+
2600.000 108.515000 0.00867505 -2.258020e-06
29+
2700.000 109.371000 0.00845475 -2.149350e-06
30+
2800.000 110.206000 0.00824494 -2.048070e-06
31+
2900.000 111.021000 0.00804491 -1.953530e-06
32+
3000.000 111.816000 0.00785403 -1.865170e-06
33+
298.200 77.959800 0.02477410 -4.784940e-05
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
1, 0
2+
Nwell, Nprod
3+
29
4+
nt
5+
86.239 0.0
6+
C5H7
7+
C 5
8+
H 7
9+
**
10+
1000.0
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
1, 0 <--- number of wells and products (followed by variable names)
2+
Nwell, Nprod
3+
29 <--- number of temperatures (followed by variable name)
4+
nt
5+
86.239 0.0 <--- heat of formation, reference temperature (0 K)
6+
C5H7 <--- name and formula
7+
C 5
8+
H 7
9+
**
10+
1000.0 <--- T_mid /break temperature for fit

src/automech-toolbox/ThermP/src/Thermp.f

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ program thermp
4242
tm = -dtderiv*dkbltz/cautoerg
4343
tmin = dtderiv*dkbltz/cautoerg
4444
t0 = 0.0d0
45-
pstp = 760.0d0/pconv
45+
c AVC: PAC99 input assumes 750 mmHg (1 bar) standard pressure
46+
pstp = 750.0d0/pconv
4647
OPEN (UNIT=18,ACCESS='SEQUENTIAL',FORM='FORMATTED',
4748
& STATUS='unknown',FILE='thermp.out')
4849
OPEN (UNIT=25,ACCESS='SEQUENTIAL',FORM='FORMATTED',
-1.57 MB
Binary file not shown.
-1.16 MB
Binary file not shown.

0 commit comments

Comments
 (0)