RBComb Simulation Framework
This project aims at developing a framework that can be used to simulate any project that is to be undertaken on the RBComb platform. It is designed in modular fashion, such that it is flexible enough to adapt easily to any given situation.
Classes
The code is structured in an object oriented approach. The classes that likely will
not need to be adapted for a new situation are found in the lib
folder. They are
described in the following. Note that qualifiers, references and the like are discarded
where it improves legibility. Consult the source files for more information.
Vec2
(vec2.hpp), 2-vector utility class
- Template arguments
-
value_t
: type of vector entries
-
- Members
- Access
-
value_t x()
- returns x entry
-
value_t y()
- returns y entry
-
Vec2 normalized()
- returns normalized version of vector
-
value_t r()
- returns length
-
value_t phi()
- returns angle (
std::atan2
version of it)
- returns angle (
-
- Member functions
-
value_t r_wrt(Vec2)
- returns length with origin at argument
-
value_t phi_wrt(Vec2)
- returns angle with origin at argument
-
value_t norm()
- returns norm
-
value_t norm_sq()
- returns square of norm
-
- Modifiers
-
Vec2 normalize()
- normalizes the vector and returns it
-
Vec2 rotate(Vec2, value_t)
- rotates the vector and returns it
-
- Supported Operators, All of these work as one would expect
-
*
withVec2
(inner product) andvalue_t
-
/
withvalue_t
-
+, -
withVec2
- All versions of
op=
of the above -
[]
withstd::size_t
-
<<
withstd::ostream
-
- Access
Diagonalizer
(diagonalizer.hpp), class to diagonalize symmetric Matrices
- Member functions
-
std::vector<double> ev(std::vector<double> mat, size_t N)
- returns eigenvalues of the symmetric matrix mat of linear size N
- throws upon diagonalization failure
-
std::pair<std::vector<double>, std::vector<double> > evv(std::vector<double> mat, size_t N)
- returns pair of (eigenvalues, eigenvectors) of the symmetric matrix mat of size N
- throws upon diagonalization failure
-
- Further developments
- Only finding eigenvectors and -values in a certain range may be added later on
DrumParameters
(drum_parameters.hpp), contains data members characterizing the static state of a drum
DrumVariables
(drum_variables.hpp), contains data members characterizing the dynamic state of a drum
Drum
(drum.hpp), represents a single drum top resonator
- Template arguments
-
value_t
: Scalar type -
params_t
: Drum parameters container type -
vars_t
: Drum variables container type -
sbuffer_t
: Stepper buffer container type
-
- Access
-
params_t get_parameters()
- returns the parameters, const and reference versions implemented
-
vars_t get_variables()
- returns the variables, const and reference versions implemented
-
sbuffer_t get_sbuffer()
- returns the stepper buffer, const and reference versions implemented
-
- Modifiers
-
void set_coupling_0(value_t)
- Sets coupling 0
-
void set_coupling_1(value_t)
- Sets coupling 1
-
void set_coupling_2(value_t)
- Sets coupling 2
-
void set_drive(value_t)
- Sets central electrode coupling
-
- Description
- 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, electrode charges, etc.) are stored in a container of typevars_t
. Example classes for these two types arelib/drum_parameters.hpp
andlib/drum_variables.hpp
. However, these containers likely need to be adapted to the situation at hand. When time evolving, the stepper will use the container of typesbuffer_t
to store its intermediate results. Note that the default constructor of this class isdelete
'd. It should be constructed from an object of typeparams_t
.
- 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
- Further developments
- Abstract interfaces for
params_t
andvars_t
could be added, but they would be trivial.
- Abstract interfaces for
Force
(force.hpp), force functional
- Template arguments
-
value_t
: Scalar type -
params_t
: Drum parameters type -
vars_t
: Drum variables type -
buffer_t
: Stepper buffer type
-
- Virtual functions
-
value_t operator()(drum_t drum, drum_t n1, drum_t n2, drum_t n3, value_t time)
- Returns force on
drum
attime
, given its three neighboursn1
,n2
,n3
- Returns force on
-
- 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 aDrum
with the given template arguments. Typically, this functional would make heavy use of theDrum
access membersget_parameters()
andget_variables()
. Thetime
argument of the functional exists to fit special cases as well. The fileinclude/force_simple.hpp
showcases how a real force functional could be written.
Driver
(driver.hpp), calculate drive of drums
- Template arguments
-
value_t
: Scalar type -
drum_t
: Drum type
-
- Virtual functions
-
void precompute(value_t t_end, value_t dt, std::vector<drum_t> drum_vec)
- Called once at begin of
System
lifetime
- Called once at begin of
-
void step(value_t dt)
- Move in time by
dt
- Move in time by
-
value_t operator()(size_t drum_index)
- Returns drive of drum
drum_index
(wrtdrum_vec
) at current time
- Returns drive of drum
-
- Description
- This interface is a guide to complete implementation of a drive calculation class. Any driver 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 theDriver
that time is advanced by the passed argument. Note that an rk4 scheme advances time in steps ofdt/2
. - The functional should return the current drive on the drum with index passed as argument.
- An example implementation of a
Driver
is shown ininclude/driver_simple.hpp
.
Coupler
(coupler.hpp), calculate couplings between drums
- Template arguments
-
value_t
: Scalar type -
drum_t
: Drum type
-
- Virtual functions
-
void precompute(value_t t_end, value_t dt, std::vector<drum_t> drum_vec)
- Called once at begin of
System
lifetime
- Called once at begin of
-
void step(value_t dt)
- Move in time by
dt
- Move in time by
-
value_t operator()(size_t drum_index, size_t neighbour_index)
- Returns coupling between drums
drum_index
andneighbour_index
(wrtdrum_vec
) at current time
- Returns coupling between drums
-
- Description
-
This interface is a guide to complete implementation of a coupling calculation class. Any coupler 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 coupling of each neighbouring pair of drums 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 theCoupler
that time is advanced by the passed argument. Note that an rk4 scheme advances time in steps ofdt/2
. -
The functional should return the current coupling between the two drums with indices passed as arguments.
-
An example implementation of a
Coupler
is shown ininclude/coupler_simple.hpp
.
-
LatticeGenerator
(lattice_generator.hpp), generates drum lattices
- Template arguments
-
value_t
: Scalar type -
params_t
: Drum parameters type -
vars_t
: Drum variables type -
sbuffer_t
: Stepper buffer type
-
- Virtual functions
-
std::pair<std::vector<drum_t>, std::vector<int> > operator()(params_t)
- Takes a
params_t
- Returns a pair that characterizes the generated lattice
- a vector of drums
ds
- an adjacency vector of vectors
adj
, such thatds[i]
andds[adj[i][0]]
are neighbours
- a vector of drums
- All drums have the same
params_t
, except that theposition
members differ.
- Takes a
-
- Description
- An example child of the
LatticeGenerator
is shown in the fileinclude/rbcomb_generator.hpp
.
- An example child of the
- Further developments
- In the future, there may be another overload for the functional. For example, it could either take an
std::vector<params_t>
or an additional random number generator to construct the drums differently.
- In the future, there may be another overload for the functional. For example, it could either take an
- Dependents
- None
- Typical dependencies
Neighbour ordering convention
An important note is the convention of neighbour ordering. Each drum has neighbours 0 thru 3. For drums in different sublattices, these neighbours are:
- Sublattice 'A':
- 0,
adj[0]
: straight down - 1,
adj[1]
: top left - 2,
adj[2]
: top right
- 0,
- Sublattice 'B':
- 0,
adj[0]
: straight up - 1,
adj[1]
: bottom right - 2,
adj[2]
: bottom left Here adj[] signifies the adjacency list of the given drum. Similarly, the couplings t0 thru t2 in objects of typeparams_t
should also respect this ordering. More generally, whenever neighbours of a specific drum are ordered in some fashion, they are assumed to respect the above convention. Note that with this convention, neighbours see each other as the same neighbour index (the i-th neighbour of j sees j as its i-th neighbour). Never violate this convention.
- 0,
Inexistent neighbour convention
Another convention concerns inexistent neighbours. For that purpose, this class should append
an auxiliary drum to the end of the drum vector. If neighbour i of a drum does not exist
(due to boundary, for example), the corresponding neighbour index will point to the
auxiliary drum, i.e. it will show an index drum_vec.size()
. All couplings of this auxiliary
drum are to be kept at 0. This condition can then be applied in force calculation to avoid branching,
if one uses the couplings of the neighbours instead of the considered drum.
MatrixElementCalculator
(matrix_element_calculator.hpp), calculates matrix elements
- Template arguments
-
value_t
: Scalar type -
params_t
: Drum parameters type -
vars_t
: Drum variables type -
drum_t
: Drum type
-
- Virtual functions
-
value_t operator()(size_t index, std::vector<drum_t>)
- Returns the diagonal element (index, index).
-
value_t operator()(size_t index1, size_t index2, std::vector<drum_t>)
- Returns the coupling element (index1, index2), where these are each others neighbour 0
-
value_t operator()(size_t index1, size_t index2, std::vector<drum_t>, int)
- Returns the coupling element (index1, index2), where these are each others neighbour 1
-
value_t operator()(size_t index1, size_t index2, std::vector<drum_t>, int, int)
- Returns the coupling element (index1, index2), where these are each others neighbour 2
-
- Description
- The overload of the functional is done to avoid branching. When building the matrix, one calls the individual functions correctly to accomodate the correct neighbours.
- Dependents
-
System
- Existence of the virtual functions
-
- Typical dependencies
-
params_t
- Class semantics
-
vars_t
- Class semantics
-
drum_t
get_parameters()
get_variables()
-
RK4Buffer
(rk4_buffer.hpp), holds Rk4Stepper intermediate results
Rk4Stepper
(rk4_stepper.hpp), performs timesteps using rk4 scheme
- Template arguments
-
value_t
: Scalar type -
params_t
: Drum parameters container type -
vars_t
: Drum variables container type -
buffer_t
: Stepper buffer container type -
force_t
: Force functional type
-
- Member functions
void step_1(force_t, std::vector<drum_t>, std::vector<std::vector<int> >, value_t dt, value_t time)
void step_2(force_t, std::vector<drum_t>, std::vector<std::vector<int> >, value_t dt, value_t time)
-
void step_3(force_t, std::vector<drum_t>, std::vector<std::vector<int> >, value_t dt, value_t time)
- All of the above perform one step of a timestep, between successive steps certain other updates need to be taken care of.
- Arguments: Force functional, Drum vector, Adjacency vector, time step, start time of current step
SystemParameters
(system_parameters.hpp), holds system parameters
- Template arguments
-
coupler_t
: Coupler type -
driver_t
: Driver type
-
- Public data members
-
coupler
: The coupler_t object of the system -
driver
: The driver_t object of the system -
adjacency_vector
: Astd::vector<std::vector<int> >
representing the adjacency vector
-
System
(system.hpp), holds all parts together
- Template arguments
-
value_t
: Scalar type -
drum_t
: Drum type -
grabber_t
: Data exfiltrator type -
sysparams_t
: System parameters type -
force_t
: Force functional type -
coupler_t
: Coupler type -
driver_t
: Driver type -
stepper_t
: Stepper type -
matelecalc_t
: Matrix element calculator type
-