FoamFile
{
    version     2.0;
    format      binary;
    class       dictionary;
    location    "constant";
    object      rxnProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

// species stoichiometric coefficients for electrochemical reaction

// "e" is a required rxnSpecie
// coefficient of "e" is unsigned number of electrons transferred
// 
// H2 -2e + 0.5(O2) +2e --> H2O

// name   stoichCoeff

rxnSpecies
(
    H2   1   
    O2   0.5
    H2O  1 
    e    2
);

