OdeHelpers Type

Static members

Static member Description

OdeHelpers.SolveFromTo(solution, from, to)

Full Usage: OdeHelpers.SolveFromTo(solution, from, to)

Parameters:
Returns: IEnumerable<SolutionPoint> New sequence of solution points

Extracts points with time between from and to points.

solution : IEnumerable<SolutionPoint>

Solution

from : float

Start time

to : float

Finish time

Returns: IEnumerable<SolutionPoint>

New sequence of solution points

OdeHelpers.SolveFromToStep(solution, from, to, step)

Full Usage: OdeHelpers.SolveFromToStep(solution, from, to, step)

Parameters:
    solution : IEnumerable<SolutionPoint> - Solution
    from : float - Start time
    to : float - Finish time
    step : float - Time step

Returns: IEnumerable<SolutionPoint> New sequence of solution points at i * step

Extracts points with time between from and to points and interpolates points with specified time step.

solution : IEnumerable<SolutionPoint>

Solution

from : float

Start time

to : float

Finish time

step : float

Time step

Returns: IEnumerable<SolutionPoint>

New sequence of solution points at i * step

OdeHelpers.SolveTo(solution, to)

Full Usage: OdeHelpers.SolveTo(solution, to)

Parameters:
Returns: IEnumerable<SolutionPoint> New sequence of solution points

Extracts points with time less than or equal to to

solution : IEnumerable<SolutionPoint>

Solution

to : float

Finish time

Returns: IEnumerable<SolutionPoint>

New sequence of solution points