PsjLib 1.0.1

dotnet add package PsjLib --version 1.0.1
                    
NuGet\Install-Package PsjLib -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PsjLib" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PsjLib" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="PsjLib" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PsjLib --version 1.0.1
                    
#r "nuget: PsjLib, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PsjLib@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PsjLib&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=PsjLib&version=1.0.1
                    
Install as a Cake Tool

header

PsjLib C# Library

.NET Language Docs

A comprehensive C#/.NET library for controlling piezoelectric amplifiers and control devices manufactured by piezosystem jena GmbH.

This repository is the C# port of piezosystemjena/psj-lib and mirrors the same core device model and capability-based API design.

Features

  • Asynchronous Architecture - Built on .NET async/await for efficient, non-blocking device communication
  • Multi-Device Support - Extensible framework supporting multiple device families (d-Drive, 30DV50/300, and NV variants in this port)
  • Comprehensive Capabilities - Full access to position control, PID tuning, waveform generation, data recording, and filtering
  • Multiple Transport Protocols - Connect via Serial (USB) or Telnet (Ethernet)
  • Type-Safe API - Strongly typed classes and enums for excellent IDE autocomplete
  • Extensive Documentation - Integrated documentation pages and runnable examples

Supported Devices

Note: For NV200 please use nv200-python-lib.

d-Drive Modular Amplifier

The d-Drive series represents piezosystem jena's modular piezo amplifier family:

  • High Resolution: Precision positioning and control
  • Modular Design: Multi-channel configurations
  • Advanced Control: Integrated PID controller with configurable filters
  • Waveform Generation: Built-in function generator
  • Data Acquisition: High-speed recorder support

PSJ 30DV50/300 (Standalone Amplifier)

The PSJ 30DV50/300 is a single-channel, d-Drive-compatible amplifier:

  • Single Channel: Standalone unit with one channel (ID 0)
  • d-Drive Compatible: Uses the same command set and capabilities
  • Full Feature Set: PID control, waveform generation, data recorder, filters

NV40/3(CLE) Amplifiers

Piezo amplifiers with 3 channels, available in open-loop and closed-loop variants. They include features such as:

  • Position Control: Synchronous setpoint and position reading for multiple axes
  • Closed-Loop Control: Integrated analog closed-loop controller (CLE variants)
  • Physical Knob: Front-panel knob for manual control and control mode switching
  • Display: Front-panel display for real-time position and status information

Installation

dotnet add package PsjLib

From Source

git clone https://github.com/piezosystemjena/psj-lib-cs.git
cd psj-lib-cs
dotnet restore
dotnet build

Requirements

  • .NET 8.0 SDK or higher
  • Windows 10/11, Linux, or macOS

Quick Start

Basic Position Control

using PsjLib.DDriveFamily;
using PsjLib.Transport;

// Connect over serial to the amplifier.
var device = new DDriveDevice(TransportType.Serial, "COM3");
await device.ConnectAsync().ConfigureAwait(false);

try
{
	// Use channel 0 for single-channel examples.
	var channel = device.Channels[0];

	// Enable feedback control for precise positioning.
	await channel.ClosedLoopController.SetAsync(true).ConfigureAwait(false);

	// Command a target setpoint.
	await channel.Setpoint.SetAsync(50.0).ConfigureAwait(false);

	// Read back the measured position.
	var position = await channel.Position.GetAsync().ConfigureAwait(false);
	Console.WriteLine($"Position: {position:F2} um");
}
finally
{
	// Always close the device connection.
	await device.CloseAsync().ConfigureAwait(false);
}

Device Discovery

using PsjLib.Base;
using PsjLib.Transport;

// Scan for reachable serial devices.
var devices = await PiezoDevice
	.DiscoverDevicesAsync<PiezoDevice>(DiscoverFlags.DetectSerial)
	.ConfigureAwait(false);

// Print basic transport info for each discovered device.
foreach (var device in devices)
{
	var info = device.DeviceInfo;
	Console.WriteLine($"Found: {info.DeviceId} on {info.TransportInfo.Identifier}");
}

PID Control Configuration

// Set closed-loop PID gains.
await channel.PidController.SetAsync(
	p: 10.0,
	i: 5.0,
	d: 0.5
).ConfigureAwait(false);

// Enable a notch filter to suppress a known resonance.
await channel.Notch.SetAsync(
	enabled: true,
	frequency: 500.0,
	bandwidth: 50.0
).ConfigureAwait(false);

Waveform Generation

using PsjLib.DDriveFamily.Capabilities;

// Configure sine waveform parameters.
await channel.WaveformGenerator.Sine
	.SetAsync(amplitude: 20.0, offset: 20.0, frequency: 5.0)
	.ConfigureAwait(false);

// Activate sine output mode.
await channel.WaveformGenerator
	.SetWaveformTypeAsync(DDriveWaveformType.Sine)
	.ConfigureAwait(false);

Data Recording

using PsjLib.DDriveFamily.Capabilities;

// Configure recorder buffer and decimation.
await channel.DataRecorder.SetAsync(
	memoryLength: 50000,
	stride: 1).ConfigureAwait(false);

// Retrieve captured position samples.
var data = await channel.DataRecorder
	.GetAllDataAsync(DDriveDataRecorderChannel.Position, 50000)
	.ConfigureAwait(false);

Architecture

PsjLib uses a three-layer hierarchical architecture:

PiezoDevice (e.g., DDriveDevice)
  +- Transport protocol (Serial/Telnet) with command handling
  +- PiezoChannels (e.g., DDriveChannel)
	  +- Capabilities (Position, PID, WaveformGenerator, etc.)

Key Design Patterns

  • Capability-Based Architecture: Features are modular capability classes
  • Async/Await: I/O operations use asynchronous APIs
  • Type Safety: Strong typing for IDE support and reliability

Documentation

Comprehensive documentation is available here:

  • Getting Started - Tutorials and basic usage
  • API Reference - Library API documentation
  • Device Documentation - Device-specific guides
  • Base Capabilities - Common capability behavior
  • Examples - Practical usage examples
  • Developer Guide - Extending the library

Building Documentation Locally

cd docs
docfx docfx.json --serve

Then open http://localhost:8080 in your browser.

Examples

The examples/ directory contains practical examples:

  1. Device Discovery and Connection - Finding and connecting to devices
  2. Simple Position Control - Basic open-loop and closed-loop positioning
  3. PID Tuning - Controller parameter tuning
  4. Data Recorder Capture - High-speed data acquisition
  5. Waveform Generation Basics - Signal generation and scanning
  6. Filter Configuration - Notch and low-pass filter setup
  7. Backup and Restore Configuration - Saving/loading device settings
  8. NV403CLE Capabilities Overview - NV workflow and multi-channel operations

Run an example:

dotnet run --project examples/Examples.csproj -- 01

Development

Setup Development Environment

# Clone repository
git clone https://github.com/piezosystemjena/psj-lib-cs.git
cd psj-lib-cs

# Restore and build
dotnet restore
dotnet build

Library Version

Version metadata is exposed via PsjLib.LibraryVersion.Version.

Support

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 109 3/16/2026
1.0.0 111 3/16/2026