forked from mieand/COelectroCATMAPfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTafelCu.mkm
49 lines (29 loc) · 1.13 KB
/
TafelCu.mkm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
scaler = 'ThermodynamicScaler'
rxn_expressions = [
'CO_g + *_p <-> CO_p',
'H2O_g + *_p <-> pe-OH_p -> OH_p + pe_g',
'CO_p + OH_p <-> CO-OH_p + *_p -> COOH_p + *_p',
'COOH_p <-> CO2_g + *_p + pe_g',
]
surface_names = ['Cu']
descriptor_names = ['temperature','voltage']
descriptor_ranges = [[298.15,298.15],[-1.0,1.4]]
resolution = [1,200]
beta = 0.5
species_definitions = {}
species_definitions['CO_g'] = {'pressure':1.72e-5}
species_definitions['H2O_g'] = {'pressure':1}
species_definitions['CO2_g'] = {'pressure':0}
species_definitions['pe_g'] = {'pressure':1E-13}
species_definitions['p'] = {'site_names': ['p'], 'total':1} # Pt sites
data_file ='CO_ox_Tafel.pkl'
input_file = 'CO_ox_Tafel.txt'
gas_thermo_mode = 'frozen_gas'
adsorbate_thermo_mode = 'frozen_adsorbate'
electrochemical_thermo_mode = 'simple_electrochemical'
scaling_constraint_dict = { # Scaling terms not needed since all free energies are explicitly written in the energies file
}
decimal_precision = 500
tolerance = 1e-200
max_rootfinding_iterations = 500
max_bisections = 50