2

有没有办法在没有仪器控制工具箱的情况下使用 MATLAB 建立 GPIB 连接?(我没有)。还有一种方法可以让 MATLAB 知道外部设备的 RS232 参数值是什么(波特率、停止位等)。对于 RS232 连接,我有以下代码:

% This function is meant to send commands to Potentiostat Model 263A.

% A run includes turning the cell on, reading current for time t1, turning

% the cell off, waiting for time t2.

% t1 is the duration [secs] for which the Potentiostat must run (cell is on)

% t2 is the duration [secs] to on after off

% n is the number of runs 

% port is the serial port name such as COM1

function [s] = Potentiostat_control(t1,t2,n)

port = input('type port name such as COM1', 's')

s = serial(port);

set(s,'BaudRate', 9600, 'DataBits', 8, 'Parity', 'even', 'StopBits', 2 ,'Terminator', 'CR/LF'); 

fopen(s)

%fprintf(s,'RS232?')

disp(['Total runs requested = ' num2str(n)]) 

disp('i denotes number of runs executed so far..');

for i=1:n

    i

    %data1 = query(s, '*IDN?')

    fprintf(s,'%s','CELL 1'); % sends the command 'CELL 1'

    %fprintf(s,'%s','READI');

    pause(t1);

    fprintf(s,'%s','CELL 0');

    %fprintf(s,'%s','CLEAR');

    pause(t2);

end

fclose(s)
4

3 回答 3

2

对于您的 GPIB 问题,GPIB 卡是否带有可调用库(如果您在 Windows 上,则为 DLL)?Matlab 有一个调用外部库的接口。基本流程是让 Matlab 使用 解析头文件LOADLIBRARY,然后使用 . 查看可用函数LIBFUNCTIONS并使用 . 调用函数CALLLIB

对于您的 RS232 问题,我认为主机端没有任何方法可以在没有外部文档的情况下知道设备端的参数。

于 2010-05-13T19:41:23.670 回答
1

我正在使用National Instruments VISANI 488.2

首先确保你VisaNS.NET API在 NI-VISA Setup 中勾选了,见下图:

在此处输入图像描述

我正在使用NationalInstruments.VisaNS.MessageBasedSessionMATLAB 的 .NET 接口。

我编写了以下将 NI VISA 包装到 MATLAB 的 MATLAB 类:

classdef Visa
    properties
        vi
        SrqMask
        SrqTimeout
    end
    methods
        function obj = Visa(resourceName)
            NET.addAssembly('NationalInstruments.VisaNS');
            obj.vi = NationalInstruments.VisaNS.MessageBasedSession(resourceName);
            obj.SrqMask = '*CLS;*ESE 1;*SRE 32';
            obj.SrqTimeout = 10000;
        end
        function obj = delete(obj)
            obj.vi.Dispose();
        end
        function obj = Dispose(obj)
            obj.vi.Dispose();
        end
        function obj = Write(obj, data)
            obj.vi.Write(data);
        end
        function data = ReadString(obj)
            data = char(obj.vi.ReadString());
        end
        function data = ReadByteArray(obj)
            data = obj.vi.ReadByteArray();
        end
        function data2 = Query(obj, data)
            data2 = char(obj.vi.Query(data));
        end
        function obj = SrqBegin(obj)
            obj.vi.EnableEvent(NationalInstruments.VisaNS.MessageBasedSessionEventType.ServiceRequest, ...
                NationalInstruments.VisaNS.EventMechanism.Queue);
            obj.vi.DiscardEvent(NationalInstruments.VisaNS.MessageBasedSessionEventType.ServiceRequest);
            obj.Write(obj.SrqMask);
        end
        function status = SrqEnd(obj)
            evt = obj.vi.WaitOnEvent(NationalInstruments.VisaNS.MessageBasedSessionEventType.ServiceRequest, ...
                obj.SrqTimeout);
            evt.Dispose();
            status = obj.vi.ReadStatusByte();
            obj.vi.DisableEvent(NationalInstruments.VisaNS.MessageBasedSessionEventType.ServiceRequest, ...
                NationalInstruments.VisaNS.EventMechanism.Queue);           
        end
        function obj = SrqWrite(obj, data)
            obj.SrqBegin();
            obj.Write(data);
            obj.SrqEnd();
        end
        function data2 = SrqQuery(obj, data)
            obj.SrqBegin();
            obj.Write(data);
            obj.SrqEnd();
            data2 = obj.ReadString();
        end
    end
end

我还添加了一些方法来处理 SRQ 请求。

使用以下代码,您可以控制 GPIB 仪器,例如:

resourceName = 'GPIB0::20::INSTR'; % GPIB adapter 0, Instrument address 20
vi = Visa(resourceName);
idn = vi.QueryString('*IDN?');

AMessageBasedSession可用于通过 GPIB、以太网或 USB 与您的仪器进行通信。

另请参阅https://stackoverflow.com/a/49388678/7556646

于 2018-03-20T16:58:05.297 回答
0

我不知道 RS232 参数,但是对于具有 tcpip 的仪器,您可以非常轻松地发送 SCPI 命令。

这是我向 Rohde&Schwarz 仪器发送 SCPI 命令的示例。无需签证或 IVI。使用端口 5025。

t = tcpip('147.214.90.136', 5025); 
fopen(t); 
fprintf(t, '*IDN?');
fprintf(1, DataReceived)

完成后关闭连接:

fclose(t); 
delete(t); 
clear t 
于 2018-12-14T06:39:49.697 回答