Skip to content

Commit b1f50db

Browse files
authored
Merge pull request #2017 from ReactionMechanismGenerator/fixcatalysisexamples
Correct surfaceThermoPt111 library name in examples and documentation.
2 parents d976b85 + 56134db commit b1f50db

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

documentation/source/users/rmg/surfaces.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ This block should also contain the reference adatom binding energies
2525
Here is an example catalyst properties block for Pt(111)::
2626

2727
catalystProperties(
28-
bindingEnergies = {
29-
'H': (-2.479, 'eV/molecule'),
30-
'O': (-3.586, 'eV/molecule'),
31-
'C': (-6.750, 'eV/molecule'),
32-
'N': (-4.352, 'eV/molecule'),
28+
bindingEnergies = {
29+
'H': (-2.754, 'eV/molecule'),
30+
'O': (-3.811, 'eV/molecule'),
31+
'C': (-7.025, 'eV/molecule'),
32+
'N': (-4.632, 'eV/molecule'),
3333
},
34-
surfaceSiteDensity=(2.72e-9, 'mol/cm^2'),
34+
surfaceSiteDensity=(2.483e-9, 'mol/cm^2'),
3535
)
3636

3737

@@ -140,7 +140,7 @@ of the gas-phase precursor ([Goldsmith2017]_).
140140
Following is an example for how a thermo library for species adsorbed on platinum
141141
is provided in the input file database module::
142142

143-
thermoLibraries=['surfaceThermoPt']
143+
thermoLibraries=['surfaceThermoPt111']
144144
145145
This can be added along with other gas-phase reaction libraries for coupling
146146
of gas-phase and surface reactions.
@@ -257,10 +257,10 @@ Deviating from these values will result in adsorption energies being modified,
257257
even for species taken from the thermochemistry libraries::
258258

259259
bindingEnergies = { # default values for Pt(111)
260-
'H':(-2.479, 'eV/molecule'),
261-
'O':(-3.586, 'eV/molecule'),
262-
'C':(-6.750, 'eV/molecule'),
263-
'N':(-4.352, 'eV/molecule'),
260+
'H': (-2.754, 'eV/molecule'),
261+
'O': (-3.811, 'eV/molecule'),
262+
'C': (-7.025, 'eV/molecule'),
263+
'N': (-4.632, 'eV/molecule'),
264264
}
265265

266266

examples/rmg/catalysis/ch4_o2/input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Data sources
22
database(
3-
thermoLibraries=['surfaceThermoPt', 'primaryThermoLibrary', 'thermo_DFT_CCSDTF12_BAC','DFT_QCI_thermo'], # 'surfaceThermoPt' is the default. Thermo data is derived using bindingEnergies for other metals
3+
thermoLibraries=['surfaceThermoPt111', 'primaryThermoLibrary', 'thermo_DFT_CCSDTF12_BAC','DFT_QCI_thermo'], # 'surfaceThermoPt' is the default. Thermo data is derived using bindingEnergies for other metals
44
reactionLibraries = [('Surface/CPOX_Pt/Deutschmann2006', False)], # when Ni is used change the library to Surface/Deutschmann_Ni
55
seedMechanisms = [],
66
kineticsDepositories = ['training'],

examples/rmg/catalysis/methane_steam/input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Data sources
22
database(
3-
thermoLibraries=['surfaceThermoPt', 'primaryThermoLibrary', 'thermo_DFT_CCSDTF12_BAC'],
3+
thermoLibraries=['surfaceThermoPt111', 'primaryThermoLibrary', 'thermo_DFT_CCSDTF12_BAC'],
44
reactionLibraries = [('Surface/Deutschmann_Ni', True)], # when Pt is used change the library to Surface/CPOX_Pt/Deutschmann2006
55
seedMechanisms = [],
66
kineticsDepositories = ['training'],

rmgpy/data/thermo.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,6 +1374,7 @@ def set_delta_atomic_adsorption_energies(self, binding_energies=None):
13741374
Returns:
13751375
None, stores result in self.delta_atomic_adsorption_energy
13761376
"""
1377+
# If changing these, remember to update the example input files and documentation.
13771378
reference_binding_energies = {
13781379
'C': rmgpy.quantity.Energy(-7.025, 'eV/molecule'),
13791380
'H': rmgpy.quantity.Energy(-2.754, 'eV/molecule'),

0 commit comments

Comments
 (0)