1+ """
2+ Launcher script to HTCondor for GPU - generate python scripts for SPS neon Qy scan
3+ """
4+ import fma_ions
5+ import os
6+ import pathlib
7+ import numpy as np
8+ import datetime
9+
10+ # Find path of script being run
11+ dir_path = pathlib .Path (__file__ ).parent .absolute ()
12+
13+ # Define run files and which parameters to change
14+ master_name = 'Qy_scan_neon_ibs_50_150_300_600_Hz_ripple_adaptive_sc_WITH_TRANSFER_FUNCTION_477k_turns_as_03_07_2025_MD_477k_turns'
15+ num_turns = 477_000 # corresponds to 11s for SPS ions at flat bottom
16+ Qx = 26.31
17+ Qy_range = np .arange (26.10 , 26.28 , 0.01 )
18+ run_files = ['sps_neon_run_{}_tbt_qx_26dot31_long.py' .format (i + 1 ) for i in range (len (Qy_range ))]
19+
20+ # Define script and folder names
21+ script_names = run_files .copy ()
22+ folder_names = ['sps_Qx_{:.2f}_Qy_{:.2f}' .format (Qx , Qy_range [i ]) for i in range (len (Qy_range ))]
23+ string_array = ['Qy = {:.2f}, Qx = {:.2f} space charge' .format (Qy_range [i ], Qx ) for i in range (len (Qy_range ))]
24+
25+ # Generate the scripts to be submitted
26+ for i , run_file in enumerate (run_files ):
27+
28+ # Write run file for given tune
29+ print ('Generating launch script {}\n ' .format (run_file ))
30+ run_file = open (run_file , 'w' )
31+ run_file .truncate (0 ) # remove existing content, if any
32+ run_file .write (
33+ '''import fma_ions
34+ import numpy as np
35+ output_dir = './'
36+
37+ n_turns = {}
38+ num_part = 20_000
39+
40+ # Transfer function factors
41+ a_50 = 1.0 #1.7170
42+ a_150 = 0.5098
43+ a_300 = 0.2360
44+ a_600 = 0.1095
45+
46+ # Desired ripple frequencies and amplitudes
47+ ripple_freqs = np.array([50.0, 150.0, 300.0, 600.0])
48+ kqf_amplitudes = np.array([1.0141062492337905e-06*a_50, 1.9665396648867768e-07*a_150, 3.1027971430227987e-07*a_300, 4.5102937494506313e-07*a_600])
49+ kqd_amplitudes = np.array([1.0344583265981035e-06*a_50, 4.5225494700433166e-07*a_150, 5.492718035100028e-07*a_300, 4.243698659233664e-07*a_600])
50+ kqf_phases = np.array([0.7646995873548973, 2.3435670020522825, -1.1888958255027886, 2.849205512655574])
51+ kqd_phases = np.array([0.6225130389353318, -1.044380492147742, -1.125401419249802, -0.30971750008702853])
52+
53+
54+ # Tracking on GPU context
55+ sps = fma_ions.SPS_Flat_Bottom_Tracker(qx0={:.3f}, qy0={:.3f}, num_turns=n_turns, num_part=num_part)
56+ tbt = sps.track_SPS(ion_type='Ne', which_context='gpu', distribution_type='qgaussian', install_SC_on_line=True, add_beta_beat=True,
57+ add_non_linear_magnet_errors=True, apply_kinetic_IBS_kicks=True, ibs_step = 2000,
58+ add_tune_ripple=True, ripple_freqs = ripple_freqs, kqf_amplitudes = kqf_amplitudes,
59+ kqd_amplitudes = kqd_amplitudes, kqf_phases=kqf_phases, kqd_phases=kqd_phases,
60+ SC_adaptive_interval_during_tracking=20)
61+ tbt.to_json(output_dir)
62+ ''' .format (num_turns , Qx , Qy_range [i ])
63+ )
64+ run_file .close ()
65+
66+
67+ # Instantiate the submitter class and launch the jobs
68+ sub = fma_ions .Submitter ()
69+ master_job_name = '{:%Y_%m_%d__%H_%M_%S}_{}' .format (datetime .datetime .now (), master_name )
70+
71+ # Launch the Python scripts in this folder
72+ for i , script in enumerate (script_names ):
73+ file_name = os .path .join (dir_path , script )
74+ print (f"Submitting { file_name } " )
75+ sub .submit_GPU (file_name , master_job_name = master_job_name , job_name = folder_names [i ])
76+ sub .copy_master_plot_script (folder_names , string_array )
77+ sub .copy_plot_script_emittances_for_scan (master_name , folder_names , scan_array_for_x_axis = Qy_range ,
78+ label_for_x_axis = 'Injected Pb ions per bunch' ,
79+ extra_text_string = '$Q_{x}$ = 26.31 - q-Gaussian beam\\ nAdaptive SC, ~10% $\\ beta$-beat + non-linear magnet errors' )
0 commit comments