Recent Posts

Pages: [1] 2 3 ... 10
1
Technical support / Re: PMW outputs
« Last post by support on December 29, 2024, 06:55:12 PM »
We have transferred a simple program based on  your code to a FMD PLC. When CR1 relay is turn on (use left mouse click during online monitoring), PWM1 and PWM2 (output 7 and 8) did light up momentarily for duration set by your DELAY statement.

FMD PLC uses a different type of solid state output driver from T100MD888+.  Can you try to pull up the output 7 and 8 with a 1K ohm, 1/2W resistor and see if it makes a difference to the control action on your SSR.

Please also note that FMD8810 without the FRAM-RTC have some memory limitation (only DM[1] to DM[1000] are available), so make sure that it is not because your program is trying access on existent DM memory and therefore the program is not behaving as your have experienced in T100MD PLC.
2
Technical support / Re: FMD MODBUS Long delay answering
« Last post by support on December 15, 2024, 05:30:19 AM »
Can you try to put the FMD PLC in PAUSE mode (you can turn on DIP switch #4 and reset the program) and then test the Modbus response time again. If the response time is shortened considerably then it is likely because the logic scan time in the PLC program is taking too long.  This can happen if you use a lot of DELAY statements in custom function to achieve time delay.
3
Technical support / Re: PMW outputs
« Last post by Hminx on December 05, 2024, 11:34:56 PM »
What I mean by  ' no longer operates correctly ' is that when I operate the T100MD 888 with custom function :-
'
            'Set up control values for side shift
            '====================================
' set pwm level for side shift function & shift to 5th 


    setPWM 1,3500,500
    delay 10
    setPWM 1,9000,500
    delay 27
    setPWM 1,0,500
    delay 10
    setPWM 1,4500,500
    delay 5
    setPWM 1,4600,500
    delay 20
    setPWM 1,0,500
    delay 10
    setPWM 1,4600,500
    delay 20
    setPWM 1,3000,500
    setPWM 2,3500,500
    delay 30
    setPWM 1,3000,500
    setPWM 2,9000,500
    delay 100
    setPWM 1,0,5500
    setPWM 2,3500,500
    delay 2000
    setPWM 1,0,500
    setPWM 2,0,500
    delay 5000

the  outputs PWM1 ( Output 7 ) & PWM2 ( Output 8 ) work correctly and  switch the SSR's as per the custom function, but if I try to use
a FMD88-10 the same outputs only give a short duration pulse if anything at all.

4
Technical support / Re: FMD MODBUS Long delay answering
« Last post by acxysty on December 03, 2024, 07:22:37 AM »
We tested the setsystem 3, 0 and we still have a long delay before the FMS replies, around close to 35 ms.

The image shows 3 queries on 3 differents slaves : The 1st and 2nd queires give immediate answer while the FMD need close to 35 ms.
Any idea wyhy ?

Regards
Thierry
5
Technical support / Re: FMD MODBUS Long delay answering
« Last post by acxysty on December 02, 2024, 07:24:37 AM »
Thnzk you for your help.
Yes we are using MODBUS RTU / RS485.
We will test the SETSYSTEM(3,0) instruction.
6
Technical support / Re: PMW outputs
« Last post by support on December 02, 2024, 12:57:25 AM »
It wasn't very clear what you meant by "no longer operate correctly"?  Do you have an oscilloscope to check the output waveform for frequency and duty cycle?

Note that if you are driving the input transmitter of a solid state relay, then check that the anode of the SSR is connected to the +24VDC of the PLC's power supply and the cathode is connected to the FMD PLC's digital output.

Is the SSR driving a DC load up to 100A? Please ensure that the correct type of SSR is being used.

The FMD PLC can operate a wide range of PWM waveform frequency. The T100MD is a very old PLC that only supports a handful of PWM output frequency (16, 32, 63, 250, 500, 2000,
8000 and  32000 Hz) and it will always fall only into one of the available frequencies. You may want to specify the same frequency of what is available on the T100MD when testing with FMD PLC if you expect similar behavior.
7
Technical support / PMW outputs
« Last post by Hminx on December 02, 2024, 12:36:42 AM »
Hi All

I recently prototyped a project using PWM outputs on a T100MD 888  to operate two actuator solenoids on a truck gearbox, this works fine but when I replaced the T100 with an FMD88-10 The PWM outputs would no longer operate correctly. The outputs control two 100amp solid state relays so they aren't overloaded,  I tried another FMD88 with the same result.

Cheers Pete



























8
Technical support / Re: FMD MODBUS Long delay answering
« Last post by support on November 30, 2024, 07:30:37 PM »
Are you communicating with the FMD PLC via RS485?

You can try the SETSYSTEM 3, 0 command as described in the following document:

https://triplc.com/TRiLOGI/Help/tbasic/setsystem.htm
9
Technical support / FMD MODBUS Long delay answering
« Last post by acxysty on November 30, 2024, 01:51:55 AM »
Dear Tri_PLC
Doing some measurement with a scope we notice that the delay betwteen the request adress to the FMS and its answer is around 40 ms as it can be seen on the joined pic.
This capture show 3 requests adressed to 3 slaves, the FMD being the last one. The 2 first send answer within a few ms while FMD replies in 40 ms.
Any explanation or suggestion to reduce this delay that is well over the MODBUS protocole definition !
Thank you for your help.
Thierry
10
General Discussions / Re: RECIPES
« Last post by ROBBYG43 on July 10, 2024, 03:23:11 PM »
Thank you very much for your advice, I will be trying it.
Pages: [1] 2 3 ... 10