# Calibrating the PP system

Calibrating the PP system is a excelent manner to suit the performance evaluation to your proposed experience.\
\
In order to calibrate it, you'll need to colect the PTW and Acc time for the slowest and fastest vehicle you wish to compare, and for that you'll need to call an export to collect the necessary data to fill the chaserconfig.lua PP profile, and you can do so by creating a lua resource and paste the following code:<br>

```lua
local chaser = exports['legacydmc_chaser']

RegisterCommand("getptw", function()
    if chaser:chaser_getloadstatus() then
        chaser:chaser_getengineptwratio(chaser:chaser_getvehname(),false,0,true,false)
    end
end, false)

RegisterCommand("getacctime", function()
    if chaser:chaser_getloadstatus() then
        chaser:chaser_calcacc(chaser:chaser_getvehname(),false,0,true,false)
    end
end, false)

```

Then, inside a car type the `"getptw"` and `"getacctime"` command and you'll see that in the F8 console, it will give you the necessary information to fill in the chaserconfig.lua PP profile.

<figure><img src="/files/3QnMv8kEey3HP6dIZhQ4" alt=""><figcaption></figcaption></figure>

Now, go into our tutorial about the "chaserconfig.lua" file to learn how to properly use the acquired data!

{% content-ref url="/pages/4JEPgO4i3CZiipaeuzVz" %}
[chaserconfig.lua](/chaser/the-config-folder/chaserconfig.lua.md)
{% endcontent-ref %}


---

# 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://legacydmc.gitbook.io/chaser/fundamentals/calibrating-the-pp-system.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.
