# Math

C.H.A.S.E.R acceleration is given in G’s, and you can calculate an estimate of what a initial vehicle g’s would be by calculating the g force from a 0-60 acceleration using the time it took to reach 100 kmh, here’s an example:

```python
def calc_g_acc(time_seconds):
    speed_m_s = 100 * 1000 / 3600  # Convert speed from km/h to m/s
    return (speed_m_s / time_seconds) / 9.81
    
```

Or simply, you can reach a estimative by:&#x20;

$$
basegacc = 2.83 / time
$$

Where time is the 0-100kmh (0-62mph) time.\
\
Remember this is a estimative, since torque is affected by the wheel size, you might need to add or subctract from this base value.


---

# 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/extras/math.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.
