Cheetah Generator¶
geecs_scanner.optimization.generators.cheetah_generator ¶
Cheetah-based Bayesian optimization generator.
This module provides a specialized Bayesian optimization generator that uses the Cheetah particle accelerator simulation framework as a physics-informed prior. The generator is designed for optimizing electron beam transport parameters using realistic beam dynamics simulations.
The Cheetah prior provides physics-based guidance to the optimization process, potentially improving convergence and reducing the number of experimental evaluations needed to find optimal parameters.
Functions:
| Name | Description |
|---|---|
get_cheetah_generator |
Create Cheetah-based Bayesian optimization generator. |
Classes:
| Name | Description |
|---|---|
CheetahPrior |
PyTorch module implementing physics-informed prior using Cheetah simulations. |
Notes
This generator requires: - Cheetah particle accelerator simulation package - PyTorch for neural network components - Access to HTU lattice configuration files - Proper system path configuration for simulation scripts
The generator uses Expected Improvement acquisition function with a Cheetah-based mean function that simulates beam transport through the accelerator lattice.
Functions¶
get_cheetah_generator ¶
get_cheetah_generator(vocs)
Create Cheetah-based Bayesian optimization generator.
Constructs a Bayesian optimization generator that uses the Cheetah particle accelerator simulation framework to provide physics-informed priors. This generator is specifically designed for optimizing electron beam transport parameters in the HTU (High-repetition-rate Terawatt Undulator) beamline.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
vocs
|
VOCS
|
Variables, Objectives, and Constraints Specification defining the optimization problem. Should include quadrupole magnet parameters (EMQ1H, EMQ2V, EMQ3H) as variables. |
required |
Returns:
| Type | Description |
|---|---|
ExpectedImprovementGenerator
|
Bayesian optimization generator with Cheetah-based physics prior. |
Raises:
| Type | Description |
|---|---|
ImportError
|
If Cheetah package or HTU lattice modules cannot be imported. |
Notes
This function requires: - Cheetah accelerator simulation package - HTU lattice configuration and utility functions - PyTorch for neural network components
The generator uses Expected Improvement acquisition with a CheetahPrior mean function that simulates beam transport through the accelerator lattice to provide physics-based guidance.
The hardcoded path suggests this is configured for a specific system and may need adjustment for different installations.
Source code in geecs_scanner/optimization/generators/cheetah_generator.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | |