BCDA-APS / bdp_controls

APS-U Beam line Data Pipelines - experiment controls with EPICS and Bluesky
Other
0 stars 1 forks source link

make a simulation for remote feedback to adjust #25

Closed prjemian closed 2 years ago

prjemian commented 2 years ago
  1. remote feedback requests new peak simulation (a peak within the frame, one plan)
    1. optional random jitter
    2. optional drift in the peak position
    3. peak position and/or width parameters
  2. repeat until criteria satisfied by remote process
    1. remote feedback requests new image(s)
    2. image data is transferred to remote process
    3. remote feedback assesses new images for peak parameters
    4. remote feedback requests to move positioners
prjemian commented 2 years ago
  1. for each image axis (x, y), use a userCalc
  2. A: 0<= random <1023 (set in python)
  3. B: motor RBV
  4. C: coarse multiplier (10)
  5. D: fine positioner value
  6. E: fine multiplier (0.1)
  7. F: noise (pixels) (2.5)
  8. CALC: A+B*C+D*E+F*(2*RNDM-1)
  9. SCAN: 0.1 second

What about drift (time change in A value)?

prjemian commented 2 years ago

Clipboard01