# 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](/terms-definition.md#valueobject) | kinetic rate parameters for forward (F) and reverse (R) reactions |
| ER0, ER1...                | [valueObject](/terms-definition.md#valueobject) | exponent reaction order parameter of reactant 1, 2...             |
| EP0, EP1...                | [valueObject](/terms-definition.md#valueobject) | exponent reaction order parameter of product 1, 2...              |
| KFORWARD, KREVERSE         | [valueObject](/terms-definition.md#valueobject) | forward and reverse reaction K value                              |
| RATEFORWARD, RATEREVERSE   | [valueObject](/terms-definition.md#valueobject) | forward and reverse reaction rate                                 |
| KFORWARDKRCF, KREVERSEKRCF | [valueObject](/terms-definition.md#valueobject) |                                                                   |
| RATE                       | [valueObject](/terms-definition.md#valueobject) | reaction rate                                                     |
| EXTENT                     | [valueObject](/terms-definition.md#valueobject) | reaction extent                                                   |
| SUMEXTENTS                 | [valueObject](/terms-definition.md#valueobject) | sum of reaction extents                                           |
| CONVERSION                 | [valueObject](/terms-definition.md#valueobject) | reaction conversion                                               |
| KEQ                        | [valueObject](/terms-definition.md#valueobject) | calculated equilibrium constant                                   |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://devdocs.olisystems.com/kinetic-calculation-outputs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
