JRoss

MrPLC Member
  • Content count

    1210
  • Joined

  • Last visited

Posts posted by JRoss


  1. If you haven't done this already... Apply to jobs even if you don't meet all the requirements. A lot of times the job requirements are "nice to have" not "need to have". All things being equal, an employer will take someone with the two years experience over someone without. But if they can't find candidates who meet the full set of requirements and if you impress them enough during the interview process, they may give you a chance anyway.

    I don't know what the situation is in the UK, but here in the US it's very tough to find qualified controls engineers, which is a good opportunity for people like yourself.


  2. I was just searching for this feature, though I'm using GX Works 3. Not sure if there's been any change, but so far I can't find it.

    Here's why I want to do this. I created a global array of bits for alarms, and was hoping to add a comment to each bit in the array to describe what that particular alarm is for. I supposed I can create individual alarm bits and then just make sure they're in a contiguous memory area, but I thought this would be easier.


  3. I usually use not equal to 0. You might be all right because you're using 5 nibbles, but if you use 4 (INT) or 8 (DINT), then the most significant bit acts like a sign bit, which means if it's on the value of the grouped bits will be negative.


  4. +1 on the PCIS software. I've used it in both a Win3.1 virtual machine and in a WinXP virtual machine. If you can get your hands on an older laptop with WinXP and a serial port, that'll be easier than messing with an emulator or virtual machine. Note you will need the serial cable adapter for it.

    Edit: You will still have to hand-convert the code. It won't automatically convert to RSLogix 500.


  5. Huh, for some reason emails from MrPLC started going into my spam folder, and I just found this.

    The programs in the motion card are pretty basic. Jog forward and reverse. Homing with some variation based on direction and location of the home sensor. Absolute positioning to fixed positions. One of the drives switches to torque mode for a period of time to seat a mold in place

  6. Has anyone used the A800 with encoder card as a standalone motion axis? I'm looking at upgrading some Danfoss drives with SyncPos motion cards for a customer. I can go full bore and replace the drives and motors with servos, or I could attempt to just replace the drives and leave the original motors and encoders for about half the cost.


  7. Unless you're talking a really slow pulse train, you will either need to get a transistor base unit, or an FX3U-1PG special function module. Only the first three outputs of a transistor base unit will work with the high-speed commands like PLSY, DRVI, and DRVA. The FX3U-1PG uses standard FROM/TO commands to set up and execute the motion. Using the built-in commands with the base unit is much easier, so I would highly recommend replacing the base unit.


  8. Take a look at the help file. When you select the type and temp units on the configuration tab of the module properties, it scales to the published range of the thermocouple, and the value you get is the temperature. The 0-7000 you see is grayed out and doesn't apply unless you choose "custom range" instead of Celsius or Farenheit.

    So if you have the thermocouple in ice water, you should see 32F or 0C depending on the units. If you don't, then there is a problem with the thermocouple, the card, or the wiring. Either that or you have a different type than you think.


  9. Well...

    An RTD and a thermocouple are both temperature sensors. Choosing one versus the other is a factor of the temperature range, accuracy, and the characteristics of what you are monitoring. But both give you the same piece of information. So you can change the type, but the PLC won't do anything differently.

    Next, an SCP isn't a control algorithm, it's a scaling instruction. It's for taking one linear range of numbers (like 4-20mA) and converting to another (like 0-1000 degrees). It sounds like you want a PID instruction.


  10. Once you install the AOI, you can use it in the ladder logic as if it were a regular instruction. In ladder, add an instruction and type in the name of the AOI, in this case it should be "SCP". You'll see the block appear with 7 arguments. The first is for a tag with a custom data type to match the AOI. I usually type in a name like "DeviceID_SCP", then right-click and create a tag on the spot. You shouldn't need to do anything in the create tag dialog except click OK. Then back in the ladder, you can enter the tags or constants for the rest of the arguments, just like in RS Logix 500.


  11. I got the AOI from a colleague, but I suspect he got it from Rockwell. I've tweaked it a little, but the guts are essentially the same. I modified it so that I don't have to assign separate tags for the min/max parameters and added an "In Range" bit. I'm also planning to add a clamping feature in a week or so.


  12. There isn't a built-in scaling instruction in Logix 5000. You can use the CPT (compute) function and put the computation in that way. I use an SCP add-on instruction (AOI) that I got from a colleague years ago and have modified slightly. It mimics the operation of the SCP in Logix 500 and is much easier to use. It's basically the CPT function hidden inside an AOI with a couple of other features, but I like it. PM me your email address and I'll send it to you.


  13. GT Works 3 (of which GT Designer is the main piece) is for programming HMIs.

    GX Works is for programming PLCs.

    The two packages are complementary, but serve completely different purposes.


  14. <rant>

    Why do we have to do this? Why can't Mitsubishi either (a) Put the GS Installer in an obvious location and publish big notices that it needs to be installed or (b) simply add it to the installer script so nobody has to do anything? This seems like an idiotic oversight. I went through this the first time I tried to use a GS21, and have gotten a call from every one of my customers that gets GT Works 3 and tries to open a program file I've sent them. There's nothing in the software to alert you, no inserts in the HMI box, no notices on the website, and nothing in the manuals. Is tech support so bored they need people to call about things like this?

    </rant>

    2 people like this