diff --git a/_modules/omc3/correction/response_madx.html b/_modules/omc3/correction/response_madx.html index a39fbafa..5091a053 100644 --- a/_modules/omc3/correction/response_madx.html +++ b/_modules/omc3/correction/response_madx.html @@ -310,9 +310,9 @@

Source code for omc3.correction.response_madx

break var = variables[var_idx] incr_dict[var] = delta_k - current_job += f"{var}={var}{delta_k:+f};\n" + current_job += f"{var} = {var}{delta_k:+.15e};\n" current_job += f"twiss, file='{str(temp_dir / f'twiss.{var}')}';\n" - current_job += f"{var}={var}{-delta_k:+f};\n\n" + current_job += f"{var} = {var}{-delta_k:+.15e};\n\n" if proc_idx == num_proc - 1: current_job += f"twiss, file='{str(temp_dir / 'twiss.0')}';\n" diff --git a/_modules/omc3/model/accelerators/lhc.html b/_modules/omc3/model/accelerators/lhc.html index d081c92f..77248c9e 100644 --- a/_modules/omc3/model/accelerators/lhc.html +++ b/_modules/omc3/model/accelerators/lhc.html @@ -564,6 +564,10 @@

Source code for omc3.model.accelerators.lhc

 
 
     def important_phase_advances(self) -> List[List[str]]:
+        if "hl" in self.year.lower(): 
+            # skip if HiLumi, TODO: insert phase advances when they are finalised
+            return []
+
         if self.beam == 2:
             return [["MKD.O5R6.B2", "TCTPH.4R1.B2"], ["MKD.O5R6.B2", "TCTPH.4R5.B2"]]
         if self.beam == 1:
diff --git a/environment.pickle b/environment.pickle
index db66d973..7aeeb9f6 100644
Binary files a/environment.pickle and b/environment.pickle differ