Description
The Camera Power Model extends the Sensor Power Model to add capture-specific power behavior for a Camera payload. It inherits constant-power load (CPL) quasi-static behavior from the sensor model and adds a one-tick power spike when the camera captures an image. The model also gates the camera’s ability to capture based on voltage availability.
Example Use Cases
- Camera Power Simulation: Model realistic power draw during imaging operations, including transient spikes during image capture.
- Power Budget Analysis: Evaluate the impact of camera operations on spacecraft power budgets.
Module Implementation
Power Consumption
The model inherits state-based power consumption from the Sensor Power Model (Operational, Standby, Shutdown states). When a capture is triggered, additional power is drawn for one simulation tick:
where is the base power for the current sensor state and is the capture power spike (default 2 W). The spike is cleared at the end of each frame.
Capture Gating
The model controls the camera’s ability to capture images based on power availability. Capture is only permitted when both conditions are met:
- The sensor is in the Operational state
- The solved voltage meets the minimum threshold:
where is the nominal operational voltage and is the minimum voltage ratio.
Assumptions/Limitations
- The capture power spike lasts exactly one simulation tick regardless of actual exposure duration.
- Capture gating is based on instantaneous voltage; brief brownouts will prevent capture even if power recovers within the same tick.