Qcodes icon indicating copy to clipboard operation
Qcodes copied to clipboard

Modular data acquisition framework

Results 240 Qcodes issues
Sort by recently updated
recently updated
newest added

Hello, I found a confusing range setting in Keithley 2400 driver: ```python self.add_parameter( "rangev", get_cmd="SENS:VOLT:RANG?", get_parser=float, set_cmd="SOUR:VOLT:RANG {:f}", label="Voltage range", ) ``` Above is the range parameter for Keithley 2400....

The issue was in `DataSet._enqueue_results` method where inferred parameters were not being transitively collected when adding results to a dataset. When a parameter is registered with `basis`, it creates an...

This commit introduces a general-purpose ParameterMixin designed to allow the extension of QCoDeS Parameters. It enables the addition of new features (e.g., on-cache-change callbacks, interdependent updates, and state reset synchronization)...

DelayedKeyboardInterrupt does not work with Spyder 6.0, because Spyder already installs its own handler for SIGINT. Other environment might do the same. The modified version checks if the installed interrupt...

```python # %% from pathlib import Path import numpy as np import qcodes as qc import qcodes.logger from qcodes.dataset import ( Measurement, initialise_or_create_database_at, load_or_create_experiment, plot_dataset, ) from qcodes.instrument_drivers.mock_instruments import (...

I initialize a voltage.step value but, when I try to set a voltage value on my SMU I get the error 'cannot sweep voltage from numberx to numbery - jumping'...

This PR implements a new function `export_datasets_and_create_metadata_db()` that addresses the common issue of data duplication when users have both database files with raw data and exported NetCDF files. ## Problem...

- [x] Analyze the issue: load_from_netcdf fails for non-completed datasets due to missing completed_timestamp_raw attribute - [x] Review the code and understand that completed_timestamp_raw is conditionally exported (only if not...

When trying load a non-completed qcodes dataset from a netcdf file, to which it was successfully exported, the following exception happens: ``` netcdf_dataset = load_from_netcdf( netcdf_export_path, path_to_db=target_conn.path_to_dbfile ) File "C:\Users\miastafe\repos\Qcodes\src\qcodes\dataset\data_set_in_memory.py",...

bug

Typically when running measurements with qcodes, the users have a database file, and the raw measured data is stored in that database file as well. In addition, many users prefer...