The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lab::Instrument::TCD - Temperature control for our Oxford Instruments TLM dilution fridge

VERSION

version 3.611

SYNOPSIS

        use Lab::Instrument::RS232;
        my $rs232=new Lab::Instrument::RS232();

        use Lab::Instrument::TCD;
        my $tcd=new Lab::Instrument::TCD($rs232,$addr);

DESCRIPTION

The Lab::Instrument::ITC class implements an interface to our Oxford Dilution Fridge

CONSTRUCTOR

        my $tcd=new Lab::Instrument::TCD($rs232,$addr);

Instantiates a new object attached to the RS232 port.

METHODS

get_T

        $temperature=$tcd->get_T();

Returns the current temperature of the mixing chamber.

set_T

        $temperature=$tcd->set_T($temperature);

Set target value for the temperature control circuit.

$temperature

TEMPERATURE can be between 0 ... 1 K.

set_heateroff

        $temperature=$tcd->set_heateroff();

Switch OFF the heater for the mixing chamber

CAVEATS/BUGS

probably many

SEE ALSO

Lab::Instrument

COPYRIGHT AND LICENSE

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

  Copyright 2013       Christian Butschkow
            2016       Simon Reinhardt
            2017       Andreas K. Huettel

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