Hands On Accelerator Physics Using MATLAB®, 1e Vol
Hands On Accelerator Physics Using MATLAB®, 1e Vol
Tentamen (uitwerkingen)
Hands On Accelerator Physics Using MATLAB® 1st Edition By Volker Ziemann (Solution Manual)
10 keer bekeken 1 keer verkocht
Vak
Hands On Accelerator Physics Using MATLAB®, 1e Vol
Instelling
Hands On Accelerator Physics Using MATLAB®, 1e Vol
Hands On Accelerator Physics Using MATLAB®, 1e Volker Ziemann (Solution Manual)
Hands On Accelerator Physics Using MATLAB®, 1e Volker Ziemann (Solution Manual)
, 1 Introduction
The material com-prises of all MATLAB code and the online appendices from the
book. Note that Appendix B.5 contains discussions of the code examples. Since
the solutions, dis-cussed in this manual, are based on the code examples from the
book, it is strongly recommended to download the additional material, which is
freely available from the web site mentioned above.
2 For Chapter 2
For the design of the beam lines in the first few exercises, it is convenient to encap-
sulate most of the script layout.m in a separate function, such that it can be used
repeatedly without excessive copying.
% layout_function.m
function vvpos=layout_function(beamline)
hold on
nlines=size(beamline,1); % number of lines
nele=sum(beamline(:,2))+1; % number of elements
vvpos=zeros(3,nele); % element positions
f=fopen(’layout.scad’,’w’); % open output file for 3D view
vv=[0;0;0]; % x,y,z or origin
ww=eye(3); % orientation of tripod
ic=1; % element counter
for line=1:nlines % loop over input elements
for seg=1:beamline(line,2) % loop over repeat-count
v0=vv; w0=ww; % remember previous point
ic=ic+1;
switch beamline(line,1)
case {1,2,5,7} % drift, quadrupole, solenoid
dv=[0;0;beamline(line,3)];
dw=eye(3);
case 4 % sector dipole
phi=beamline(line,4)*pi/180; % convert to radians
if abs(phi)>1e-7
rho=beamline(line,3)/phi; % bending radius
dv=[rho*(cos(phi)-1);0.0;rho*sin(phi)]; % sagitta
dw=wmake(0,-phi,0);
dw2=wmake(0,-phi/2,0); % for 3D renderer only
else
dv=[0;0;beamline(line,3)];
dw=eye(3);
end
4
Voordelen van het kopen van samenvattingen bij Stuvia op een rij:
Verzekerd van kwaliteit door reviews
Stuvia-klanten hebben meer dan 700.000 samenvattingen beoordeeld. Zo weet je zeker dat je de beste documenten koopt!
Snel en makkelijk kopen
Je betaalt supersnel en eenmalig met iDeal, creditcard of Stuvia-tegoed voor de samenvatting. Zonder lidmaatschap.
Focus op de essentie
Samenvattingen worden geschreven voor en door anderen. Daarom zijn de samenvattingen altijd betrouwbaar en actueel. Zo kom je snel tot de kern!
Veelgestelde vragen
Wat krijg ik als ik dit document koop?
Je krijgt een PDF, die direct beschikbaar is na je aankoop. Het gekochte document is altijd, overal en oneindig toegankelijk via je profiel.
Tevredenheidsgarantie: hoe werkt dat?
Onze tevredenheidsgarantie zorgt ervoor dat je altijd een studiedocument vindt dat goed bij je past. Je vult een formulier in en onze klantenservice regelt de rest.
Van wie koop ik deze samenvatting?
Stuvia is een marktplaats, je koop dit document dus niet van ons, maar van verkoper tutorsection. Stuvia faciliteert de betaling aan de verkoper.
Zit ik meteen vast aan een abonnement?
Nee, je koopt alleen deze samenvatting voor €12,35. Je zit daarna nergens aan vast.