Qcodes
Qcodes copied to clipboard
Modular data acquisition framework
> There is also a further issue, that `get_parameter_data` will not display parameter data for `inferred_from` parameters by default. Since this function is used in `to_xarray_dataset` this also means that...
I can understand that you don't support modifying the data in the databases. Is the same true about updating values of dummy parameters that store information about instrument which cannot...
I encountered a ConnectionResetError while controlling an Oxford Instruments Triton fridge using the QCoDeS interface. The traceback for the error is attached as below. [connectionerrormessage.docx](https://github.com/user-attachments/files/19317519/connectionerrormessage.docx) I have tried increasing the...
I would like to implement a new [measurement class of the API](https://www.swabianinstruments.com/static/documentation/TimeTagger/api/Measurements.html#startstop) as a parameter for the [Swabian Instruments TimeTagger driver](https://qcodes.github.io/Qcodes_contrib_drivers/api/generated/qcodes_contrib_drivers.drivers.SwabianInstruments.html). The measurement generates a histogram of time differences between...
Hi, Here is the code for making the connection: ``` import logging import qcodes as qc from qcodes.logger.logger import start_all_logging from qcodes_contrib_drivers.drivers.OxfordInstruments.Proteox import oiDECS start_all_logging() log = logging.getLogger() station =...
``DelegateParameter`` now includes validators of its source Parameter into its validators. This ensures that a ``DelegateParameter`` with a non numeric source parameter is registered correctly in a measurement when the...
The Oxford Mercury iPS driver currently assumes a three-axis vector magnet: https://github.com/microsoft/Qcodes/blob/1280f4a1730a0f70659aec835ce3935a1894de05/src/qcodes/instrument_drivers/oxford/MercuryiPS_VISA.py#L330-L334 For systems with fewer axes than this, the instrument-level parameters like `z_ramp` do not work / run indefinitely...
When adding a 2D array as a standalone parameter in a dataset, the whole numpy array would be save in bit form. Flatten is needed to make a proper array...