Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RBComb simulation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pascal Engeler
RBComb simulation
Commits
13cfc008
Commit
13cfc008
authored
5 years ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Added driver readme
parent
56da4121
Branches
master
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+40
-6
40 additions, 6 deletions
README.md
with
40 additions
and
6 deletions
README.md
+
40
−
6
View file @
13cfc008
...
...
@@ -9,7 +9,7 @@ not need to be adapted for a new situation are found in the `lib` folder. They a
described in the following. Note that qualifiers, references and the like are discarded
where it improves legibility. Consult the source files for more information.
### Template Type `Vec2` (
`
vec2.hpp
`
), 2-vector utility class
### Template Type `Vec2` (vec2.hpp), 2-vector utility class
1.
Template arguments
-
`value_t`
: type of vector entries
2.
Members
...
...
@@ -46,7 +46,7 @@ where it improves legibility. Consult the source files for more information.
-
`[]`
with
`std::size_t`
-
`<<`
with
`std::ostream`
### Type `Diagonalizer` (
`
diagonalizer.hpp
`
), class to diagonalize symmetric Matrices
### Type `Diagonalizer` (diagonalizer.hpp), class to diagonalize symmetric Matrices
1.
Member functions
-
`std::vector<double> ev(std::vector<double> mat, size_t N)`
-
returns eigenvalues of the symmetric matrix mat of linear size N
...
...
@@ -57,7 +57,7 @@ where it improves legibility. Consult the source files for more information.
2.
Further developments
-
Only finding eigenvectors and -values in a certain range may be added later on
### Template Type `Drum` (
`
drum.hpp
`
), represents a single drum top resonator
### Template Type `Drum` (drum.hpp), represents a single drum top resonator
1.
Template arguments
-
`value_t`
: Scalar type
-
`params_t`
: Drum parameters container type
...
...
@@ -88,8 +88,11 @@ 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
this class is
`delete`
'd. It should be constructed from an object of type
`params_t`
.
5.
Further developments
Abstract interfaces for
`params_t`
and
`vars_t`
could be added, but they would
be trivial.
### Interface template type `Force` (
`
force.hpp
`
), force functional
### Interface template type `Force` (force.hpp), force functional
1.
Template arguments
-
`value_t`
: Scalar type
-
`params_t`
: Drum parameters type
...
...
@@ -101,13 +104,44 @@ this class is `delete`'d. It should be constructed from an object of type `param
3.
Description
This interface is a guide to complete implementation of a force functional. Any force
functional should derive from this class, but the child type should then be used in
order to avoid the vtable penalty. The type
`drum_t`
is a
`Drum`
with the given
order to avoid the vtable penalty.
The type
`drum_t`
is a
`Drum`
with the given
template arguments. Typically, this functional would make heavy use of the
`Drum`
access members
`get_parameters()`
and
`get_variables()`
. The
`time`
argument of the
functional exists to fit special cases as well. The file
`include/force_simple.hpp`
showcases how a real force functional could be written.
### Template Type `Rk4Stepper` (`rk4_stepper.hpp`), performs timesteps using rk4 scheme
### Interface template type `Driver` (driver.hpp), calculate drive of drums
1.
Template arguments
-
`value_t`
: Scalar type
-
`drum_t`
: Drum type
2.
Virtual functions
-
`void precompute(value_t t_end, value_t dt, std::vector<drum_t> drum_vec)`
-
Called once at begin of
`system`
lifetime
-
`void step(value_t dt)`
-
Move in time by
`dt`
-
`value_t operator()(size_t drum_index)`
-
Returns drive of drum
`drum_index`
at current time
3.
Description
This interface is a guide to complete implementation of a drive calculation class. Any drive
class should derive from this class, but the child type should then be used in
order to avoid the vtable penalty.
The purpose of this class is to set the drive of each drum at specific times.
In the
`precompute`
function, this class is passed all information it could need about
the system. Hence it can in principle precompute all values for all drums and all times
of the simulation.
The member
`step`
is called to inform the
`Driver`
that time is advanced by the passed argument.
Note that an rk4 scheme advances time in steps of
`dt/2`
.
The functional should return the current drive on the drum with index passed as argument.
An example implementation of a
`Driver`
is shown in
`include/driver_simple.hpp`
.
### Template Type `Rk4Stepper` (rk4_stepper.hpp), performs timesteps using rk4 scheme
1.
Template arguments
-
`value_t`
: Scalar type
-
`params_t`
: Drum parameters container type
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment