×

Subscribe to newsletter

subscribe to our weekly newsletter to get notified with latest story and article Subscribe now!




PLC BLOG | Panasonic PLC FPWIN PRO : Timer In Structured text (ST) PROGRAMMING
Share on Facebook Share On Twitter Share on LinkedIn Share on Whatsapp


Panasonic PLC FPWIN PRO : Timer In Structured text (ST) PROGRAMMING

in structured text you can use timer as function. Working of timer is same as ladder logic but in structured text parameter of timer is defined as function. So in timer function have some parameter like IN (input) input start the timer operation, PT (preset time) value for timer operation, Q (output) and ET (elapsed time) current value of timer. You can use these variable multiple time in another or same program. In this article we discuss Timer On TON, Timer Off TOF, Timer with defined period TP


Panasonic PLC FPWIN PRO : Timer ON Function (TON) In Structured text (ST) PROGRAMMING

Timer ON Function (TON) In Structured text (ST) allows you to program a switch-on delay timer. Parameter for Timer On function is
  • TON_1 : instance name of timer function, instance data type TON
  • IN : input of timer at rising edge timer operation start, data type is bool.
  • PT : preset time of timer, data type is time, you can also declare constant value like T#10s, T#1h.
  • ET : elapsed time of timer, data type is time.
  • Q : output of timer, data type is bool.

Timer ON Function (TON) In Structured text (ST) PROGRAMMING

so in above example of Timer ON Function (TON) In Structured text (ST) PROGRAMMING TON_1 is instance name of timer, timer_in is a timer input of timer, Timer_pt is timer preset value and timer_output is output of timer. at rising edge of when of TON timer operation start for specified Preset Time when elapsed time reaches to preset time than timer stop and output is set to true or 1. In second statements elapsed time converted it into Integer data type.


Panasonic PLC FPWIN PRO : Timer OFF Delay Function (TOF) In Structured text (ST) PROGRAMMING

In Structured text (ST) allows you to program a off delay timer. Parameter for off delay timer is
  • TOF_1 : instance name of timer function, instance data type TOF
  • IN : input of timer at rising edge timer operation start, data type is bool.
  • PT : preset time of timer, data type is time, you can also declare constant value like T#10s, T#1h.
  • ET : elapsed time of timer, data type is time.
  • Q : output of timer, data type is bool.

Timer ON Function (TON) In Structured text (ST) PROGRAMMING

so in above example of Timer ON Function (TON) In Structured text (ST) PROGRAMMING TOF_1 is instance name of timer, timer_in is a timer input of timer, Timer_pt is timer preset value and timer_output is output of timer. Off delay timer provide delay in output to set true to false, when input of timer is change from true to false. In off delay timer, when timer input is set to true so output is set to true. if the input of timer is change from true to false than timer operation start until timer preset value equal to timer current value(timer_et) if the timer preset value and timer current value is equal than timer output is set to false or off.


Panasonic PLC FPWIN PRO : Pulse Timer (TP) In Structured text (ST) PROGRAMMING

Pulse Timer (TP) function block is a pulse timer with a defined clock period.
  • TP_1 : instance name of timer function, instance data type TP
  • IN : input of timer at rising edge timer operation start, data type is bool.
  • PT : preset time of timer, data type is time, you can also declare constant value like T#10s, T#1h.
  • ET : elapsed time of timer, data type is time.
  • Q : output of timer, data type is bool.

Pulse Timer (TP) In Structured text (ST) PROGRAMMING

generation of clock pulse is depend on input bit of pulse timer function at each rising of input bit of timer, this function generate pulse for defined preset value time. in above example of Pulse Timer (TP) function when input of timer is change from false to true than this function generate pulse. Once timer operation is started and input of timer is change than timer continue generate pulses until it reaches defined preset value. Once preset value is equal to current value than timer done bit is set and timer stop pulse generation.


Related Article

Information about Structured text visit link below

Share on Facebook Share On Twitter Share on LinkedIn Share on Whatsapp


Suggested Post


 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

comment