NAME

Lab::Moose::Instrument::Keithley2400 - Keithley 2400 voltage/current sourcemeter.

VERSION

version 3.701

SYNOPSIS

use Lab::Moose;

my $source = instrument(
    type => 'Keithley2400',
    connection_type => 'LinuxGPIB',
    connection_options => {gpib_address => 15},
    # mandatory protection settings
    max_units_per_step => 0.001, # max step is 1mV/1mA
    max_units_per_second => 0.01,
    min_units => -10,
    max_units => 10,
);

### Sourcing


# Source voltage
$source->source_function(value => 'VOLT');
$source->source_range(value => 210);

# Step-sweep to new level.
# Stepsize and speed is given by (max|min)_units* settings.
$source->set_level(value => 9);

# Get current level from device cache (without sending a query to the
# instrument):
my $level = $source->cached_level();

### Measurement 

# Measure current
$source->sense_function_on(value => ['CURR']);
# Use measurement integration time of 2 NPLC
$source->sense_function(value => 'CURR');
$source->sense_nplc(value => 2);

# Get measurement sample
my $sample = $source->get_measurement();
my $current = $sample->{CURR};
# print all entries in sample (Voltage, Current, Resistance, Timestamp):
use Data::Dumper;
print Dumper $sample;

METHODS

Used roles:

Lab::Moose::Instrument::Common
Lab::Moose::Instrument::SCPI::Sense::Protection
Lab::Moose::Instrument::SCPI::Sense::Range
Lab::Moose::Instrument::SCPI::Sense::NPLC
Lab::Moose::Instrument::SCPI::Source::Function::Concurrent
Lab::Moose::Instrument::SCPI::Source::Level
Lab::Moose::Instrument::SCPI::Source::Range
Lab::Moose::Instrument::LinearStepSweep

set_level

$source->set_level(value => $new_level);

Go to new level. Sweep with multiple steps if the distance between current and new level is larger than max_units_per_step.

get_measurement

my $sample = $source->get_measurement();
my $current = $sample->{CURR};

Do new measurement and return sample hashref of measured elements.

cached_level

my $current_level = $source->cached_level();

Get current value from device cache.

get_level

my $current_level = $source->get_level();

Query current level.

set_voltage

$source->set_voltage($value);

For XPRESS voltage sweep. Equivalent to set_level(value => $value).

COPYRIGHT AND LICENSE

This software is copyright (c) 2020 by the Lab::Measurement team; in detail:

Copyright 2018       Simon Reinhardt

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.