Physics runs at fixed intervals.

void FixedUpdate()
{
    rb.AddForce(
        Vector3.forward * force
    );
}

Typical pattern:

Update
→ read input

FixedUpdate
→ apply physics

The physics interval is available through:

Time.fixedDeltaTime