-
-
Notifications
You must be signed in to change notification settings - Fork 235
Description
Is your feature request related to a problem? Please describe.
I have a function which needs an AbstractDiffEqInterpolation
. The interp
field of ODEsolution
is a InterpolationData <: AbstractDiffEqInterpolation
. However, the interpolations provided in SciMLBase
have u
and t
as fields, while InterpolationData
has timeseries
and ts
.
Describe the solution you’d like
I would like for every AbstractDiffEqInterpolation
to have the same field names for the timeseries and the times, as I think should be expected.
Additional context
I wanted to start working on a PR, but I noticed timeseries
and ts
are terms that appear also in the construction of the solution. Maybe it was done for consistency. If so, I would like to keep this consistency, maybe changing them to u, t
even there, considering they already are of uType
and tType
.