# Kinetic calculation outputs

Kinetic calculation outputs are listed as an array of objects in **result.kineticOutputs**, for each kinetic reaction defined in the chemistry model.

```javascript
{
"result": {
    ...<snip>...
    "kineticOutputs": [
        {
            "reaction": "2NH3AQ+CO2AQ=UREAAQ+H2O",
            "AF": {
                "value": 0.0,
                "unit": ""
            },
            "BF": {
                "value": 0.0,
                "unit": ""
            },
            "AR": {
                "value": 1.2e-10,
                "unit": ""
            },
            "BR": {
                "value": 3480.78,
                "unit": ""
            },
            "ERPH": {
                "value": 0.0,
                "unit": ""
            },
            "EPPH": {
                "value": 0.0,
                "unit": ""
            },
            "ER0": {
                "value": 2.0,
                "unit": ""
            },
            "ER1": {
                "value": 1.0,
                "unit": ""
            },
            "EP0": {
                "value": 1.0,
                "unit": ""
            },
            "KFORWARD": {
                "value": 0.0,
                "unit": "mol/hr m3"
            },
            "KREVERSE": {
                "value": 0.0,
                "unit": "mol/hr m3"
            },
            "RATEFORWARD": {
                "value": 0.0,
                "unit": "mol/hr hr"
            },
            "RATEREVERSE": {
                "value": 0.0,
                "unit": "mol/hr hr"
            },
            "KFORWARDKRCF": {
                "value": 0.0,
                "unit": "mol/hr m3"
            },
            "KREVERSEKRCF": {
                "value": 0.0,
                "unit": "mol/hr m3"
            },
            "RATE": {
                "value": 0.00011907436930898546,
                "unit": "mol/hr hr"
            },
            "EXTENT": {
                "value": 0.0,
                "unit": "mol/hr"
            },
            "SUMEXTENTS": {
                "value": 0.0,
                "unit": "mol/hr"
            },
            "CONVERSION": {
                "value": 0.0,
                "unit": ""
            },
            "KEQ": {
                "value": 6.568856352382969,
                "unit": ""
            }
        },
        {
            "reaction": "NH3AQ+H2O=NH4ION+OHION",
            ...<snip>...
        }
    ]
    }
}
```

| result.kineticOutputs\[i]  | type                                                                       | description                                                       |
| -------------------------- | -------------------------------------------------------------------------- | ----------------------------------------------------------------- |
| reaction                   | string                                                                     | kinetic reaction expression                                       |
| AF, BF, AR, BR, ERPH, EPPH | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) | kinetic rate parameters for forward (F) and reverse (R) reactions |
| ER0, ER1...                | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) | exponent reaction order parameter of reactant 1, 2...             |
| EP0, EP1...                | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) | exponent reaction order parameter of product 1, 2...              |
| KFORWARD, KREVERSE         | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) | forward and reverse reaction K value                              |
| RATEFORWARD, RATEREVERSE   | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) | forward and reverse reaction rate                                 |
| KFORWARDKRCF, KREVERSEKRCF | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) |                                                                   |
| RATE                       | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) | reaction rate                                                     |
| EXTENT                     | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) | reaction extent                                                   |
| SUMEXTENTS                 | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) | sum of reaction extents                                           |
| CONVERSION                 | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) | reaction conversion                                               |
| KEQ                        | [valueObject](https://devdocs.olisystems.com/terms-definition#valueobject) | calculated equilibrium constant                                   |
