From 526db172984c3760c3be65746f1fb88c416f6bc7 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Bayle <j2b.bayle@gmail.com> Date: Thu, 26 Oct 2023 17:55:13 +0200 Subject: [PATCH] Warn when using static locking beatnote freqs --- lisainstrument/instrument.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisainstrument/instrument.py b/lisainstrument/instrument.py index 175157a..ef92293 100755 --- a/lisainstrument/instrument.py +++ b/lisainstrument/instrument.py @@ -528,7 +528,11 @@ class Instrument: fplan: `fplan` parameter, c.f. `__init__()` """ if fplan == 'static': - logger.info("Using default set of locking beatnote frequencies") + logger.warning( + "Using default set of locking beatnote frequencies; this " + "might cause interferometric beatnote frequencies to fall " + "outside the requirement range of 5..25 MHz" + ) self.fplan_file = None self.fplan = ForEachMOSA({ '12': 8E6, '23': 9E6, '31': 10E6, -- GitLab