WPILibC++ 2027.0.0-alpha-4
Loading...
Searching...
No Matches
dynamics_type.hpp
Go to the documentation of this file.
1// Copyright (c) Sleipnir contributors
2
3#pragma once
4
5#include <stdint.h>
6
7namespace slp {
8
9/// Enum describing a type of system dynamics constraints.
10enum class DynamicsType : uint8_t {
11 /// The dynamics are a function in the form dx/dt = f(t, x, u).
13 /// The dynamics are a function in the form xₖ₊₁ = f(t, xₖ, uₖ).
15};
16
17} // namespace slp
Definition expression_graph.hpp:11
DynamicsType
Enum describing a type of system dynamics constraints.
Definition dynamics_type.hpp:10
@ DISCRETE
The dynamics are a function in the form xₖ₊₁ = f(t, xₖ, uₖ).
Definition dynamics_type.hpp:14
@ EXPLICIT_ODE
The dynamics are a function in the form dx/dt = f(t, x, u).
Definition dynamics_type.hpp:12