我试图用Java编写一个简单的SCADA/HMI代码,通过Modbus TCP将我的计算机连接到PLC上。我编写了在我的PLC上打开/关闭5线圈的代码,但是应用程序的工作非常慢--当我两次按下按钮(这是打开/关闭线圈的条件)时,PLC需要4-6秒才能得到命令。但我希望它能迅速发挥作用。
在代码中,我编写了主类(在其中建立连接)和线程类(在其中我为每个线圈执行ModBusTCPTransaction )。我将线程类称为守护进程,并在主类中启动它。但是也许这不是应该做的方法--也许任何人都可以记录下通常如何完成/工作tese类型的SCADA/HMI系统,只需用2/3的句子…。我是否需要一个deamon线程类…??
这是我的密码
import java.net.*;
import java.io.*;
import net.wimpi.modbus.*;
import net.wimpi.modbus.msg.*;
import net.wimpi.modbus.io.*;
import net.wimpi.modbus.net.*;
import net.wimpi.modbus.util.*;
import java.awt.Color;
import java.awt.FlowLayout;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.Graphics;
// 1. daemon class
class NitCoil extends Thread {
private WriteCoilRequest coil_req = null;
private ModbusTCPTransaction trans = null;
private int i;
NitCoil(String s , int i) {
super(s);
this.i = i;
}
public void run(){
try {
while(true) {
coil_req = new WriteCoilRequest(i, ModbusTest.coil_con[i]);
trans = new ModbusTCPTransaction(ModbusTest.con);
trans.setRequest(coil_req);
trans.execute();
this.sleep((int)(Math.random()*100));
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
//2. main class
public class ModbusTest {
public static TCPMasterConnection con = null;
public static boolean[] coil_con = {false,false,false,false,false};
public static void main(String[] args) {
try {
/* Variables for storing the parameters */
InetAddress addr = null; //the slave's address
int port = Modbus.DEFAULT_PORT;
int repeat = 1; //a loop for repeating the transaction
//3. Setup the parameters
if (args.length < 1) {
System.exit(1);
} else {
try {
String astr = "192.168.0.25:502";
int idx = astr.indexOf(':');
{
port = Integer.parseInt(astr.substring(idx+1));
astr = astr.substring(0,idx);
}
addr = InetAddress.getByName(astr);
if (args.length == 1) {
repeat = Integer.parseInt(args[0]);
}
} catch (Exception ex) {
ex.printStackTrace();
System.exit(1);
}
}
//4. Open the connection
con = new TCPMasterConnection(addr);
con.setPort(port);
con.connect();
//5. defining frame, panel, button
JFrame frame = new JFrame("JFrame Example");
JPanel panel = new JPanel();
panel.setLayout(new FlowLayout());
JLabel label = new JLabel("This is a label!");
//6. creating 5 buttons
JButton[] button = new JButton[5];
for (int j = 0; j < 5; j++){
final int temp = j;
button[j] = new JButton(String.valueOf(j));
//7. button
button[j].setText("Switch ON light "+j);
button[j].addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (coil_con[temp] == true)
coil_con[temp] = false;
else
coil_con[temp] = true;
}
});
};
panel.add(label);
panel.add(button[0]);
panel.add(button[1]);
panel.add(button[2]);
panel.add(button[3]);
panel.add(button[4]);
//8. call of demon
NitCoil n1 = new NitCoil("daemon1", 0);
n1.setDaemon(true);
n1.start();
NitCoil n2 = new NitCoil("daemon2", 1);
n2.setDaemon(true);
n2.start();
NitCoil n3 = new NitCoil("daemon3", 2);
n3.setDaemon(true);
n3.start();
NitCoil n4 = new NitCoil("daemon4", 3);
n4.setDaemon(true);
n4.start();
NitCoil n5 = new NitCoil("daemon5", 4);
n5.setDaemon(true);
n5.start();
//9. Close the connection
JButton buttonClose = new JButton();
buttonClose.setText("disconnect");
buttonClose.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
ModbusTest.con.close();
}
});
panel.add(buttonClose);
panel.setBackground(Color.green);
frame.add(panel);
frame.setSize(300, 300);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
} catch (Exception ex) {
ex.printStackTrace();
}
}
}发布于 2015-02-08 15:46:44
你有没有看过Wireshark的响应时间是什么样的?也许这个设备的响应速度很慢。
而且,按照您当前设置的方式,您一直在连续地编写所有五个线圈,这可能并不理想。
由于您的线圈地址是连续的,您也可以使用WriteMultipleCoils函数(0x0F)在一个请求中写入所有五个线圈。
https://stackoverflow.com/questions/28384391
复制相似问题