# Interest Rate Curve

Port Finance uses Aave's interest rate model where the rate is determined by the utilization of the protocol. It employs a two segment interest rate model, where the second slope is steeper than the first to incentivize more depositing when utilization ratio is high.

Mathematically, we use the following interest rate model:

$$
U < U\_{optimal}: R\_{curr} = R\_{0}  + \frac{U\_{t}}{U\_{optimal}} R\_{slope1}
$$

$$
U \geq U\_{optimal}: R\_{t} = R\_{0} + R\_{slope1} + \frac{U\_{t} - U\_{optimal}}{1 - U\_{optimal}} R\_{slope2}
$$

When U < U Optimal, the rate increases slowly with utilization.

When U >= U Optimal the borrow interest rate increases sharply to incentivizes more deposit and avoid liquidity risk.


---

# 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://docs.port.finance/port-finance-variable-rate-lending/interest-rate-curve.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.
