Controller class for communicating with an Oriel Cornerstone 260 monochromator.
Project description
Oriel Cornerstone 260
A library allowing easy control over an Oriel Cornerstone 260 monochromator with an RS-232C port.
Install with
python -m pip install oriel-cornerstone-260
NOTE: For newer models with a USB connection, see the USB Connection section at the bottom of this page.
Monochromator
Represents a monochromator.
- Monochromator( port, timeout = 5 ): Creates a new monochromator for the device at the specificed port, with the provided communication timeout.
Methods
Low Level
Low level methods allows reading and writing to the device.
-
connect(): Connects to the device.
-
disconnect(): Disconnects from the device.
-
write( msg ): Writes a message to the device. Termination characters are added.
-
read(): Reads a single response from the device.
-
command( cmd, *args ): Sends a command to the device with the given arguments. Returns the command.
-
query( msg ): Queries the device. Returns a Response object.
High Level
High level methods are convenience methods used for commonly needed functions.
-
goto( wavelength ): Goes to the given wavelength.
-
abort(): Starts the given channel.
-
set_grating( grating ): Sets the grating to the given number.
-
set_filter( filter ): Sets the filter to the given position.
-
filter_label(filter, label = None ): Gets or sets a filter's label.
-
shutter( close = True ): Open or close the shutter.
-
set_outport( port ): Sets the output port.
-
slit_width( slit, width = None ): Gets or sets the slit width.
Properties
- _com:
Serial
connection frompyserial
. - connected: Whether the device is connected or not.
- port: Device port.
- term_chars: Termination characters used for reading and writing. [Default: '\r\n']
- info: Device info.
- position: Wavelength position.
- grating: Current grating and its properties. Returns a dictionary with
number
,lines
, andlabel
. - filter: Current filter position.
- shuttered: Whether the shutter is closed or open.
- outport: The output port.
Response
A namedtuple
with properties statement
which represents the command, and response
.
Example
A basic example for using a Monochromator.
from oriel_cornerstone_260 import Monochromator
# create device
mono = Monochromator( 'COM9' )
# print monochromator info
print( mono.info )
# go to 600 nm
mono.goto( 600 )
Note
A Monochromator is a ultimately a Serial
object from pyserial
, so you can call any functions on a Monochromator that you would on a Serial object.
USB Connection
The USB Newport/Oriel Cornerstone 260 works differently, and can not utilize this package. It is Windows only and requires two proprietary .NET .DLLs from Newport. The Python interface is through the package pythonnet. As of late 2020, these are 32 bit DLL's that require a 32-bit (not AMD64) version of python.
import clr
clr.AddReference( 'Cornerstone' )
import CornerstoneDll
mono = CornerstoneDll.Cornerstone( True )
if not mono.connect():
raise IOError( 'Monochromator not found' )
The mono
object will control the monochromator using methods documented in the Cornerstone 260 manual.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file oriel-cornerstone-260-0.1.0.post1.tar.gz
.
File metadata
- Download URL: oriel-cornerstone-260-0.1.0.post1.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c94441feb253b52b0bde3f745f3c0112993c293abbf728301636df737d106848 |
|
MD5 | d1589b2d7dfe859bceb1943689a5b506 |
|
BLAKE2b-256 | b5b2117d8095b821571f5094f0a7fb29a1f6c796c039962a4a8b3549f232fed7 |
File details
Details for the file oriel_cornerstone_260-0.1.0.post1-py3-none-any.whl
.
File metadata
- Download URL: oriel_cornerstone_260-0.1.0.post1-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b524be54e82d129e70d2cdb3add06cd07429725eb6e762cedd95690c34fba15 |
|
MD5 | f7d862ba9073792f7a502dba6eb6a441 |
|
BLAKE2b-256 | 1b34086e1ec0c7f5524343c05aa9bc6c87133d6db1d1fad3a9ae762594563a8a |