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
0c80cea7
Commit
0c80cea7
authored
5 years ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
How to implement a new project
parent
5a1b3f9a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+18
-2
18 additions, 2 deletions
README.md
with
18 additions
and
2 deletions
README.md
+
18
−
2
View file @
0c80cea7
...
...
@@ -30,8 +30,24 @@ contents is the following:
## Implementing a new project
In order to implement a new project, follow these steps:
1.
Identify force
-
$d^2_t x = F$
1.
Identify force on a single drum
-
Depends on static parameters (w, m, a, etc.) and dynamic parameters and variables (x, v, etc.).
-
Coupling and driving parameters are dynamic.
2.
Write custom versions of classes
`DrumParameters`
(everything that is static) and
`DrumVariables`
(everything that is dynamic) to accomodate these. Inspiration in
`lib/drum_variables.hpp`
and
`lib/drum_parameters.hpp`
.
4.
Write custom
`Grabber`
that extracts the relevant data (inspiration in
`include/grabber.hpp`
)
3.
Write custom child of
`Force`
to calculate the force.
4.
Write custom children of
`Coupler`
and
`Driver`
to correctly update the drive and couplings.
5.
If desired, write a custom child of
`LatticeGenerator`
to generate a custom lattice,
or use the generator
`projects/braidingTightBinding/include/rbcomb_generator_braid.hpp`
to
create the RBComb.
6.
If desired, write a child of
`MatrixElementCalculator`
to calculate matrix elements
for the dynamic matrix.
7.
Check the unit tests (
`unit_tests`
) or other projects to see how a
`main.cpp`
could be
constructed.
<a
name=
"Classes"
></a>
## Classes
...
...
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