Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects

Opal maps

Merged snuverink_j requested to merge OPAL-maps into master

This MR will implement Map tracking for:

  • Quadrupole
  • Dipole
  • Drifts
  • Bends

TODO list:

Remaining issues:

  • Output dumps in local coordinates only
  • Dipole until 1st order
  • Tune calculation not stable
  • Space charge calculations needs to be verified
  • Fringe fields for Bends
Edited by snuverink_j

Merge request reports

Merged by snuverink_jsnuverink_j 6 years ago (Sep 20, 2018 10:01am UTC)

Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
4
5
6 #include "Physics/Physics.h"
7
8 #include <gsl/gsl_math.h>
9 #include <gsl/gsl_eigen.h>
10 #include <gsl/gsl_linalg.h>
11
12
13 MapAnalyser::MapAnalyser()
14 : mapAnalysis_m(IpplTimings::getTimer("mapAnalysis"))
15 , bunchAnalysis_m(IpplTimings::getTimer("bunchAnalysis"))
16 { }
17
18 //Analyzes a TransferMap for the tunes, symplecticity and stability
19 void MapAnalyser::linTAnalyze(const fMatrix_t& tMatrix){
  • snuverink_j changed the description

    changed the description

  • snuverink_j changed the description

    changed the description

  • ganz_p added 1 commit

    added 1 commit

    • 66932071 - added bunch and Hardedge in tests/Maps/FODODipole

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    • 251cec57 - OPAL-map: add fringe fields

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    • c4526b26 - OPAL-map: Clean-up + got till ZSTOP

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    • bc6ad8b3 - OPAL-map: track reference particle

    Compare with previous version

  • frey_m added 1 commit

    added 1 commit

    • 2ac63720 - OPAL-map: Clean-up dispersion dump

    Compare with previous version

  • frey_m marked the checklist item Code cleaning (@frey_m) as completed

    marked the checklist item Code cleaning (@frey_m) as completed

  • frey_m marked the checklist item Use beam line order as completed

    marked the checklist item Use beam line order as completed

  • frey_m added 8 commits

    added 8 commits

    Compare with previous version

  • ganz_p added 2 commits

    added 2 commits

    • 2702c2e9 - simplified unit transformation in ThickTracker::updateParticle_m
    • 0050e227 - simplified unit transformation in ThickTracker::updateParticle_m

    Compare with previous version

  • snuverink_j
    snuverink_j @snuverink_j started a thread on commit 2702c2e9
  • 47 48 SELECT, LINE=QUADTEST;
    48 49
    49 50
    50 TRACK, LINE= QUADTEST, BEAM=BEAM1, MAXSTEPS=10000, DT=1.0e-10, ZSTOP=4.0, MAP_ORDER=8;
    51 TRACK, LINE= QUADTEST, BEAM=BEAM1, MAXSTEPS=10000, DT=1.0e-10, ZSTOP=4.0, MAP_ORDER=2;
    • Author Developer

      @ganz_p : was this change in map_order on purpose? Should I also change this in the regression test?

    • With MAP_ORDER you can change the polynomial length of the map (, respective the truncation order).

      You can change it, if you like to.

      The advantages:

      If you set it to MAP_ORDER=2 the simulation would speed up. In my opinion the expansion would be sufficient for a regression test, because here the loop of the Lie expansion (ExpMap function in FTps) is then done twice (with MAP_ORDER=8 its just repeated 6 times more...). Also the map accumulation would be faster, arguing similar as before (overloaded * operator in FVps).

    • Author Developer

      okay thanks for the info. I have changed the MAP_ORDERs to 2 in regression-tests/8b5f2002

    • Please register or sign in to reply
  • snuverink_j mentioned in issue #227

    mentioned in issue #227

  • ganz_p added 1 commit

    added 1 commit

    Compare with previous version

  • snuverink_j marked the checklist item Doxygen documentation (@ganz_p) as completed

    marked the checklist item Doxygen documentation (@ganz_p) as completed

  • snuverink_j marked the checklist item Documentation (@ganz_p) as completed

    marked the checklist item Documentation (@ganz_p) as completed

  • snuverink_j marked the checklist item Documentation (@ganz_p) as incomplete

    marked the checklist item Documentation (@ganz_p) as incomplete

  • Author Developer

    @ganz_p : The output section in the documentation is still empty. Could you add a few words there perhaps?

  • snuverink_j added 56 commits

    added 56 commits

    Compare with previous version

  • snuverink_j added 1 commit

    added 1 commit

    • 458a3704 - disable fringe fields for SBends; remove trailing whitespace

    Compare with previous version

  • snuverink_j changed the description

    changed the description

  • ganz_p added 1 commit

    added 1 commit

    • e237ec11 - implemented if statment for Dipole angles

    Compare with previous version

  • snuverink_j marked the checklist item Documentation (@ganz_p) as completed

    marked the checklist item Documentation (@ganz_p) as completed

  • snuverink_j added 3 commits

    added 3 commits

    Compare with previous version

  • ganz_p added 1 commit

    added 1 commit

    • 059a184e - fixed ifStatement for Dipoleangles

    Compare with previous version

  • ganz_p added 1 commit

    added 1 commit

    • c9d7fbf6 - changed arc- to chordlength

    Compare with previous version

  • snuverink_j added 1 commit

    added 1 commit

    • 9a686667 - fix bug: skip fringe fields in checkElementOrder_m; small improvements

    Compare with previous version

  • ganz_p added 1 commit

    added 1 commit

    • 153291ff - removed std::abs in checkElementOrder_m

    Compare with previous version

  • ganz_p added 1 commit

    added 1 commit

    • a1a36d80 - removed my uneccessary std::cout

    Compare with previous version

  • snuverink_j marked the checklist item Regression tests (@snuverink_j) as completed

    marked the checklist item Regression tests (@snuverink_j) as completed

  • mentioned in merge request regression-tests!2 (merged)

  • snuverink_j changed the description

    changed the description

  • snuverink_j unmarked as a Work In Progress

    unmarked as a Work In Progress

  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading