MTDomeCom¶
- class lsst.ts.mtdomecom.MTDomeCom(log: Logger, config: SimpleNamespace, simulation_mode: ValidSimulationMode = ValidSimulationMode.NORMAL_OPERATIONS, telemetry_callbacks: dict[lsst.ts.mtdomecom.enums.LlcName, Callable[[dict[str, Any]], NoneType]] | None = None, start_periodic_tasks: bool = True)¶
Bases:
object
TCP/IP interface to the MTDome controller.
- Parameters:
- log
logging.Logger
Logger for which a child logger is created.
- config
SimpleNameSpace
The configuration to use. This should contain the host name and port to connect to.
- simulation_mode
ValidSimulationMode
The simulation mode to use. Defaults to
NORMAL_OPERATIONS
.- telemetry_callbacks
dict`[`LlcName
,typing.Callable
] List of telemetry callback coroutines to use. Defaults to
None
.- start_periodic_tasks
bool
Start the periodic tasks or not. Defaults to
True
. Unit tests may set this toFalse
.
- log
Attributes Summary
Methods Summary
Check if all commands have received a reply.
Close all louvers.
Close the shutter.
config_llcs
(system, settings)Config command not to be executed by SAL.
connect
()Connect to the dome controller's TCP/IP port.
crawl_az
(velocity)Crawl AZ.
crawl_el
(velocity)Crawl El.
Disconnect from the TCP/IP controller, if connected, and stop the mock controller, if running.
exit_fault
(sub_system_ids)Indicate that all hardware errors have been resolved.
Indicate that all AMCS hardware errors have been resolved.
Indicate that all LWSCS hardware errors have been resolved.
Indicate that all LCS hardware errors have been resolved.
Indicate that all ApSCS hardware errors have been resolved.
Indicate that all ThCS hardware errors have been resolved.
fans
(speed)Set the speed of the fans.
Check if a non-status command is running.
home
(sub_system_ids)Search the home position of the Aperture Shutter, which is the closed position.
inflate
(action)Inflate or deflate the inflatable seal.
move_az
(position, velocity)Move AZ.
move_el
(position)Move El.
one_periodic_task
(method, interval[, ...])Run one method forever at the specified interval.
Open the shutter.
park
()Park the dome.
Process the commands in the queue, if there are any.
Query the status of all lower level components.
Return a copy of a dict with specified items removed.
request_llc_status
(llc_name)Generic method for retrieving the status of a lower level component.
reset_drives_az
(reset)Reset one or more AZ drives.
reset_drives_shutter
(reset)Reset one or more Aperture Shutter drives.
set_louvers
(position)Set the positions of the louvers.
set_operational_mode
(operational_mode, ...)Indicate that one or more sub_systems need to operate in degraded or normal state.
set_power_management_mode
(power_management_mode)Set the power management mode.
set_temperature
(temperature)Set the preferred temperature in the dome.
Take the current position of the dome as zero.
AMCS status command.
ApSCS status command.
CBCS status command.
CSCS status command.
LCS status command.
LWSCS status command.
MonCS status command.
RAD status command.
ThCS status command.
stop_az
(engage_brakes)Stop AZ motion and engage the brakes if indicated.
stop_el
(engage_brakes)Stop EL motion and engage the brakes if indicated.
stop_louvers
(engage_brakes)Stop Louvers motion and engage the brakes if indicated.
stop_shutter
(engage_brakes)Stop Shutter motion and engage the brakes if indicated.
stop_sub_systems
(sub_system_ids, engage_brakes)Stop all motion and engage the brakes if indicated in the data.
Update the status of the non-status command.
write_then_read_reply
(command, **params)Write the cmd string and then read the reply to the command.
Attributes Documentation
- connected¶
Methods Documentation
- async check_all_commands_have_replies() None ¶
Check if all commands have received a reply.
If a command hasn’t received a reply after at least COMMANDS_REPLIED_PERIOD seconds, a warning is logged.
If a command hasn’t received a reply after at least 2 * COMMANDS_REPLIED_PERIOD seconds, an error is logged and the command is removed from the waiting list.
- async config_llcs(system: LlcName, settings: list[dict[str, str | list[float]]]) None ¶
Config command not to be executed by SAL.
This command will be used to send the values of one or more parameters to configure the lower level components.
- Parameters:
- system: `LlcName`
The name of the lower level component to configure.
- settings
dict
A dict containing key,value for all the parameters that need to be configured. The structure is:
"jmax" "amax" "vmax"
- async connect() None ¶
Connect to the dome controller’s TCP/IP port.
Start the mock controller, if simulating.
- async crawl_az(velocity: float) None ¶
Crawl AZ.
- Parameters:
- velocity
float
The velocity of the target [deg/s].
- velocity
Notes
The AMCS expects the velocity in radians/sec. This method takes care the conversion to radians.
- async crawl_el(velocity: float) None ¶
Crawl El.
- Parameters:
- velocity
float
The velocity of the target [deg/s].
- velocity
Notes
The LWSCS expects the velocity in radians/sec. This method takes care the conversion to radians.
- async disconnect() None ¶
Disconnect from the TCP/IP controller, if connected, and stop the mock controller, if running.
- async exit_fault(sub_system_ids: int) None ¶
Indicate that all hardware errors have been resolved.
- Parameters:
- sub_system_ids
int
Bitmask of the sub-systems to exit fault for.
- sub_system_ids
- async has_non_status_command() bool ¶
Check if a non-status command is running.
- Returns:
- status
bool
True if a non-status command is running, False otherwise.
- status
- async home(sub_system_ids: int) None ¶
Search the home position of the Aperture Shutter, which is the closed position.
This is necessary in case the ApSCS (Aperture Shutter Control system) was shutdown with the Aperture Shutter not fully open or fully closed.
- Parameters:
- sub_system_idsint
Bitmask of the sub-systems to home.
- async inflate(action: OnOff) None ¶
Inflate or deflate the inflatable seal.
- Parameters:
- action
OnOff
The action to perform.
- action
- async move_az(position: float, velocity: float) None ¶
Move AZ.
- Parameters:
Notes
The AMCS expects the position in radians and the velocity in radians/s. On top of that, the AMCS internal angle is offset by about 32 degrees east with respect to 0 degrees azimuth. This method takes care of the offset and the conversion to radians.
- async move_el(position: float) None ¶
Move El.
- Parameters:
- position
float
The elevation position of the target [deg].
- position
Notes
The LWSCS expects the position in radians. This method takes care of the conversion to radians.
- async one_periodic_task(method: Callable, interval: float, wrap_with_async_task: bool = True) None ¶
Run one method forever at the specified interval.
- Parameters:
- method
typing.Callable
The periodic method to run.
- interval
float
The interval (sec) at which to run the status method.
- wrap_with_async_task
bool
, optional Wrap the method in an asyncio task or not. Defaults to
True
.
- method
- async process_command_queue() None ¶
Process the commands in the queue, if there are any.
Depending on the power management state, certain commands take precedence over others. Whether a command actually can be issued depends on the expected power draw for the command and the available power for the rotating part of the dome. If a command can be issued then it is removed from the queue, otherwise not.
- remove_keys_from_dict(dict_with_too_many_keys: dict[str, Any], keys_to_remove: set[str]) dict[str, Any] ¶
Return a copy of a dict with specified items removed.
- async request_llc_status(llc_name: LlcName) None ¶
Generic method for retrieving the status of a lower level component.
The status also is pre_processed, meaning prepared for further processing downstream.
- Parameters:
- llc_name: `LlcName`
The name of the lower level component.
- async reset_drives_az(reset: list[int]) None ¶
Reset one or more AZ drives.
This is necessary when exiting from FAULT state without going to Degraded Mode since the drives don’t reset themselves.
- Parameters:
- reset
list`[`int
] List of indices of the motors to reset.
- reset
- async reset_drives_shutter(reset: list[int]) None ¶
Reset one or more Aperture Shutter drives.
This is necessary when exiting from FAULT state without going to Degraded Mode since the drives don’t reset themselves.
- Parameters:
- reset
list`[`int
] List of indices of the motors to reset.
- reset
- async set_louvers(position: list[float]) None ¶
Set the positions of the louvers.
- Parameters:
- position: array of float
An array of positions, in percentage with 0 meaning closed and 100 fully open, for each louver. A position of -1 means “do not move”.
- async set_operational_mode(operational_mode: OperationalMode, sub_system_ids: int) None ¶
Indicate that one or more sub_systems need to operate in degraded or normal state.
- Parameters:
- operational_mode
OperationalMode
The operaitonal mode to set.
- sub_system_ids
int
Bitmask of the sub-systems to set the operational mode for.
- operational_mode
- async set_power_management_mode(power_management_mode: PowerManagementMode) None ¶
Set the power management mode.
- Parameters:
- power_management_mode
PowerManagementMode
The power management mode to set.
- power_management_mode
- async set_temperature(temperature: float) None ¶
Set the preferred temperature in the dome.
- Parameters:
- temperature: `float`
The temperature, in degrees Celsius, to set.
- async set_zero_az() None ¶
Take the current position of the dome as zero.
This is necessary as long as the racks and pinions on the drives have not been installed yet to compensate for slippage of the drives.
- async stop_az(engage_brakes: bool) None ¶
Stop AZ motion and engage the brakes if indicated. Also disengage the locking pins if engaged.
- Parameters:
- engage_brakesbool
Engage the brakes (true) or not (false).
- async stop_el(engage_brakes: bool) None ¶
Stop EL motion and engage the brakes if indicated. Also disengage the locking pins if engaged.
- Parameters:
- engage_brakesbool
Engage the brakes (true) or not (false).
- async stop_louvers(engage_brakes: bool) None ¶
Stop Louvers motion and engage the brakes if indicated. Also disengage the locking pins if engaged.
- Parameters:
- engage_brakesbool
Engage the brakes (true) or not (false).
- async stop_shutter(engage_brakes: bool) None ¶
Stop Shutter motion and engage the brakes if indicated. Also disengage the locking pins if engaged.
- Parameters:
- engage_brakesbool
Engage the brakes (true) or not (false).
- async stop_sub_systems(sub_system_ids: int, engage_brakes: bool) None ¶
Stop all motion and engage the brakes if indicated in the data. Also disengage the locking pins if engaged.
- async update_status_of_non_status_command(status: bool) None ¶
Update the status of the non-status command.
- Parameters:
- status
bool
Set True if running a non-status command. After it is done, set False.
- status
- async write_then_read_reply(command: CommandName, **params: Any) dict[str, Any] ¶
Write the cmd string and then read the reply to the command.
- Parameters:
- command
CommandName
The command to write.
- **params
typing.Any
The parameters for the command. This may be empty.
- command
- Returns:
- data
dict
A dict of the form {“response”: ResponseCode, “timeout”: TimeoutValue} where “response” can be zero for “OK” or non-zero for any other situation.
- data
Notes
For the function that calls this method, it might need to call the self.update_status_of_non_status_command() first and set the argument to be True if it is a non-status command. Otherwise, the continuous status commands in self.query_status() will block this in the TCP/IP pipe.