-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
368 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41" | ||
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" | ||
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" | ||
|
||
[compat] | ||
Documenter = "0.24" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Continuous Dynamics | ||
|
||
```@meta | ||
CurrentModule = RobotDynamics | ||
``` | ||
|
||
This page provides the API for continuous dynamics models. | ||
|
||
```@contents | ||
Pages = ["continuous.md"] | ||
Depth = 3 | ||
``` | ||
|
||
## Continuous Dynamics type | ||
```@docs | ||
ContinuousDynamics | ||
``` | ||
|
||
## Methods on continuous dynamics types | ||
```@docs | ||
dynamics | ||
dynamics! | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Discrete Dynamics | ||
|
||
```@meta | ||
CurrentModule = RobotDynamics | ||
``` | ||
|
||
This page provides the API for discrete dynamics models. | ||
|
||
```@contents | ||
Pages = ["discrete.md"] | ||
Depth = 3 | ||
``` | ||
|
||
## Discrete Dynamics type | ||
```@docs | ||
DiscreteDynamics | ||
``` | ||
|
||
## Methods for Discrete Dynamics models | ||
```@docs | ||
discrete_dynamics | ||
discrete_dynamics! | ||
dynamics_error | ||
dynamics_error! | ||
dynamics_error_jacobian! | ||
propagate_dynamics! | ||
``` | ||
|
||
## Discretizing Continuous Models | ||
|
||
```@docs | ||
DiscretizedDynamics | ||
QuadratureRule | ||
Explicit | ||
Implicit | ||
``` | ||
|
||
## Implemented Integrators | ||
### Explicit | ||
```@docs | ||
Euler | ||
RK3 | ||
RK4 | ||
``` | ||
|
||
### Implicit | ||
```@docs | ||
ImplicitMidpoint | ||
``` | ||
|
||
### Interal API | ||
```@docs | ||
ADVector | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# `AbstractFunction` API | ||
```@meta | ||
CurrentModule = RobotDynamics | ||
``` | ||
|
||
RobotDynamics sets up a unified framework for evaluating functions accepting a | ||
state and control vector as inputs, not just dynamics functions. This can be used | ||
by downstream packages to define functions such as cost functions or constraints. | ||
This page details the API behind this abstraction, which is used quite heavily | ||
to set up the functionality for defining dynamics models. This should provide the | ||
insight into the internal workings of the package. | ||
|
||
## The `AbstractFunction` Type | ||
```@docs | ||
AbstractFunction | ||
dims | ||
input_dim | ||
``` | ||
|
||
## Traits on `AbstractFunction` | ||
```@docs | ||
FunctionSignature | ||
DiffMethod | ||
FunctionInputs | ||
functioninputs | ||
``` |
Oops, something went wrong.