You are not registered yet. Please click here to register!


 
 
plc storereviewsdownloads
This board is for PLC Related Q&A ONLY. Please DON'T use it for advertising, etc.
 
Try our online PLC Simulator- FREE.  Click here now to try it.

New Here? Please read this important info!!!


Go Back   PLCS.net - Interactive Q & A > PLCS.net - Interactive Q & A > LIVE PLC Questions And Answers

Reply
 
Thread Tools Display Modes
Old February 2nd, 2022, 12:56 PM   #76
arpus4KM
Lifetime Supporting Member
United States

arpus4KM is offline
 
Join Date: Sep 2021
Location: Mid
Posts: 534
Quote:
Originally Posted by dmroeder View Post
Hopefully I'm not repeating myself. We have a couple of these RS485 adapters, which we use to write parameters to PowerFlex 523/525's when we commission them (DSI port). We use python and minimalmodbus.

Basically, we create a text file for each drive with the parameters we want to write, it takes a couple of seconds per drive to write the parameters. With 525's, we just write the IP address, then download the rest of the parameters via LogixDesigner. Way faster than any other method to set the addresses.
sweet. I've used one of those adapters to communicate with electrolab sensors using puTTY. and I was considering Hacking an RJ45 onto the end of it to use with SMC controllers, just haven't tested it yet.

I'd be interested to see what your code looks like, I've only just been introduced to python. I didn't know powerflex used rs485 through the dsi port.
  Reply With Quote
Old February 2nd, 2022, 01:21 PM   #77
Phil Buchanan
Lifetime Supporting Member
United States

Phil Buchanan is offline
 
Phil Buchanan's Avatar
 
Join Date: Jun 2015
Location: Atlanta, Georgia
Posts: 637
Quote:
Originally Posted by NetNathan View Post
I used to use Angry IP Scanner quite a bit..
Now I am sold on Slitheris Network Scanner by Komodo labs..
You will be stunned at the data it returns. Free for less than 50 devices, but I never had it care if I scanned more than 50 devices.

https://www.komodolabs.com/ip-scanner/
Slitheris is my favorite also.
__________________
PLC Boot Camp Training
VFD Training
HMI Training
Electrical License Prep Training
Motor Controls Training

http://www.KeyAutomationTraining.com
  Reply With Quote
Old February 2nd, 2022, 05:12 PM   #78
Phil Buchanan
Lifetime Supporting Member
United States

Phil Buchanan is offline
 
Phil Buchanan's Avatar
 
Join Date: Jun 2015
Location: Atlanta, Georgia
Posts: 637
Some of my favorite hand tools

https://www.milwaukeetool.com/Produc...-Tools/2488-21

https://www.milwaukeetool.com/Produc...-Tools/2688-21

https://www.alliedelec.com/product/s...rive/72353806/

https://www.automation24.com/cable-t...MaApHIEALw_wcB

https://www.amazon.com/Screwdriver-P...dDbGljaz10cnVl

https://www.amazon.com/gp/product/B0...?ie=UTF8&psc=1
__________________
PLC Boot Camp Training
VFD Training
HMI Training
Electrical License Prep Training
Motor Controls Training

http://www.KeyAutomationTraining.com
  Reply With Quote
Old February 2nd, 2022, 05:34 PM   #79
Phil Buchanan
Lifetime Supporting Member
United States

Phil Buchanan is offline
 
Phil Buchanan's Avatar
 
Join Date: Jun 2015
Location: Atlanta, Georgia
Posts: 637
I like the Knipex universal panel keys also. I have one in every toolbox and Toolbag.

https://www.amazon.com/KNIPEX-00-11-...3840902&sr=8-5

https://www.amazon.com/Tools-00-11-0...3840902&sr=8-6
__________________
PLC Boot Camp Training
VFD Training
HMI Training
Electrical License Prep Training
Motor Controls Training

http://www.KeyAutomationTraining.com
  Reply With Quote
Old February 2nd, 2022, 05:40 PM   #80
dogleg43
Member
United States

dogleg43 is offline
 
Join Date: Dec 2005
Location: Indiana
Posts: 516
Quote:
Originally Posted by Holmux View Post
Some years ago i got this type crowbar in my toolbox, now I never go on site without
When the electricians are done, I start correcting their impossible sensors
As a skilled electrician and seasoned controls engineer with 38 years of experience I can confidently say that most electricians would be glad to wire things correctly and align sensors correctly IF there is an open line of communication between everyone.

Electricians are not mind readers and drawings must be clear & detailed as well.
  Reply With Quote
Old February 2nd, 2022, 06:27 PM   #81
durallymax
Lifetime Supporting Member
United States

durallymax is offline
 
Join Date: Sep 2017
Location: Wi
Posts: 64
Nobody has mentioned Jokari yet, they are the OEM for most of the strippers that have been posted from Weidmuller, Phoenix, Knipex and others.

These little guys are great for sensor wires and other small gauge wires.

https://www.jokari.de/en/PWSPlus-003-2.htm
  Reply With Quote
Old February 3rd, 2022, 06:41 AM   #82
geniusintraining
Lifetime Supporting Member + Moderator
United States

geniusintraining is offline
 
geniusintraining's Avatar
 
Join Date: Jun 2005
Location: SC
Posts: 8,152
When building enclosures/cabinets this is a must https://www.milwaukeetool.com/Produc...tening/2101-22

And these to go with it https://products.wera.de/en/bits_hol...s_800_4_z.html
__________________
www.PLCCable.com PLC Communication Cables, PLC Trainers, MicroLogix, ControlLogix, Siemens, Allen Bradley and more...OEM and aftermarket supplies... Aftermarket 1784-U2DHP Allen Bradley USB to DH+, new USB to 485 modbus

Last edited by geniusintraining; February 3rd, 2022 at 06:45 AM.
  Reply With Quote
Old February 4th, 2022, 12:33 PM   #83
BrianD
Member
United States

BrianD is offline
 
Join Date: Mar 2015
Location: Iowa
Posts: 11
fluke 771 milliamp process clamp meter. Love it you don't have to break the circuit.
  Reply With Quote
Old February 4th, 2022, 01:14 PM   #84
Taylor Turner
Member
United States

Taylor Turner is offline
 
Join Date: Sep 2020
Location: Midwest
Posts: 78
Checking the rate of stuffs

Code:
//Sets sample rate
tonr(tSampleRate);
tSampleRate.PRE := 100;

if not tSampleRate.DN then
    tSampleRate.Reset := 0;
    tSampleRate.TimerEnable := 1;
else
    tSampleRate.Reset := 1;
    tSampleRate.TimerEnable := 0;
    rAcceleration[1] := rAcceleration[0];
    rVelocityEMA[1] := rVelocityEMA[0];
    rVelocity[1] := rVelocity[0];
    rPosition[2] := rPosition[1];
    rPosition[1] := rPosition[0];
    rPosition[0] := LocalIOHere;
    rVelocity[0] := (rPosition[1]-rPosition[0])*(60*1000)/tSampleRate.PRE;
    rAcceleration[0] := (rVelocity[1]-rVelocity[0])*(60*1000)/tSampleRate.PRE;
    rJerk := (rAcceleration[1]-rAcceleration[0])*(60*1000)/tSampleRate.PRE;
end_if;


//Filter
rAlpha := 1;

rVelocityEMA[0] := trunc((rAlpha*rVelocity[0]+(1-rAlpha)*rVelocityEMA[1])*100)/100;
  Reply With Quote
Old February 4th, 2022, 02:40 PM   #85
Jmeadows7676
Member
United States

Jmeadows7676 is offline
 
Join Date: Oct 2013
Location: Alabama
Posts: 137
I use the Frontline Netdecoder with a bunch of adaptors ie... Controlnet to USB, DeviceNet to USB, DH+ to USB, rs232 sniffer, rs485 sniffer, ethernet to USB sniffer.
I don't have to use these that often but when you need them, nothing else will do.
  Reply With Quote
Old February 4th, 2022, 02:55 PM   #86
Engineerj22
Member
United States

Engineerj22 is offline
 
Join Date: Apr 2021
Location: NW Indiana
Posts: 204
I''ll achieve inner peace the moment that DH+, controlnet, and devicenet is gone.
  Reply With Quote
Old February 4th, 2022, 04:23 PM   #87
gbradley
Lifetime Supporting Member
United States

gbradley is offline
 
gbradley's Avatar
 
Join Date: Apr 2002
Location: Corona, Ca.
Posts: 1,637
Convert for Windows
https://joshmadison.com/convert-for-windows/
Attached Images
File Type: png Convert.PNG (9.2 KB, 158 views)
  Reply With Quote
Old February 4th, 2022, 04:42 PM   #88
TheWaterboy
Lifetime Supporting Member + Moderator
United States

TheWaterboy is offline
 
TheWaterboy's Avatar
 
Join Date: May 2006
Location: State of Denial
Posts: 1,715
+1 for Frontline Netdecoder. I have a lot of DF1 over radio that I have to verify. Its the wireshark for serial stuff.
I do wish they had not sold it to Teledyne, Support calls take Sooo long now.

I also use it along with Wintech Modbus tools when adding new modbus devices.

.
  Reply With Quote
Old February 4th, 2022, 06:26 PM   #89
Peter Nachtwey
Member
St Kitts and Nevis

Peter Nachtwey is offline
 
Peter Nachtwey's Avatar
 
Join Date: Apr 2002
Location: No income tax, no capital gains tax. Freedom!
Posts: 8,272
Quote:
Originally Posted by Taylor Turner View Post
Checking the rate of stuffs

Code:
//Sets sample rate
tonr(tSampleRate);
tSampleRate.PRE := 100;

if not tSampleRate.DN then
    tSampleRate.Reset := 0;
    tSampleRate.TimerEnable := 1;
else
    tSampleRate.Reset := 1;
    tSampleRate.TimerEnable := 0;
    rAcceleration[1] := rAcceleration[0];
    rVelocityEMA[1] := rVelocityEMA[0];
    rVelocity[1] := rVelocity[0];
    rPosition[2] := rPosition[1];
    rPosition[1] := rPosition[0];
    rPosition[0] := LocalIOHere;
    rVelocity[0] := (rPosition[1]-rPosition[0])*(60*1000)/tSampleRate.PRE;
    rAcceleration[0] := (rVelocity[1]-rVelocity[0])*(60*1000)/tSampleRate.PRE;
    rJerk := (rAcceleration[1]-rAcceleration[0])*(60*1000)/tSampleRate.PRE;
end_if;


//Filter
rAlpha := 1;

rVelocityEMA[0] := trunc((rAlpha*rVelocity[0]+(1-rAlpha)*rVelocityEMA[1])*100)/100;
I would like to see a trend of your calculations. The problem I see is that there is nothing that guarantees the samples are taken at equal intervals. That messes up the calculations due to sample jitter.


The RMC200 has an alpha-beta-gamma and alpha-beta-gamma-delta filter built in. These far not available on the RMC150 and RMC75.


Check this out.
https://deltamotion.com/peter/Videos/AlphaBetaGamma.mp4
The alpha-beta-gamma filter is just a simplified form of a steady state Kalman filter.

https://www.kalmanfilter.net/alphabeta.html
__________________
"Living is easy with eyes closed, misunderstanding all you see...." Strawberry Fields Forever, John Lennon
  Reply With Quote
Old February 4th, 2022, 07:42 PM   #90
jdbrandt
Lifetime Supporting Member
United States

jdbrandt is offline
 
jdbrandt's Avatar
 
Join Date: Oct 2002
Location: Pennsylvania
Posts: 1,195
Mine says PHOENIX contact, but no part number.
__________________
Jeffrey D.Brandt
  Reply With Quote
Reply
Jump to Live PLC Question and Answer Forum


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Topics
Thread Thread Starter Forum Replies Last Post
1734-IB8S EDS file jgebhardt LIVE PLC Questions And Answers 23 August 10th, 2017 11:30 AM
Learning PLC using software for simulation & emulation (Virtual environment) TheoPap LIVE PLC Questions And Answers 15 June 9th, 2016 04:03 PM
Learning PLCs: hardware vs. software background? Albert LaFrance LIVE PLC Questions And Answers 5 March 2nd, 2013 02:03 AM
I Need A Plc Hardware And Software banaran LIVE PLC Questions And Answers 7 December 27th, 2002 11:40 AM


All times are GMT -4. The time now is 10:53 AM.


.