Spike Tests using throttle

Hello,
I’m designing a spike test using throttle but would like to pass a double value rather than an int to the target TPS:

This the scenario setup:

setUp(scn.inject(constantUsersPerSec(0.1) during (15 minutes)).throttle(reachRps(1) in (5 minutes)
  ,holdFor(2 minutes)
  ,jumpToRps(2)
  ,holdFor(10 seconds)
  ,jumpToRps(1)
  ,holdFor(2 minutes)
  ,jumpToRps(2)
  ,holdFor(5 seconds)
  ,jumpToRps(1)
  ,holdFor(5 minutes))).protocols(httpProtocol)

Ideally I would like to return to 0.1 instead of 1 to get back to normal load levels.

Is there a better way of doing this type of test?

Many thanks

That’s not possible.