Software Design Specification for LLRF Applications at FLASH Version 1.0 Prepared by Zheqiao Geng MSK, DESY Nov. 16, 2009

Size: px
Start display at page:

Download "Software Design Specification for LLRF Applications at FLASH Version 1.0 Prepared by Zheqiao Geng MSK, DESY Nov. 16, 2009"

Transcription

1 Software Design Specification for LLRF Applications at FLASH Version 1.0 Prepared by Zheqiao Geng MSK, DESY Nov. 16, 2009 Copyright 2009 by Zheqiao Geng. Any change of this document should be agreed by the development team.

2 Software Design Specification for LLRF Applications at FLASH Page ii Table of Contents 1. Introduction Purpose Document Conventions Intended Audience and Reading Suggestions References Design Strategies Design Guidelines Error Detection and Handling Memory Management Policies Data Management Policies System Structure Overview Functional Architecture Procedures Support Modules LLRF Algorithm Library Software Architecture DOOCS Server Architecture Procedure Allocations Policies and Tactics Coding Guidelines Naming Conventions Testing Plans Glossary To Be Determined List...23

3 Software Design Specification for LLRF Applications at FLASH Page iii Revision History Version Name Reason For Changes Date 1.0 Zheqiao Geng Initial Revision Nov. 16, 2009 Approved By Name Signature Department Date

4 Software Design Specification for LLRF Applications at FLASH Page 1 1. Introduction 1.1 Purpose This document is to present the software design specification for the LLRF Applications at FLASH. The architecture of the DOOCS servers and allocation of the procedures, which realize the use cases, will be described. Please note this is only the draft consideration, the server architecture and procedure allocations may be changed by the designer during detailed design and implementation. The LLRF Algorithm Library that carry out most of the signal processing tasks for the procedures are described as subroutines with the definition of input/output data and parameters. And the other supporting modules to the procedures, such as the VME data access interface and the motor control module are briefly described as a group of classes. This document offers a global view of the system design, which might be changed during implementation, but any change should be agreed by the design team. 1.2 Document Conventions To be worked out later. 1.3 Intended Audience and Reading Suggestions LLRF Experts Involved in Operation Algorithm Developers Software Developers Software Testers 1.4 References 1). For FLASH upgrade information, 2). Software Requirements Specification for LLRF Applications at FLASH, v Design Strategies 2.1 Design Guidelines Maximum reusability: the LLRF applications specified in this document will contain most of the domain knowledge of the LLRF system, which can also be used in the LLRF system for the European XFEL, so, when designing the system, the common parts and the FLASH specified parts should be separated for maximizing the reusability.

5 Software Design Specification for LLRF Applications at FLASH Page 2 Optimization for computation power and memory consumption: the LLRF applications at FLASH will be later extended to the low level processors like DSP for pulse-to-pulse calculation, so the code especially for the LLRF Algorithm Library should be optimized for minimizing the required computation power and memory consumption. Loose coupling: the coupling between different DOOCS servers should be as low as possible, so that they can be easily maintained and upgraded in the future. DAQ system can be used to decouple the different servers. Different DOOCS servers shouldn t have synchronized invocation between them, but only the broadcasting data transfer for information exchange. See figure below. 2.2 Error Detection and Handling Figure 1: Loose coupling between DOOCS servers (TINE: publisher and subscriber ) The errors of the software itself such as memory overflow and division by zero should be detected and reported, and the sources of the errors should be located. The errors happen at the low-level part of the system like the LLRF Algorithm Library should be handled immediately, and if they can not be handled locally, they should be transferred to the higher level. Finally, if the errors can not be handled by the software automatically, they will be reported to the operators. The concept is shown below. Figure 2: Concept for software error handling (Extend to DOOCS method?)

6 Software Design Specification for LLRF Applications at FLASH Page Memory Management Policies The buffers used in the procedures should be defined centrally outside the procedures, and only the buffer addresses (pointers) should be transferred to the procedures and subroutines in the LLRF Algorithm Library. We should avoid defining big buffers inside the procedures and subroutines. Reuse the buffers as much as possible, such as storing the results in the same buffers of the initial input data if the input data will not be used again. 2.4 Data Management Policies Firmware for the SIMCON DSP should be stored centrally with uniform naming and versioning conventions. Parameters like the vector sum calibration coefficients, cavity quench limitations should be stored centrally. (Firmware database will be ready soon, parameters storage can be done config files of doocs. First we can use files) 2.5 System Structure Overview Figure 3: Overview of the system architecture The LLRF Applications are mainly used for signal processing, which take mainly the RF signal measurement as input, employee various algorithms concern to the superconducting cavity theory, digital signal processing and control theory, and realize the use cases specified at the Software Requirements Specification. The algorithms used in the LLRF Applications contain the domain knowledge of LLRF system, which is common for similar systems, so, it is meaningful to design an algorithm library to separate

7 Software Design Specification for LLRF Applications at FLASH Page 4 the LLRF domain knowledge and the machine specific software components for future reuse. And because the algorithms will be also used in DSP program for Low Level Applications, it is preferred to be implemented in C language and optimized for computation power and memory consumption. Basic exception detection and handling will be also implemented for the algorithm library. Based on the algorithm library, the LLRF use cases can be implemented as procedures by following the sequences specified in the Software Requirements Specification, please note all alternative flows and exceptions should be taken into account. The procedures are special for FLASH, so the reusability will not be critical. For automatic operation, a scheduler formed by a sequencer or state machine can be used to organize the procedures. And finally, the buffers (RAM) and constants (ROM) used by the applications will be managed by the DOOCS server, the interfaces to the user and other applications will be provided, and the scheduler will be embedded into the DOOCS framework. A DOOCS server is an independent application for the operating system. 3. Functional Architecture 3.1 Procedures The LLRF procedures are mainly used for organizing the algorithms and other activities such as data read and write to realize the use cases. Each use case can be realized as a procedure. The use cases are described in the Software Requirements Specification for LLRF Applications at FLASH. For convenience, rewrite the use cases below, with an additional ID for procedures. PROC01 (LLRF_UC01): Configure the LLRF firmware PROC02 (LLRF_UC02): Set the vector sum voltage and phase for each RF station PROC03 (LLRF_UC03): Set the fill and flattop duration of the RF pulse, and set the basic feed forward parameters PROC04 (LLRF_UC04): Calibrate the vector sum PROC05 (LLRF_UC05): Close the RF feedback loop PROC06 (LLRF_UC06): Optimize the LO generation tables PROC07 (LLRF_UC07): Correct the DAC offset of the field controller PROC08 (LLRF_UC08): Tune the cavity resonance frequency PROC09 (LLRF_UC09): Adjust the cavity incident phase automatically PROC10 (LLRF_UC10): Adjust the cavity loaded Q automatically PROC11 (LLRF_UC11): Sweep the feedback gain for correlation study PROC12 (LLRF_UC12): Optimize the feed forward tables PROC13 (LLRF_UC13): Measure the system status PROC14 (LLRF_UC14): Start up and calibrate the RF gun PROC15 (LLRF_UC15): Recover the beam parameters after interlock trip PROC16 (LLRF_UC16): Save/restore machine settings PROC17 (LLRF_UC17): Check/set the timing of klystron, LLRF and other components PROC18 (LLRF_UC18): Support the beam based feedback

8 Software Design Specification for LLRF Applications at FLASH Page 5 The procedures will call the subroutines in the LLRF Algorithm Library and the services provided by the Support Modules, which is shown in the figure below. Typically, one procedure can be arranged in one C++ class. pkg Procedures [Procedures] Procedures LLRF Algorithm Library Support Modules Figure 4: LLRF procedures depend on the LLRF Algorithm Library and Support Modules 3.2 Support Modules (we may use existing APIs) First let s look at some necessary modules that support the procedures but not for signal processing, which means, they are not suitable to be included in the algorithm library. Please note that these classes are also highly reusable for other similar projects. class Support Modul... Firmw are_configuration - baseaddressfpga: long + firmwareconfigure() : void DOOCS_Access +accessmotortunercontrolvia + doocsread() : void + doocswrite() : void Cav ity_motor_tuner_control +configurefpgavia VME_Interface + vmeread() : void + vmewrite() : void + vmeinterrupt() : void +readandwritefpgaregistersandbuffersvia Controller_Interface + registerread() : void + registerwrite() : void + bufferread() : void + bufferwrite() : void +readandwritecontrollerparametersvia + motormove() : void + motor() : void +accessdatabasevia Database_Interface + databaseread() : void + databasewrite() : void +accessdatabasevia Parameters_Save_Restore + parameterssave() : void + parametersrestore() : void Logging + logbookwrite() : void + databaseloggingwrite() : void + databaseloggingread() : void Data_Conditioning - datatopthreshold: float - databottomthreshold: float - unittranslationratio: float + checkdatalimitations() : void + translatedataunits() : void Figure 5: Class diagram of the Support Modules for the procedures Firmware Configuration: The class to configure the FPGA on the SIMCON DSP boards

9 Software Design Specification for LLRF Applications at FLASH Page 6 with specified firmware, which will use the service provided by the VME Interface VME Interface: The class to handle the read, write and interrupt through the VME bus Controller Interface: The class to read and write the registers and buffers in the RF field controller, which will use the service provided by the VME Interface Parameters Save Restore: The class to save and restore the system parameters (including the field controller parameters), which will use the service provided by the Controller Interface and Database Interface. Assume the database will be used to store the saved parameters. Database Interface: The class to read and write the database Logging: The class to automatically input information to the FLASH logbook, read and write the database to record the important activities done by the LLRF applications Cavity Motor Tuner Control: The class to control the cavity motor tuner for slow cavity resonance control, which will use the service provided by the DOOCS Access, because the motor is controlled by writing in the proper properties of the motor control servers DOOCS Access: The class to read and write other DOOCS properties Data Conditioning: The class to validate the user input, such as checking if the data exceeds the limitations or not; and translate the data between physical units and digital units Note: This is only a draft consideration of the class structure, during detailed design stage, the required classes, the attributes and operations of each class can be checked and rearranged. 3.3 LLRF Algorithm Library The components in the LLRF Algorithm Library used in the procedures are listed below -- Operation support LLRF_APP01: Table generation for field controller -- Beam based calibration LLRF_APP02: Beam transient measurement LLRF_APP03: Vector sum calibration -- Grey box system identification LLRF_APP04: Klystron signal calibration as cavity driving LLRF_APP05: Loop phase and loop gain measurement LLRF_APP06: Beam identification LLRF_APP07: Loaded Q and detuning measurement -- Applications of the grey box model LLRF_APP08: Cavity on-line simulator LLRF_APP09: Forward and reflected power calibration LLRF_APP10: Beam loading compensation -- Adaptive feed forward LLRF_APP11: Black box model identification (only for matlab) LLRF_APP12: Iterative learning control -- Imbalance correction of the vector modulator LLRF_APP13: DAC offset calibration LLRF_APP14: LO generation tables optimization -- RF phase and amplitude measurement

10 Software Design Specification for LLRF Applications at FLASH Page 7 LLRF_APP15: RF signal stability measurement LLRF_APP16: Timing consistency checking -- Beam based feedback LLRF_APP17: Beam based feedback support -- RF gun control LLRF_APP18: RF gun start up LLRF_APP19: RF gun calibration The software components in the LLRF Algorithm Library can be described by a block with input data, output data and parameters, which is shown in Figure. Figure 6: Interfaces of the LLRF Algorithm Library component The input data and output data will be refreshed for each execution of the components, while the parameters should be relatively stable for a certain working condition. The specification of the input/output data and parameters for each component is described below LLRF_APP01: Table generation for field controller Algorithm ID LLRF_APP01 Name Table generation for field controller Priority Basic Functions Generate the set point table, feed forward table and gain table for the field controller Work for each RF station Set point amplitude digit Float Set point phase degree Float RF pulse timing {delay, fill, flattop, beam_on, μs Long beam_off} Ratio of the feed forward table between fill and / Float flattop stage Feed back gain / Float Set point table {I, Q} [PULSE_LENGTH] digit Long Feed forward table {I, Q} [PULSE_LENGTH] digit Long Gain table {I, Q} [PULSE_LENGTH] digit Long Parameters Item Unit Type Loaded Q of cavity / Float Gain scheduling parameters {TBD } / TBD Phase modulation parameters during fill stage (for / TBD

11 Software Design Specification for LLRF Applications at FLASH Page 8 Used By Other Requirements resonance filling) {TBD } Function selection / enum { Set_Point; Feed_Forward; Gain; All} LLRF_UC02, LLRF_UC03 Smooth the set point table, feed forward table and gain table, avoiding sudden change When the set point table is changed, the feed forward table should be changed automatically The feed forward table should be able to be generated separately The gain table should be able to be generated separately LLRF_APP02: Beam transient measurement Algorithm ID LLRF_APP02 Name Beam transient measurement Priority Basic Functions Measure the beam transient of moderate beam current, like 3nC for 30 bunches Work for each cavity Cavity probe signal {I, Q} [PULSE_LENGTH] digit Long RF pulse timing {delay, fill, flattop, beam_on, μs Long beam_off} Beam current ma Float Loaded Q of cavity / Float Beam phase absolute value degree Float Beam phase respect to RF degree Float Beam transient amplitude relative to RF amplitude / Float Absolute beam induced voltage MV Float Absolute cavity voltage in physical unit MV Float [PULSE_LENGTH] Calibration coefficient between cavity voltage MV / Float value in physical unit and digital unit digit Parameters Item Unit Type Data range of the RF pulse for calculation μs Long {start_before_beam, end_before_beam, start_after_beam, end_after_beam} Average number / Integer r/q of cavity Ω Float

12 Software Design Specification for LLRF Applications at FLASH Page 9 Used By LLRF_UC LLRF_APP03: Vector sum calibration Algorithm ID LLRF_APP03 Name Vector sum calibration Priority Basic Functions Decide the rotation matrix for each cavity for vector sum measurement based on the beam transient Work for each RF station Beam phase absolute value [CAVITY_NUM] degree Float Beam transient amplitude relative to RF amplitude / Float [CAVITY_NUM] Vector sum calibration coefficients {rotation_gain, {/, Float rotation_angle} [CAVITY_NUM] degree} Parameters Used By LLRF_UC LLRF_APP04: Klystron signal calibration as cavity driving Algorithm ID LLRF_APP04 Name Klystron signal calibration as cavity driving Priority Basic Functions Rotate and scale the klystron signal to act as the cavity driving signal for cavity parameters calculation, such as the loaded Q and detuning during RF pulse Work for each cavity Cavity probe signal {I, Q} [PULSE_LENGTH] digit Long Klystron signal {I, Q} [PULSE_LENGTH] digit Long RF pulse timing {delay, fill, flattop, beam_on, μs Long beam_off} Cavity driving signal {I, Q} [PULSE_LENGTH] digit Long Klystron calibration coefficient {I, Q} / Float Parameters Item Unit Type Data range of the RF pulse for calculation {start, μs Long stop}

13 Software Design Specification for LLRF Applications at FLASH Page 10 Used By LLRF_UC05, LLRF_UC08, LLRF_UC LLRF_APP05: Loop phase and loop gain measurement Algorithm ID LLRF_APP05 Name Loop phase and loop gain measurement Priority Basic Functions Measure the loop phase and loop gain of the LLRF control loop Work for each RF station DAC output signal {I, Q} [PULSE_LENGTH] digit Long Cavity driving signal {I, Q} [PULSE_LENGTH] digit Long RF pulse timing {delay, fill, flattop, beam_on, μs Long beam_off} Loop phase degree Float Loop gain / Float Parameters Item Unit Type Data range of the RF pulse for calculation {start, μs Long stop} Used By LLRF_UC05, LLRF_UC LLRF_APP06: Beam identification Algorithm ID LLRF_APP06 Name Beam identification Priority Advanced Functions Estimate the beam driving term phase and amplitude based on RF measurement Work for each cavity Cavity probe signal {I, Q} [PULSE_LENGTH] digit Long Cavity driving signal {I, Q} [PULSE_LENGTH] digit Long Toroid signal [PULSE_LENGTH] digit Long RF pulse timing {delay, fill, flattop, beam_on, μs Long beam_off} Beam phase absolute value degree Float Beam driving term amplitude digit Long Toroid calibration coefficient {I, Q} / Float Parameters Item Unit Type Data range of the RF pulse for calculation μs Long

14 Software Design Specification for LLRF Applications at FLASH Page 11 Used By {start_during_beam, stop_during_beam, start_after_beam, stop_after_beam} LLRF_UC08, LLRF_UC10, LLRF_UC LLRF_APP07: Loaded Q and detuning measurement Algorithm ID LLRF_APP07 Name Loaded Q and detuning measurement Priority Basic Functions Measure the loaded Q and detuning of the cavity both from the RF decay and during the RF pulse Work for each cavity Cavity probe signal {I, Q} [PULSE_LENGTH] digit Long Cavity driving signal {I, Q} [PULSE_LENGTH] digit Long Toroid signal [PULSE_LENGTH] digit Long Toroid calibration coefficient {I, Q} / Float RF pulse timing {delay, fill, flattop, beam_on, μs Long beam_off} Loaded Q measured at RF decay / Float Detuning measured at RF decay Hz Float Loaded Q measured during RF pulse / Float [PULSE_LENGTH] Detuning measured during RF pulse Hz Float [PULSE_LENGTH] Parameters Item Unit Type Fitting range during RF decay {start, stop} μs Long FIR filter coefficients for derivative calculation / Float [FIR_ORDER] Used By LLRF_UC05, LLRF_UC08, LLRF_UC10, LLRF_UC LLRF_APP08: Cavity on-line simulator Algorithm ID LLRF_APP08 Name Cavity on-line simulator Priority Advanced Functions Simulate the cavity response with cavity model and driving signal Mainly work for each RF station

15 Software Design Specification for LLRF Applications at FLASH Page 12 Loaded Q measured at RF decay / Float Loaded Q measured during RF pulse / Float [PULSE_LENGTH] Detuning measured during RF pulse Hz Float [PULSE_LENGTH] Cavity driving signal {I, Q} [PULSE_LENGTH] digit Long Simulated cavity output {I, Q} digit Long [PULSE_LENGTH] Parameters Used By LLRF_UC LLRF_APP09: Forward and reflected power calibration Algorithm ID LLRF_APP09 Name Forward and reflected power calibration Priority Advanced Functions Calibrate the forward and reflected power for each cavity based on the cavity gradient calibration Work for each cavity Cavity probe signal {I, Q} [PULSE_LENGTH] digit Long Cavity driving signal {I, Q} [PULSE_LENGTH] digit Long Calibration coefficient between cavity voltage value MV / Float in physical unit and digital unit digit Cavity forward power [PULSE_LENGTH] kw Float Cavity reflected power [PULSE_LENGTH] kw Float Calibration coefficient between klystron signal and forward power kw / digit 2 Float Parameters Used By Calibration coefficient between reflected signal and reflected power LLRF_UC LLRF_APP10: Beam loading compensation Algorithm ID LLRF_APP10 Name Beam loading compensation kw / digit 2 Float

16 Software Design Specification for LLRF Applications at FLASH Page 13 Priority Basic Functions Setup the feed forward tables to compensate the beam loading Work for each RF station Beam current setting ma Float Beam phase setting degree Float Beam timing {beam_on, beam_off} μs Long Loaded Q of effect cavity for vector sum / Float Toroid signal [PULSE_LENGTH] digit Long Toroid calibration coefficient {I, Q} / Float Feed forward table for beam loading digit Long compensation {I, Q} [PULSE_LENGTH] Parameters Item Unit Type r/q of cavity Ω Float Used By LLRF_UC LLRF_APP11: Black box model identification (only for matlab) Algorithm ID LLRF_APP11 Name Black box model identification (only for matlab) Priority Basic Functions For black box model identification Work for each RF station Parameters Item Unit Type Used By LLRF_UC LLRF_APP12: Iterative learning control Algorithm ID LLRF_APP12 Name Iterative learning control

17 Software Design Specification for LLRF Applications at FLASH Page 14 Priority Basic Functions Compensate the repetitive errors of the system, such as phase and amplitude errors caused by the Lorenz force detuning or beam loading Work for each RF station Vector sum error {I, Q} [PULSE_LENGTH] digit Long Feed forward correction table {I, Q} digit Long [PULSE_LENGTH] Parameters Item Unit Type Black box model {TBD } / Float Iterative learning control parameters {TBD } / Float Used By LLRF_UC LLRF_APP13: DAC offset calibration Algorithm ID LLRF_APP13 Name DAC offset calibration Priority Advanced Functions The automatic calculation of the DAC offset based on the error model of the vector modulator for zero power settings Work for each RF station DAC driving sweep {I, Q} [SWEEP_POINT_NUM] digit Long Pre-amplifier response {I, Q} digit Long [SWEEP_POINT_NUM] DAC offset {I, Q} digit Long Vector modulator phase imbalance degree Float Vector modulator amplitude imbalance / Float Parameters Used By LLRF_UC LLRF_APP14: LO generation tables optimization Algorithm ID LLRF_APP14 Name LO generation tables optimization Priority Basic Functions Optimize the DAC tables of the switched LO generation for 250kHz IF scheme in order to remove the imbalance effects of the vector modulator

18 Software Design Specification for LLRF Applications at FLASH Page 15 Work for each RF station LO generation tables {I, Q} [4] digit Long Calibration RF signal measurement {I, Q} digit Long [PULSE_LENGTH] Optimized LO generation tables {I, Q} [4] digit Long Vector modulator phase imbalance degree Float Vector modulator amplitude imbalance / Float Parameters Used By LLRF_UC LLRF_APP15: RF signal stability measurement Algorithm ID LLRF_APP15 Name RF signal stability measurement Priority Basic Functions Measure the RF signal stability, including the intra-pulse and pulse-pulse phase and amplitude RMS jitter Work for each cavity RF pulse signal {I, Q} [PULSE_LENGTH] digit Long RF pulse timing {delay, fill, flattop, beam_on, μs Long beam_off} History buffer of RF amplitude [HIS_BUF_LENGTH] digit Float History buffer of RF phase [HIS_BUF_LENGTH] degree Float RMS intra-pulse amplitude jitter % Float RMS intra-pulse phase jitter degree Float RMS pulse-pulse amplitude jitter % Float RMS pulse-pulse phase jitter degree Float Refreshed history buffer of RF amplitude / Float [HIS_BUF_LENGTH] Refreshed history buffer of RF phase degree Float [HIS_BUF_LENGTH] Parameters Item Unit Type Data range of the RF pulse for calculation {start, stop μs Long } Used By LLRF_UC13

19 Software Design Specification for LLRF Applications at FLASH Page LLRF_APP16: Timing consistency checking Algorithm ID LLRF_APP16 Name Timing consistency checking Priority Advanced Functions Check if the RF pulse is too early in timing compared with the klystron high voltage Work for each RF station DAC output signal {I, Q} [PULSE_LENGTH] digit Long Klystron signal {I, Q} [PULSE_LENGTH] digit Long Condition flag for timing consistency / enum { OK, Warning, Alarm, Exception} Parameters Item Unit Type Threshold of the phase error for timing consistency degree Float checking Data range of the RF pulse for calculation {start, stop μs Long } Used By LLRF_UC LLRF_APP17: Beam based feedback support Algorithm ID LLRF_APP17 Name Beam based feedback support Priority Advanced Functions Algorithms to support the beam based feedback Work for specified RF stations Parameters Used By LLRF_UC18

20 Software Design Specification for LLRF Applications at FLASH Page LLRF_APP18: RF gun start up Algorithm ID LLRF_APP18 Name RF gun start up Priority Advanced Functions Heat the RF gun to accelerate the start up procedure Work for RF gun Parameters Used By LLRF_UC LLRF_APP19: RF gun calibration Algorithm ID LLRF_APP19 Name RF gun calibration Priority Basic Functions Calibrate the RF gun without RF probes, using the forward and reflected signal measurement to calculate the effective cavity voltage Work for RF gun Parameters Used By LLRF_UC14

21 Software Design Specification for LLRF Applications at FLASH Page Software Architecture 4.1 DOOCS Server Architecture Figure 7: The architecture and interaction of the DOOCS servers for FLASH LLRF Each DOOCS server will include the parts of: Procedure: the procedures that should be implemented in the server RAM : define all the buffers used in the procedures, such as the buffers to store the cavity probe signal and klystron signal ROM : define all the necessary constants used in the procedures, such as the FIR filter coefficients used for digital derivative calculation Scheduler: organize the procedures to work together with a sequencer or state machine

22 Software Design Specification for LLRF Applications at FLASH Page 19 class DOOCS Server Architectu... Scheduler DOOCS_Server +scheduleoperationof 1..* Procedure +use ROM_ +use RAM_ Figure 8: DOOCS server structure 4.2 Procedure Allocations See next page.

23 Software Design Specification for LLRF Applications at FLASH Page 20 Table 1: Allocation map between the procedures and DOOCS servers PROC01 PROC02 PROC03 PROC04 PROC05 PROC06 PROC07 PROC08 PROC09 PROC10 PROC11 PROC12 PROC13 PROC14 PROC15 PROC16 PROC17 PROC18 Front-end Server Gun Front-end Server ACC1 Front-end Server ACC39 Front-end Server ACC23 Front-end Server ACC45 Front-end Server ACC67 Middle-layer Server Gun Middle-layer Server ACC1_01 (Learning Control) Middle-layer Server ACC1_02 (System Mea.) Middle-layer Server ACC1_03 (Beam Based FB.) Middle-layer Server ACC39_01 (Learning Control) Middle-layer Server ACC39_02 (System Mea.) Middle-layer Server ACC23_01 (Learning Control) Middle-layer Server ACC23_02 (System Mea.) Middle-layer Server ACC45_01 (Learning Control) Middle-layer Server ACC45_02 (System Mea.) Middle-layer Server ACC67_01 (Learning Control) Middle-layer Server ACC67_02 (System Mea.) Middle-layer Server for Global Control Note: The procedures are used to realize the use cases, the column items of PROC01 to PROC18 correspond to the LLRF_UC01 to LLRF_UC18 presented in the Software Requirements Specification for LLRF Applications at FLASH.

24 Software Design Specification for LLRF Applications at FLASH Page Policies and Tactics 5.1 Coding Guidelines Comments Layout of the code Guidelines in LLRFWiki: Naming Conventions Naming convention for LLRF matlab algorithm library For the components of the LLRF Algorithm Library (LLRF_APP01~19), the function name and m file name should be LLRF_appl_matlab_xxx. For the common functions which are used by more than one components of the LLRF Algorithm Library should be named as LLRF_appl_matlab_common_xxx. Example: For the library component of LLRF_APP07: Loaded Q and detuning measurement, the function name should be LLRF_appl_matlab_mea_loadedQ_detuning, and in this function, the digital derivative calculation is used, which can be named as LLRF_appl_matlab_common_derivative. Note: some abbreviations can be used in the names cal calibration mea measurement opt optimization cor correction id identification gen generation sim simulation chk check Naming convention for LLRF C algorithm library This should be the same as the LLRF matlab algorithm library, except for removing the word of matlab Naming convention for matlab procedure For the procedures (PROC01~18), the names should be LLRF_proc_matlab_xxx.

25 Software Design Specification for LLRF Applications at FLASH Page 22 For the Support Modules to the procedures, the name should be LLRF_proc_matlab_support_xxx. Example: For the procedures of PROC01: Configure the LLRF firmware, the name should be LLRF_proc_matlab_configure_firmware, and in this function, the VME interface is used, which can be name as LLRF_proc_matlab_support_VME_interface Naming convention for procedure classes This should be the same as the matlab procedures, except for removing the word of matlab Naming convention for DOOCS servers For front-end servers, the name should be LLRF_server_fe_xxx. For middle-layer servers, the name should be LLRF_server_ml_xxx. For RAM, ROM and scheduler of each server, add the name of _RAM, _ROM and _scheduler after the server name. Example: For the front-end server of ACC1, the names below should be used: LLRF_server_fe_ACC1, LLRF_server_fe_ACC1_RAM, LLRF_server_fe_ACC1_ROM, LLRF_server_fe_ACC1_scheduler. For the middle-layer server for learning control of ACC1, the names below should be used: LLRF_server_ml_ACC1_ilc, LLRF_server_ml_ACC1_ilc_RAM, LLRF_server_ml_ACC1_ilc_ROM, LLRF_server_ml_ACC1_ilc_scheduler. For the middle-layer server for global control, the names below should be used: LLRF_server_ml_global, LLRF_server_ml_global_RAM, LLRF_server_ml_global_ROM, LLRF_server_ml_global_scheduler. 5.3 Testing Plans To be done later! 6. Glossary LLRF Experts: the persons from LLRF group involved in daily operation of FLASH, or perform maintenance of the LLRF system and machine studies

26 Software Design Specification for LLRF Applications at FLASH Page 23 Client Applications: software running in clients, mainly written in matlab Priority has three level: 1. Basic necessary for FLASH commissioning 2. Advanced essential for FLASH operation 3. Nice to Have can be worked out later, if manpower and resources permit 7. To Be Determined List CVS repository LLRF algorithm matlab library LLRF algorithm C library LLRF matlab procedures LLRF C++ procedures LLRF servers Documents (?)

Software Requirements Specification for LLRF Applications at FLASH Version 1.0 Prepared by Zheqiao Geng MSK, DESY Nov. 06, 2009

Software Requirements Specification for LLRF Applications at FLASH Version 1.0 Prepared by Zheqiao Geng MSK, DESY Nov. 06, 2009 Software Specification for LLRF Applications at FLASH Version 1.0 Prepared by Zheqiao Geng MSK, DESY Nov. 06, 2009 Copyright 2009 by Zheqiao Geng. Any change of this document should be agreed by the development

More information

Low-Level RF. S. Simrock, DESY. MAC mtg, May 05 Stefan Simrock DESY

Low-Level RF. S. Simrock, DESY. MAC mtg, May 05 Stefan Simrock DESY Low-Level RF S. Simrock, DESY Outline Scope of LLRF System Work Breakdown for XFEL LLRF Design for the VUV-FEL Cost, Personpower and Schedule RF Systems for XFEL RF Gun Injector 3rd harmonic cavity Main

More information

Borut Baricevic. Libera LLRF. 17 September 2009

Borut Baricevic. Libera LLRF. 17 September 2009 Borut Baricevic Libera LLRF borut.baricevic@i-tech.si 17 September 2009 Outline Libera LLRF introduction Libera LLRF system topology Signal processing structure GUI and signal acquisition RF system diagnostics

More information

Cavity Field Control - RF Field Controller. LLRF Lecture Part3.3 S. Simrock, Z. Geng DESY, Hamburg, Germany

Cavity Field Control - RF Field Controller. LLRF Lecture Part3.3 S. Simrock, Z. Geng DESY, Hamburg, Germany Cavity Field Control - RF Field Controller LLRF Lecture Part3.3 S. Simrock, Z. Geng DESY, Hamburg, Germany Content Introduction to the controller Control scheme selection In-phase and Quadrature (I/Q)

More information

FLASH rf gun. beam generated within the (1.3 GHz) RF gun by a laser. filling time: typical 55 μs. flat top time: up to 800 μs

FLASH rf gun. beam generated within the (1.3 GHz) RF gun by a laser. filling time: typical 55 μs. flat top time: up to 800 μs The gun RF control at FLASH (and PITZ) Elmar Vogel in collaboration with Waldemar Koprek and Piotr Pucyk th FLASH Seminar at December 19 2006 FLASH rf gun beam generated within the (1.3 GHz) RF gun by

More information

SNS LLRF Design Experience and its Possible Adoption for the ILC

SNS LLRF Design Experience and its Possible Adoption for the ILC SNS LLRF Design Experience and its Possible Adoption for the ILC Brian Chase SNS - Mark Champion Fermilab International Linear Collider Workshop 11/28/2005 1 Why Consider the SNS System for ILC R&D at

More information

LLRF Operation and Performance of the European XFEL. An overview

LLRF Operation and Performance of the European XFEL. An overview LLRF Operation and Performance of the European XFEL. An overview Mathieu Omet LLRF, Barcelona, 16.10.2017 Contents > Introduction > LLRF commissioning > Energy Reach > LLRF performance > Summary / Outlook

More information

Functional block diagram for SIS8300. Christian Schmidt for the LLRF team Collaboration workshop

Functional block diagram for SIS8300. Christian Schmidt for the LLRF team Collaboration workshop Functional block diagram for SIS8300 Christian Schmidt for the LLRF team Collaboration workshop 2012 7.08.2012 Outline > Motivation and general comments > Preprocessing LLRF ADC board Block diagram Current

More information

Cavity Field Control - Feedback Performance and Stability Analysis. LLRF Lecture Part3.2 S. Simrock, Z. Geng DESY, Hamburg, Germany

Cavity Field Control - Feedback Performance and Stability Analysis. LLRF Lecture Part3.2 S. Simrock, Z. Geng DESY, Hamburg, Germany Cavity Field Control - Feedback Performance and Stability Analysis LLRF Lecture Part3.2 S. Simrock, Z. Geng DESY, Hamburg, Germany Motivation Understand how the perturbations and noises influence the feedback

More information

COMPLEX ENVELOPE CONTROL OF PULSED ACCELERATING FIELD

COMPLEX ENVELOPE CONTROL OF PULSED ACCELERATING FIELD Tomasz Czarski COMPLEX ENVELOPE CONTROL OF PULSED ACCELERATING FIELD IN SUPERCONDUCTING CAVITY RESONATORS L = 9 λ/2 ~ 1037 particle (z,τ) E 0 (z) 0 z Institute of Electronic Systems Publishing House of

More information

INSTALLATION AND FIRST COMMISSIONING OF THE LLRF SYSTEM

INSTALLATION AND FIRST COMMISSIONING OF THE LLRF SYSTEM INSTALLATION AND FIRST COMMISSIONING OF THE LLRF SYSTEM FOR THE EUROPEAN XFEL Julien Branlard, for the LLRF team TALK OVERVIEW 2 Introduction Brief reminder about the XFEL LLRF system Commissioning goals

More information

Superconducting cavity driving with FPGA controller

Superconducting cavity driving with FPGA controller TESLA-FEL 26-7 Superconducting cavity driving with FPGA controller Tomasz Czarski, Waldemar Koprek, Krzysztof T. Poźniak, Ryszard S. Romaniuk, Warsaw University of Technology Stefan Simrock, Alexander

More information

Digital LLRF Test on the Renascence Cryomodule

Digital LLRF Test on the Renascence Cryomodule Digital LLRF Test on the Renascence Cryomodule Trent Allison, Rama Bachimanchi, Curt Hovater, John Musson and Tomasz Plawski Introduction The Renascence cryomodule was the first opportunity for testing

More information

LLRF Plans for SMTF. Ruben Carcagno (Fermilab) Nigel Lockyer (University of Pennsylvania) Thanks to DESY, PISA, KEK, Fermilab, SLAC Colleagues

LLRF Plans for SMTF. Ruben Carcagno (Fermilab) Nigel Lockyer (University of Pennsylvania) Thanks to DESY, PISA, KEK, Fermilab, SLAC Colleagues LLRF Plans for SMTF Ruben Carcagno (Fermilab) Nigel Lockyer (University of Pennsylvania) Thanks to DESY, PISA, KEK, Fermilab, SLAC Colleagues Outline Near-term (< 1.5 years) SMTF LLRF plan Long-term (>

More information

Review on Progress in RF Control Systems. Cornell University. Matthias Liepe. M. Liepe, Cornell U. SRF 2005, July 14

Review on Progress in RF Control Systems. Cornell University. Matthias Liepe. M. Liepe, Cornell U. SRF 2005, July 14 Review on Progress in RF Control Systems Matthias Liepe Cornell University 1 Why this Talk? As we all know, superconducting cavities have many nice features one of which is very high field stability. Why?

More information

Improvements of the LLRF system at FLASH. Mariusz Grecki, Waldemar Koprek and LLRF team

Improvements of the LLRF system at FLASH. Mariusz Grecki, Waldemar Koprek and LLRF team Improvements of the LLRF system at FLASH Mariusz Grecki, Waldemar Koprek and LLRF team Agenda GUN linearization Adaptive feed-forward at ACC1 Beam load compensation at ACC1 Klystron nonlinearity compensation

More information

MIMO-LTI Feedback Controller Design -Status report-

MIMO-LTI Feedback Controller Design -Status report- MIMO-LTI Feedback Controller Design -Status report- Christian Schmidt Deutsches Elektronen Synchrotron Technische Universitaet Hamburg Harburg FLASH Seminar 4/1/28 Outline Current RF Feedback System MIMO

More information

Beam Diagnostics, Low Level RF and Feedback for Room Temperature FELs. Josef Frisch Pohang, March 14, 2011

Beam Diagnostics, Low Level RF and Feedback for Room Temperature FELs. Josef Frisch Pohang, March 14, 2011 Beam Diagnostics, Low Level RF and Feedback for Room Temperature FELs Josef Frisch Pohang, March 14, 2011 Room Temperature / Superconducting Very different pulse structures RT: single bunch or short bursts

More information

- RF Master-Reference Update (F.Ludwig, H.Weddig - DESY, K.Czuba - TU Warsaw) - Beam Stability Update (C.Gerth, F.Ludwig, G.

- RF Master-Reference Update (F.Ludwig, H.Weddig - DESY, K.Czuba - TU Warsaw) - Beam Stability Update (C.Gerth, F.Ludwig, G. FLASH Meeting, 21/04/09 Beam Stability at FLASH - update F.Ludwig - DESY Content : - Motivation - RF Master-Reference Update (F.Ludwig, H.Weddig - DESY, K.Czuba - TU Warsaw) - Beam Stability Update (C.Gerth,

More information

State of the Art in RF Control

State of the Art in RF Control State of the Art in RF Control S. Simrock, DESY LINAC 2004, Lübeck Stefan Simrock DESY Outline RF System Architecture Requirements for RF Control RF Control Design Considerations Design Efforts Worldwide

More information

Automatic phase calibration for RF cavities using beam-loading signals. Jonathan Edelen LLRF 2017 Workshop (Barcelona) 18 Oct 2017

Automatic phase calibration for RF cavities using beam-loading signals. Jonathan Edelen LLRF 2017 Workshop (Barcelona) 18 Oct 2017 Automatic phase calibration for RF cavities using beam-loading signals Jonathan Edelen LLRF 2017 Workshop (Barcelona) 18 Oct 2017 Introduction How do we meet 10-4 energy stability for PIP-II? 2 11/9/2017

More information

DAC and Vector Modulator DC offset calibration

DAC and Vector Modulator DC offset calibration DAC and Vector Modulator DC calibration Zheqiao Geng March 9, 9 Introduction This is the algorithm to calibrate the DC of the DAC of the LLRF controller. The goals are Calibrate the DAC/VM DC automatically

More information

Field Stability Issue for Normal Conducting Cavity under Beam Loading

Field Stability Issue for Normal Conducting Cavity under Beam Loading Field Stability Issue for Normal Conducting Cavity under Beam Loading Rihua Zeng, 3- - Introduction There is cavity field blip at the beginning of beam loading (~several ten micro-seconds) under PI control

More information

Calibrating the Cavity Voltage. Presentation of an idea

Calibrating the Cavity Voltage. Presentation of an idea Calibrating the Cavity Voltage. Presentation of an idea Stefan Wilke, DESY MHF-e 21st ESLS rf meeting Kraków, 15th/16th nov 2017 Accelerators at DESY. linear and circular Page 2 Accelerators at DESY. linear

More information

INTRA-TRAIN LONGITUDINAL FEEDBACK FOR BEAM STABILIZATION AT FLASH

INTRA-TRAIN LONGITUDINAL FEEDBACK FOR BEAM STABILIZATION AT FLASH INTRA-TRAIN LONGITUDINAL FEEDBACK FOR BEAM STABILIZATION AT FLASH W. Koprek*, C. Behrens, M. K. Bock, M. Felber, P. Gessler, K. Hacker, H. Schlarb, C. Schmidt, B. Steffen, S. Wesch, DESY, Hamburg, Germany

More information

Digital Signal Processing in RF Applications

Digital Signal Processing in RF Applications Digital Signal Processing in RF Applications Part II Thomas Schilcher Outline 1. signal conditioning / down conversion 2. detection of amp./phase by digital I/Q sampling I/Q sampling non I/Q sampling digital

More information

Digital Logic, Algorithms, and Functions for the CEBAF Upgrade LLRF System Hai Dong, Curt Hovater, John Musson, and Tomasz Plawski

Digital Logic, Algorithms, and Functions for the CEBAF Upgrade LLRF System Hai Dong, Curt Hovater, John Musson, and Tomasz Plawski Digital Logic, Algorithms, and Functions for the CEBAF Upgrade LLRF System Hai Dong, Curt Hovater, John Musson, and Tomasz Plawski Introduction: The CEBAF upgrade Low Level Radio Frequency (LLRF) control

More information

Digital Self Excited Loop Implementation and Experience. Trent Allison Curt Hovater John Musson Tomasz Plawski

Digital Self Excited Loop Implementation and Experience. Trent Allison Curt Hovater John Musson Tomasz Plawski Digital Self Excited Loop Implementation and Experience Trent Allison Curt Hovater John Musson Tomasz Plawski Overview Why Self Excited Loop? Algorithm Building Blocks Hardware and Sampling Digital Signal

More information

utca for SPS 200MHz Low Level RF Upgrade

utca for SPS 200MHz Low Level RF Upgrade 12th xtca Interest Group Meeting P. Baudrenghien, J. Galindo*, G. Hagmann, G. Kotzian, L. Schmid, A. Spierer CERN BE-RF Today s presentation -LOW LEVEL RF -CERN LLRF PLATFORMS -utca @ CERN-BE -PROOF OF

More information

An Iterative Learning Algorithm for Control of an Accelerator Based Free Electron Laser

An Iterative Learning Algorithm for Control of an Accelerator Based Free Electron Laser Proceedings of the 47th IEEE Conference on Decision and Control Cancun, Mexico, Dec. 9-, 8 WeB5.5 An Iterative Learning Algorithm for Control of an Accelerator Based Free Electron Laser S. Kichhoff, C.

More information

PUBLICATION. A Novel Approach for Automatic Control of Piezoelectric Elements Used for Lorentz Force Detuning Compensation

PUBLICATION. A Novel Approach for Automatic Control of Piezoelectric Elements Used for Lorentz Force Detuning Compensation EuCARD-CON-21-4 European Coordination for Accelerator Research and Development PUBLICATION A Novel Approach for Automatic Control of Piezoelectric Elements Used for Lorentz Force Detuning Compensation

More information

Performance of the Prototype NLC RF Phase and Timing Distribution System *

Performance of the Prototype NLC RF Phase and Timing Distribution System * SLAC PUB 8458 June 2000 Performance of the Prototype NLC RF Phase and Timing Distribution System * Josef Frisch, David G. Brown, Eugene Cisneros Stanford Linear Accelerator Center, Stanford University,

More information

R.Bachimanchi, IPAC, May 2015, Richmond, VA

R.Bachimanchi, IPAC, May 2015, Richmond, VA 1 new module C100 Cryomodule Seven cell Cavity, 0.7 m long (high Q L ) 8 Cavities per Cryomodule Fits the existing Cryomodule footprint Fundamental frequency f 0 Accelerating gradient E acc 1497 MHz >

More information

Design and performance of LLRF system for CSNS/RCS *

Design and performance of LLRF system for CSNS/RCS * Design and performance of LLRF system for CSNS/RCS * LI Xiao 1) SUN Hong LONG Wei ZHAO Fa-Cheng ZHANG Chun-Lin Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China Abstract:

More information

Development of utca Hardware for BAM system at FLASH and XFEL

Development of utca Hardware for BAM system at FLASH and XFEL Development of utca Hardware for BAM system at FLASH and XFEL Samer Bou Habib, Dominik Sikora Insitute of Electronic Systems Warsaw University of Technology Warsaw, Poland Jaroslaw Szewinski, Stefan Korolczuk

More information

3.9 GHz System (AH1) XFEL WP46

3.9 GHz System (AH1) XFEL WP46 3.9 GHz System (AH1) XFEL WP46 14th European XFEL Machine Advisory Committee Meeting 02 May 2016 Paolo Pierini, INFN & DESY Elmar Vogel, DESY + INFN/DESY contributors PPT version 1 26/04/2016 Outline Status

More information

Predictions of LER-HER limits

Predictions of LER-HER limits Predictions of LER-HER limits PEP-II High Current Performance T. Mastorides, C. Rivetta, J.D. Fox, D. Van Winkle Accelerator Technology Research Div., SLAC 2e 34 Meeting, May 2, 27 Contents In this presentation

More information

C100 Cryomodule. Seven cell Cavity, 0.7 m long (high Q L ) 8 Cavities per Cryomodule Fits the existing Cryomodule footprint

C100 Cryomodule. Seven cell Cavity, 0.7 m long (high Q L ) 8 Cavities per Cryomodule Fits the existing Cryomodule footprint 1 new module C100 Cryomodule Seven cell Cavity, 0.7 m long (high Q L ) 8 Cavities per Cryomodule Fits the existing Cryomodule footprint Fundamental frequency f 0 Accelerating gradient E acc 1497 MHz >

More information

Acceleration of High-Intensity Protons in the J-PARC Synchrotrons. KEK/J-PARC M. Yoshii

Acceleration of High-Intensity Protons in the J-PARC Synchrotrons. KEK/J-PARC M. Yoshii Acceleration of High-Intensity Protons in the J-PARC Synchrotrons KEK/J-PARC M. Yoshii Introduction 1. J-PARC consists of 400 MeV Linac, 3 GeV Rapid Cycling Synchrotron (RCS) and 50 GeV Main synchrotron

More information

Performance Evaluation of the Upgraded BAMs at FLASH

Performance Evaluation of the Upgraded BAMs at FLASH Performance Evaluation of the Upgraded BAMs at FLASH with a compact overview of the BAM, the interfacing systems & a short outlook for 2019. Marie K. Czwalinna On behalf of the Special Diagnostics team

More information

FLASH at DESY. FLASH. Free-Electron Laser in Hamburg. The first soft X-ray FEL operating two undulator beamlines simultaneously

FLASH at DESY. FLASH. Free-Electron Laser in Hamburg. The first soft X-ray FEL operating two undulator beamlines simultaneously FLASH at DESY The first soft X-ray FEL operating two undulator beamlines simultaneously Katja Honkavaara, DESY for the FLASH team FEL Conference 2014, Basel 25-29 August, 2014 First Lasing FLASH2 > First

More information

C0da-r I&9 Commissioning Experience with the PEP-XI Low-Level RF System*

C0da-r I&9 Commissioning Experience with the PEP-XI Low-Level RF System* Cdar 9733 I&9 Commissioning Experience with the PEPXI LowLevel RF System* # SLACPUB753 f May 1997 (A) P. Corredoura, S. Allison, R. Claus, W. Ross, L. Sapozhnikov, H. D. Schwarz, R. Tighe, C. Yee, C. Ziomek

More information

EUROFEL-Report-2006-DS EUROPEAN FEL Design Study

EUROFEL-Report-2006-DS EUROPEAN FEL Design Study EUROFEL-Report-2006-DS3-034 EUROPEAN FEL Design Study Deliverable N : D 3.8 Deliverable Title: RF Amplitude and Phase Detector Task: Author: DS-3 F.Ludwig, M.Hoffmann, M.Felber, Contract N : 011935 P.Strzalkowski,

More information

Dark Current Kicker Studies at FLASH

Dark Current Kicker Studies at FLASH Dark Current Kicker Studies at FLASH F. Obier, J. Wortmann, S. Schreiber, W. Decking, K. Flöttmann FLASH Seminar, DESY, 02 Feb 2010 History of the dark current kicker 2005 Vertical kicker was installed

More information

Performance of the TTF Photoinjector Laser System

Performance of the TTF Photoinjector Laser System Performance of the TTF Photoinjector Laser System S. Schreiber, DESY Laser Issues for Electron Photoinjectors, October 23-25, 22, Stanford, California, USA & I. Will, A. Liero, W. Sandner, MBI Berlin Overview

More information

To produce more powerful and high-efficiency particle accelerator, efforts have

To produce more powerful and high-efficiency particle accelerator, efforts have Measuring Unloaded Quality Factor of Superconducting RF Cryomodule Jian Cong Zeng Department of Physics and Astronomy, State University of New York at Geneseo, Geneseo, NY 14454 Elvin Harms, Jr. Accelerator

More information

EXPERIMENTAL RESULT OF LORENTZ DETUNING IN STF PHASE-1 AT KEK-STF

EXPERIMENTAL RESULT OF LORENTZ DETUNING IN STF PHASE-1 AT KEK-STF EXPERIMENTAL RESULT OF LORENTZ DETUNING IN STF PHASE-1 AT KEK-STF Y. Yamamoto #, H. Hayano, E. Kako, T. Matsumoto, S. Michizono, T. Miura, S. Noguchi, M. Satoh, T. Shishidio, K. Watanabe, KEK, Tsukuba,

More information

ABSTRACT 1 CEBAF UPGRADE CAVITY/CRYOMODULE

ABSTRACT 1 CEBAF UPGRADE CAVITY/CRYOMODULE Energy Content (Normalized) SC Cavity Resonance Control System for the 12 GeV Upgrade Cavity: Requirements and Performance T. Plawski, T. Allison, R. Bachimanchi, D. Hardy, C. Hovater, Thomas Jefferson

More information

HOM Based Diagnostics at the TTF

HOM Based Diagnostics at the TTF HOM Based Diagnostics at the TTF Nov 14, 2005 Josef Frisch, Nicoleta Baboi, Linda Hendrickson, Olaf Hensler, Douglas McCormick, Justin May, Olivier Napoly, Rita Paparella, Marc Ross, Claire Simon, Tonee

More information

Slide Title. Bulleted Text

Slide Title. Bulleted Text Slide Title 1 Slide Outline Title Brief view of the C-AD Complex Review of the RHIC LLRF Upgrade Platform Generic Implementation of a Feedback Loop RHIC Bunch by Bunch Longitudinal Damper Cavity Controller

More information

10th ESLS RF Meeting September ALBA RF System. F. Perez. on behalf of the ALBA RF Group. ALBA RF System 1/21

10th ESLS RF Meeting September ALBA RF System. F. Perez. on behalf of the ALBA RF Group. ALBA RF System 1/21 ALBA RF System F. Perez on behalf of the ALBA RF Group ALBA RF System 1/21 Synchrotron Light Source in Cerdanyola (Barcelona, Spain) 3 GeV accelerator 30 beamlines (7 on day one) 50-50 Spanish Government

More information

Physics Requirements Document Document Title: SCRF 1.3 GHz Cryomodule Document Number: LCLSII-4.1-PR-0146-R0 Page 1 of 7

Physics Requirements Document Document Title: SCRF 1.3 GHz Cryomodule Document Number: LCLSII-4.1-PR-0146-R0 Page 1 of 7 Document Number: LCLSII-4.1-PR-0146-R0 Page 1 of 7 Document Approval: Originator: Tor Raubenheimer, Physics Support Lead Date Approved Approver: Marc Ross, Cryogenic System Manager Approver: Jose Chan,

More information

Microphonics. T. Powers

Microphonics. T. Powers Microphonics T. Powers What is microphonics? Microphonics is the time domain variation in cavity frequency driven by external vibrational sources. A 1.5 GHz structure 0.5 m long will change in frequency

More information

ALICE SRF SYSTEM COMMISSIONING EXPERIENCE A. Wheelhouse ASTeC, STFC Daresbury Laboratory

ALICE SRF SYSTEM COMMISSIONING EXPERIENCE A. Wheelhouse ASTeC, STFC Daresbury Laboratory ALICE SRF SYSTEM COMMISSIONING EXPERIENCE A. Wheelhouse ASTeC, STFC Daresbury Laboratory ERL 09 8 th 12 th June 2009 ALICE Accelerators and Lasers In Combined Experiments Brief Description ALICE Superconducting

More information

EMX-1434 APPLICATIONS FEATURES A SMART PXI EXPRESS 4-CHANNEL KSA/S ARBITRARY WAVEFORM GENERATOR

EMX-1434 APPLICATIONS FEATURES A SMART PXI EXPRESS 4-CHANNEL KSA/S ARBITRARY WAVEFORM GENERATOR 83-0061-000 15A D A T A S H E E T EMX-1434 SMART PXI EXPRESS 4-CHANNEL 204.8 KSA/S ARBITRARY WAVEFORM GENERATOR APPLICATIONS Modal / GVT (Ground Vehicle Testing) Acoustics Shock / Vibration Rotational

More information

RF-based Synchronization of the Seed and Pump-Probe Lasers to the Optical Synchronization System at FLASH

RF-based Synchronization of the Seed and Pump-Probe Lasers to the Optical Synchronization System at FLASH RF-based Synchronization of the Seed and Pump-Probe Lasers to the Optical Synchronization System at FLASH Introduction to the otical synchronization system and concept of RF generation for locking of Ti:Sapphire

More information

LLRF4 Evaluation Board

LLRF4 Evaluation Board LLRF4 Evaluation Board USPAS Lab Reference Author: Dmitry Teytelman Revision: 1.1 June 11, 2009 Copyright Dimtel, Inc., 2009. All rights reserved. Dimtel, Inc. 2059 Camden Avenue, Suite 136 San Jose, CA

More information

Waveguide Arc Restrike Test Results Abstract Background

Waveguide Arc Restrike Test Results Abstract Background Waveguide Arc Restrike Test Results Tom Powers, Doug Curry, Kirk Davis, Larry King, and Mike Tiefenback Thomas Jefferson National Accelerator Facility (Test dates July 6, 2004 through September 2, 2004)

More information

RF System Models and Longitudinal Beam Dynamics

RF System Models and Longitudinal Beam Dynamics RF System Models and Longitudinal Beam Dynamics T. Mastoridis 1, P. Baudrenghien 1, J. Molendijk 1, C. Rivetta 2, J.D. Fox 2 1 BE-RF Group, CERN 2 AARD-Feedback and Dynamics Group, SLAC T. Mastoridis LLRF

More information

The low level radio frequency control system for DC-SRF. photo-injector at Peking University *

The low level radio frequency control system for DC-SRF. photo-injector at Peking University * The low level radio frequency control system for DC-SRF photo-injector at Peking University * WANG Fang( 王芳 ) 1) FENG Li-Wen( 冯立文 ) LIN Lin( 林林 ) HAO Jian-Kui( 郝建奎 ) Quan Sheng-Wen( 全胜文 ) ZHANG Bao-Cheng(

More information

Normal-conducting high-gradient rf systems

Normal-conducting high-gradient rf systems Normal-conducting high-gradient rf systems Introduction Motivation for high gradient Order of 100 GeV/km Operational and state-of-the-art SwissFEL C-band linac: Just under 30 MV/m CLIC prototypes: Over

More information

ESS RF Development at Uppsala University. Roger Ruber for the FREIA team Uppsala University

ESS RF Development at Uppsala University. Roger Ruber for the FREIA team Uppsala University ESS RF Development at Uppsala University Roger Ruber for the FREIA team Uppsala University ESS-UU Collaboration 2009 ESS and UU start discussion on 704 MHz RF development proposal for ESS dedicated test

More information

DEVELOPMENT OF A DLLRF USING COMERCIAL UTCA PLATFORM

DEVELOPMENT OF A DLLRF USING COMERCIAL UTCA PLATFORM ACDIV-2017-11 May 2017 DEVELOPMENT OF A DLLRF USING COMERCIAL UTCA PLATFORM A. Salom, E. Morales, F. Pérez - ALBA Synchrotron Abstract The Digital LLRF of ALBA has been implemented using commercial cpci

More information

Baseband simulation model of the vector rf voltage control system for the J-PARC RCS

Baseband simulation model of the vector rf voltage control system for the J-PARC RCS Journal of Physics: Conference Series PAPER OPEN ACCESS Baseband simulation model of the vector rf voltage control system for the J-PARC RCS To cite this article: Fumihiko Tamura et al 2018 J. Phys.: Conf.

More information

XC83x AP Application Note. Microcontrollers. intouch Application Kit - Touch Sliders V1.0,

XC83x AP Application Note. Microcontrollers. intouch Application Kit - Touch Sliders V1.0, XC83x AP08129 Application Note V1.0, 2012-02 Microcontrollers Edition 2012-02 Published by Infineon Technologies AG 81726 Munich, Germany 2012 Infineon Technologies AG All Rights Reserved. LEGAL DISCLAIMER

More information

RF Locking of Femtosecond Lasers

RF Locking of Femtosecond Lasers RF Locking of Femtosecond Lasers Josef Frisch, Karl Gumerlock, Justin May, Steve Smith SLAC Work supported by DOE contract DE-AC02-76SF00515 1 Overview FEIS 2013 talk discussed general laser locking concepts

More information

SIGNAL RECOVERY. Model 7265 DSP Lock-in Amplifier

SIGNAL RECOVERY. Model 7265 DSP Lock-in Amplifier Model 7265 DSP Lock-in Amplifier FEATURES 0.001 Hz to 250 khz operation Voltage and current mode inputs Direct digital demodulation without down-conversion 10 µs to 100 ks output time constants Quartz

More information

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 98 Chapter-5 ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 99 CHAPTER-5 Chapter 5: ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION S.No Name of the Sub-Title Page

More information

Feedback Requirements for SASE FELS. Henrik Loos, SLAC IPAC 2010, Kyoto, Japan

Feedback Requirements for SASE FELS. Henrik Loos, SLAC IPAC 2010, Kyoto, Japan Feedback Requirements for SASE FELS Henrik Loos, SLAC, Kyoto, Japan 1 1 Henrik Loos Outline Stability requirements for SASE FELs Diagnostics for beam parameters Transverse: Beam position monitors Longitudinal:

More information

PARAMETER LIST MICROFUSION

PARAMETER LIST MICROFUSION MICROFUSION PARAMETER LIST MicroFUSION controllers contain nonvolatile EEPROMs, and writing too frequently to an individual parameter may wear out the EEPROM and cause the controller to fail. Control Concepts

More information

FLASH II: an Overview

FLASH II: an Overview FLASH II: an Overview 1. Layout. 2. Status 1. Civil Construction 2. E-beamline 3. Photon Beamline 3. Timeplan 4. Finances 5. Personnel Situation 6. Simultaneous Operation of FLASH1 and 2 FLASH II is a

More information

Position of the LHC luminous region

Position of the LHC luminous region Position of the LHC luminous region SL/HRF reported by Philippe Baudrenghien Philippe Baudrenghien SL-HRF 1 RF low-level during physics (tentative...) Good lifetime -> One phase loop per beam... - Goal

More information

Electro-optic Spectral Decoding Measurements at FLASH

Electro-optic Spectral Decoding Measurements at FLASH Electro-optic Spectral Decoding Measurements at FLASH, FLA Florian Loehl, Sebastian Schulz, Laurens Wißmann Motivation Development of a robust online bunch length monitor for FLASH and XFEL Transition

More information

Designing with STM32F3x

Designing with STM32F3x Designing with STM32F3x Course Description Designing with STM32F3x is a 3 days ST official course. The course provides all necessary theoretical and practical know-how for start developing platforms based

More information

Compact Series: S5065 & S5085 Vector Network Analyzers KEY FEATURES

Compact Series: S5065 & S5085 Vector Network Analyzers KEY FEATURES Compact Series: S5065 & S5085 Vector Network Analyzers KEY FEATURES Frequency range: 9 khz - 6.5 or 8.5 GHz Measured parameters: S11, S12, S21, S22 Wide output power adjustment range: -50 dbm to +5 dbm

More information

Status on Pulsed Timing Distribution Systems and Implementations at DESY, FERMI and XFEL

Status on Pulsed Timing Distribution Systems and Implementations at DESY, FERMI and XFEL FLS Meeting March 7, 2012 Status on Pulsed Timing Distribution Systems and Implementations at DESY, FERMI and XFEL Franz X. Kärtner Center for Free-Electron Laser Science, DESY and Department of Physics,

More information

MTY (81)

MTY (81) This manual describes the option "d" of the SMT-BD1 amplifier: Master/slave electronic gearing. The general information about the digital amplifier commissioning are described in the standard SMT-BD1 manual.

More information

FLASH. FLASH Training: RF Gun. FLASH: the first soft X-ray FEL operating two undulator beamlines simultaneously. Siegfried Schreiber, DESY

FLASH. FLASH Training: RF Gun. FLASH: the first soft X-ray FEL operating two undulator beamlines simultaneously. Siegfried Schreiber, DESY FLASH Training: RF Gun FLASH: the first soft X-ray FEL operating two undulator beamlines simultaneously Siegfried Schreiber, DESY FLASH Training DESY 17-Mar-2017 FLASH1 RF Gun History RF Guns operated

More information

Embedded Control Project -Iterative learning control for

Embedded Control Project -Iterative learning control for Embedded Control Project -Iterative learning control for Author : Axel Andersson Hariprasad Govindharajan Shahrzad Khodayari Project Guide : Alexander Medvedev Program : Embedded Systems and Engineering

More information

ArbStudio Arbitrary Waveform Generators. Powerful, Versatile Waveform Creation

ArbStudio Arbitrary Waveform Generators. Powerful, Versatile Waveform Creation ArbStudio Arbitrary Waveform Generators Powerful, Versatile Waveform Creation UNMATCHED WAVEFORM UNMATCHED WAVEFORM GENERATION GENERATION Key Features 125 MHz bandwidth 1 GS/s maximum sample rate Long

More information

For my parents

For my parents Ì Ò Ð ÍÒ Ú Ö ØÝ Ó ÄÓ Þ Ì ÙÐØÝ Ó Ð ØÖ Ð Ð ØÖÓÒ ÓÑÔÙØ Ö Ò ÓÒØÖÓÐ Ò Ò Ö Ò Ô ÖØÑ ÒØ Ó Å ÖÓ Ð ØÖÓÒ Ò ÓÑÔÙØ Ö Ë Ò È Û È ÛÐ ÅË Ð Ö Ø Ò Ð ØÖ Ð ØÖ Ò Ø ÑÔÐ ØÙ Ò Ô Ð Ö Ø ÓÒ ÓÒ Ô ÖØ Ð Ñ Ò Ù Ð ØÖ Ð ØÖ Ò Ø ØÖ Ò ÒØ Ø

More information

Impedance 50 (75 connectors via adapters)

Impedance 50 (75 connectors via adapters) VECTOR NETWORK ANALYZER PLANAR 304/1 DATA SHEET Frequency range: 300 khz to 3.2 GHz Measured parameters: S11, S21, S12, S22 Dynamic range of transmission measurement magnitude: 135 db Measurement time

More information

Digital Low Level RF for SESAME

Digital Low Level RF for SESAME Technical Sector Synchrotron-light for Experimental Science And Applications in the Middle East Subject : RF More specified area: Digital Low Level RF Date: 6/23/2010 Total Number of Pages: 11 Document

More information

Session 3 Summary: Orbit Feedback

Session 3 Summary: Orbit Feedback Session 3 Summary: Orbit Feedback Workshop on Ambient Ground Motion and Vibration Suppression for Low Emittance Storage Rings GM2017 12/13/2017 MMS System Design, Initial Results and Experiments with Orbit

More information

Capacitive MEMS accelerometer for condition monitoring

Capacitive MEMS accelerometer for condition monitoring Capacitive MEMS accelerometer for condition monitoring Alessandra Di Pietro, Giuseppe Rotondo, Alessandro Faulisi. STMicroelectronics 1. Introduction Predictive maintenance (PdM) is a key component of

More information

Beam Control: Timing, Protection, Database and Application Software

Beam Control: Timing, Protection, Database and Application Software Beam Control: Timing, Protection, Database and Application Software C.M. Chu, J. Tang 储中明 / 唐渊卿 Spallation Neutron Source Oak Ridge National Laboratory Outline Control software overview Timing system Protection

More information

ArbStudio Arbitrary Waveform Generators

ArbStudio Arbitrary Waveform Generators ArbStudio Arbitrary Waveform Generators Key Features Outstanding performance with 16-bit, 1 GS/s sample rate and 2 Mpts/Ch 2 and 4 channel models Digital pattern generator PWM mode Sweep and burst modes

More information

INTEGRATED CIRCUITS. AN109 Microprocessor-compatible DACs Dec

INTEGRATED CIRCUITS. AN109 Microprocessor-compatible DACs Dec INTEGRATED CIRCUITS 1988 Dec DAC products are designed to convert a digital code to an analog signal. Since a common source of digital signals is the data bus of a microprocessor, DAC circuits that are

More information

Development of an Experimental Rig for Doubly-Fed Induction Generator based Wind Turbine

Development of an Experimental Rig for Doubly-Fed Induction Generator based Wind Turbine Development of an Experimental Rig for Doubly-Fed Induction Generator based Wind Turbine T. Neumann, C. Feltes, I. Erlich University Duisburg-Essen Institute of Electrical Power Systems Bismarckstr. 81,

More information

Measurement Setup for Bunched Beam Echoes in the HERA Proton Storage Ring

Measurement Setup for Bunched Beam Echoes in the HERA Proton Storage Ring Measurement Setup for Bunched Beam Echoes in the HERA Proton Storage Ring 1 Measurement Setup for Bunched Beam Echoes in the HERA Proton Storage Ring Elmar Vogel, Wilhelm Kriens and Uwe Hurdelbrink Deutsches

More information

Design considerations for the RF phase reference distribution system for X-ray FEL and TESLA

Design considerations for the RF phase reference distribution system for X-ray FEL and TESLA Design considerations for the RF phase reference distribution system for X-ray FEL and TESLA Krzysztof Czuba *a, Henning C. Weddig #b a Institute of Electronic Systems, Warsaw University of Technology,

More information

Increasing Performance Requirements and Tightening Cost Constraints

Increasing Performance Requirements and Tightening Cost Constraints Maxim > Design Support > Technical Documents > Application Notes > Power-Supply Circuits > APP 3767 Keywords: Intel, AMD, CPU, current balancing, voltage positioning APPLICATION NOTE 3767 Meeting the Challenges

More information

Excitation Systems THYRIPART. Compound-Excitation System for Synchronous Generators. Power Generation

Excitation Systems THYRIPART. Compound-Excitation System for Synchronous Generators. Power Generation Excitation Systems Compound-Excitation System for Synchronous Generators Power Generation Operating Characteristics Load dependent Short circuit supporting Low voltage gradient dv/dt Black start capability

More information

Appendix B. Design Implementation Description For The Digital Frequency Demodulator

Appendix B. Design Implementation Description For The Digital Frequency Demodulator Appendix B Design Implementation Description For The Digital Frequency Demodulator The DFD design implementation is divided into four sections: 1. Analog front end to signal condition and digitize the

More information

Dark current Monitor for the European XFEL D. Lipka, W. Kleen, J. Lund-Nielsen, D. Nölle, S. Vilcins, V. Vogel; DESY Hamburg

Dark current Monitor for the European XFEL D. Lipka, W. Kleen, J. Lund-Nielsen, D. Nölle, S. Vilcins, V. Vogel; DESY Hamburg Dark current Monitor for the European XFEL D. Lipka, W. Kleen, J. Lund-Nielsen, D. Nölle, S. Vilcins, V. Vogel; DESY Hamburg Content 2 Dark current Principle of detecting weakly charged bunches with resonator

More information

PLANAR R54. Vector Reflectometer KEY FEATURES

PLANAR R54. Vector Reflectometer KEY FEATURES PLANAR R54 Vector Reflectometer KEY FEATURES Frequency range: 85 MHz 5.4 GHz Reflection coefficient magnitude and phase, cable loss, DTF Transmission coefficient magnitude when using two reflectometers

More information

BCS UPDATE. j. welch 2/9/17

BCS UPDATE. j. welch 2/9/17 BCS UPDATE j. welch 2/9/17 TOPICS RP requirements Shutoff path Beam loss detection scheme Beam loss detectors and FPGAs Current monitors Dumps RP REQUIREMENTS Revised BCS PRD was circulated Tuesday for

More information

3.9 GHz Deflecting Mode Cavity

3.9 GHz Deflecting Mode Cavity 3.9 GHz Deflecting Mode Cavity Timothy W. Koeth July 12, 2005 History of 3.9 GHz DMC Cavity Simulations The Other Modes concern and modeling R/Q Wake Field Simulations Design: OM couplers Testing: Vertical

More information

Differential Two-Wire Hall Effect Sensor IC TLE 4942 TLE 4942 C

Differential Two-Wire Hall Effect Sensor IC TLE 4942 TLE 4942 C Differential Two-Wire Hall Effect Sensor IC TLE 4942 TLE 4942 C Features Two-wire PWM current interface Detection of rotation direction Airgap diagnosis Assembly position diagnosis Dynamic self-calibration

More information

Commissioning of the ALICE SRF Systems at Daresbury Laboratory Alan Wheelhouse, ASTeC, STFC Daresbury Laboratory ESLS RF 1 st 2 nd October 2008

Commissioning of the ALICE SRF Systems at Daresbury Laboratory Alan Wheelhouse, ASTeC, STFC Daresbury Laboratory ESLS RF 1 st 2 nd October 2008 Commissioning of the ALICE SRF Systems at Daresbury Laboratory Alan Wheelhouse, ASTeC, STFC Daresbury Laboratory ESLS RF 1 st 2 nd October 2008 Overview ALICE (Accelerators and Lasers In Combined Experiments)

More information