Skip to content
Snippets Groups Projects
Commit 56da4121 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

slight changes

parent d3f9ac0f
No related branches found
No related tags found
No related merge requests found
...@@ -83,10 +83,11 @@ where it improves legibility. Consult the source files for more information. ...@@ -83,10 +83,11 @@ where it improves legibility. Consult the source files for more information.
A drum is described by a set of (static) parameters (stiffness, mass, x-y position, etc), A drum is described by a set of (static) parameters (stiffness, mass, x-y position, etc),
which are to be stored in a container of type `params_t`. The variables (displacement, velocity, which are to be stored in a container of type `params_t`. The variables (displacement, velocity,
electrode charges, etc.) are stored in a container of type `vars_t`. Example classes for electrode charges, etc.) are stored in a container of type `vars_t`. Example classes for
these two types are included in the lib folder. However, these containers likely need to these two types are `lib/drum_parameters.hpp` and `lib/drum_variables.hpp`.
be adapted to the situation at hand. When time evolving, the stepper will use the container of However, these containers likely need to be adapted to the situation at hand.
When time evolving, the stepper will use the container of
type `sbuffer_t` to store its intermediate results. Note that the default constructor of type `sbuffer_t` to store its intermediate results. Note that the default constructor of
this class is `delete`d. It should be constructed from an object of type `params_t`. this class is `delete`'d. It should be constructed from an object of type `params_t`.
### Interface template type `Force` (`force.hpp`), force functional ### Interface template type `Force` (`force.hpp`), force functional
1. Template arguments 1. Template arguments
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment