- 27 Apr, 2012 2 commits
-
-
Matthias Toggweiler authored
-
adelmann authored
-
- 26 Apr, 2012 3 commits
-
-
adelmann authored
-
adelmann authored
-
Jianjun Yang authored
-
- 24 Apr, 2012 1 commit
-
-
kraus authored
Merge branch 'develop' into svn: using caches to speed up sc calculation (mainly relevant in gun calculations with many particles)
-
- 23 Apr, 2012 3 commits
-
-
adelmann authored
-
adelmann authored
-
Yves Ineichen authored
-
- 22 Apr, 2012 3 commits
- 21 Apr, 2012 3 commits
- 20 Apr, 2012 2 commits
-
-
Matthias Toggweiler authored
- Prepare list of cavities to check against OUTSIDE particle loop - Integration timer reduced by 15 % wrt previous revision
-
Matthias Toggweiler authored
- Inlined ParallelCyclotronTracker::checkGapCross into ::push - Convert perpendistance from mm to m, do calculations in m - Only compute distOld when necessary, stop if is already clear that no cross occurs - Integration timer for firstTurn.in example is more than 15 % smaller (LF and MTS profit from that, not yet RK4 because RK4 uses old function)
-
- 19 Apr, 2012 14 commits
- 18 Apr, 2012 2 commits
-
-
kraus authored
-
Jianjun Yang authored
-
- 17 Apr, 2012 7 commits
-
-
adelmann authored
In OPAL several different TRACK's can performed within one simulation (does not hold for OPAL-cycl yet) this together with the restart capabilities calls for a delicate logic. Different tracks, looks like: ..... TRACK, LINE= Injector, BEAM=beam1, MAXSTEPS=100, DT=1.0e-12, ZSTOP=0.14; RUN, METHOD = "PARALLEL-T", BEAM = beam1, FIELDSOLVER = Fs1, DISTRIBUTION = Dist1; ENDTRACK; TRACK,LINE= Injector, BEAM=beam1, MAXSTEPS=50, DT=1.0e-11, ZSTOP=0.20; RUN, METHOD = "PARALLEL-T", BEAM=beam1, FIELDSOLVER=Fs1; ENDTRACK; STOP; A run with the arguments -restart -1 will continue a track from the last dump in the h5 file. Other the from the last track will at the moment certainly fail in the general case. Changes: - The h5 attribute TrackStep is not longer available anymore. Two new attributes: LocalTrackStep and GlobalTrackStep are introduced instead. - LocalTrackStep refers to the track step in a track command (0 ... 99 and 0... 49 in teh above example), where the GlobalTrackStep is the accumulated number of steps i.e. 0 ... 149, shown in OPAL's screen output. Both local and global track steps are also written into the h5 file in order to properly restart the simulation. - The PartBunch object has get/set and increment functions: inline void setGlobalTrackStep(long long n) {globalTrackStep_m = n;} inline long long getGlobalTrackStep() const {return globalTrackStep_m;} inline void setLocalTrackStep(long long n) {localTrackStep_m = n;} inline long long getLocalTrackStep() const {return localTrackStep_m;} inline void incLocalTrackStep() {localTrackStep_m++; globalTrackStep_m++;) - In OPAL-cyc getTrackStep is replace by getLocalTrackStep assuming we only have one TRACK in the simulation. - In the ParallelTTracker at the end of the main loop (in execute()) obsolet code is removed (cleanup monitors etc.) For details see the diff :-) Still some work todo: a) Need to remove: setLastStep in ParallelTTracker.cpp and in general getInstance()->getLastStep() getInstance()->getRestartStep() maybe not! b) The get/set and increment functions could very well be in an other class! c) ParallelPlate tests are broken but maybe also because of other changes need to fix this together with Chuang and Achim d) Make sure the restart works in OPAL-cycl we do not have yet a regression test for that.
-
Matthias Toggweiler authored
- simplify checkNumPart - clean up function initDistInGlobalFrame - correct indentation - move AUTO mode stuff down where meanR is calculated already - referenceR is not used in Tracker_MTS body, so remove it
-
Matthias Toggweiler authored
- Needed to add member variables turnnumber_m, eta_m
-
Jianjun Yang authored
-
kraus authored
Merge branch 'develop' into svn: more pretty printing; change variable names to comply with (unfortunately missing) coding style (Use descriptive names)
-
Jianjun Yang authored
-
kraus authored
Merge branch 'develop' into svn: willfully breaking Scan-1 test; the first track starts with step 0 and so should the following tracks in a scan
-