lamboom

MrPLC Member
  • Content count

    185
  • Joined

  • Last visited

Everything posted by lamboom

  1. IO  ...Thanks again    I had to search to figure out why I didn't find it the first time.  So much of the Omron manuals provide information in a minimal, intuitive nature.  I understand .. when you have a 1700 page manual, fewer words can be beneficial if you are going to print the thing; however, today it really doesn't matter how large the manual is.  17,000 pages if fine, a computer doesn't care .. and you have a "search" routine to find anything fast. The "problem" is me .. I'm not an automation engineer, but I play one in my lab ... and with the help of good, understanding people on this forum, and others, I will soon complete a project that took several years to optimize. so, the solution is simply this?: Perhaps I'll add those "Stp_Err" and "Stp_Ca" .. thanks to your latest explanation, can't hurt.    My machine will be run by humans, nothing automatic about it .. what could go wrong!
  2. This looks like the only Omron source of info on this subject: Pages 10-19 to 10-22 of Omron manual W507 CPU Unit ..Chapter 10, Sample programming: Stopping an axis during single axis operation: You can see the 'FaultHandler" Program at the top .. activated by MC_Axis000.MFaultLvl.Active  (which is TRUE when there's a minor fault level for axis 0) As IO_Rack says .. It's a user program .. you just do whatever you want when there's a fault ..  But, it's not what is at the bottom of this example program .. which is more what IO_Rack is talking about, only the use of MC_Stop and MC_ImmediateStop is still involved at this program's end .. and is separate from the "FaultHandler" line.   (which is "Device" related) Because I already use MC_Stop in my programs,  I find this example very confusing because MC_ImmediateStop is shown linked to MC_Stop's "Stp_Err" and "Stp_Ca" OK..unless someone says otherwise, I will just connect MC_Axis000.MFaultLvl.Active  to the Execute input of IMD_STP .. that will be my "FaultHandler" I just got a similar suggestion from LinMot support, with the additional consideration of Axis settings: "Other Operation" and "Limit Settings" need some attention.     Thanks all... Regards, Michael
  3. Thanks for the reply IO Duh!  I get it!    I'm just too used to the machine providing all the programming, and i just select the little blocks and paste them into ladder diagrams ... (actually, I have quite a bit os ST in my wave tank programs.   Now that you mention it ... it should have been obvious.  There must be a "Best Practices in programming" somewhere in their thousands of pages, and hundreds of manuals ... I think they did a good job for the beginnings of programs, but not so good for ending them.    For the moment, I'll assume I just missed it.  Thanks again for the wise solution..     Regards, Michael
  4. Red Lion C programing - Wait? RESOLVED

    Thanks Nj Controls .. I posted this on PLCs.net Forum too.. just in case no one took me seriously here.. It's kinda a basic question.. Turns out one shouldn't use C programming for a position control program from an HMI.. there are unintended consequences in the HMI for loops which are paused to await a condition before continuing.   This program is easily done in the Motion Controller, which has "wait for" conditions available in it's "user programs" (the ones you write)  The Red Lion uses programs that can be called from the HMI's pages. Those programs must be written in basic C.    Using loops that wait for position conditions which are initiated by the HMI, by sending parameters and a start command to a Driver/Controller .. is not recommended.     However, some of the suggestions I got on PLCs.net were to use  while ( !inPos ){// do nothing} for a wait .. but that could end badly.. but would work if all went well. Or: switch Step { case 0: if start then issue Home(); Step:=1; Break; case 1: if Homed then issue MoveAbsoluteToZero(); Step:=2; Break; case 2: if Inpos then issue Sinewave(); Step:=3; Break; case 3: if Abort then issue Stop; Step:=4; Break; case 4: if Stopped then Step:=0; Break; } Not exactly..but something similar should work.
  5. Anyone ever used a Wait-for digital tag in a C Program? I have to use C in the Red Lion Programs.. but, I'm not at all proficient in C (or anything else for that matter ..) Here’s a nice problem for basic C programming .. I really need to solve it .. but, so far ... can't ... sigh!: I have an actuator that will be commanded to make sine wave motion.  The program that does that, in the actuator’s driver-controller, requires the actuator to first be in a zero position.  Homing has already been done, so the drive knows where the actuator is.  I cannot modify the sine wave program; but, can command a Move Absolute program in the drive, to take the actuator to zero, if it isn’t already there.  When the actuator is at zero, it is “In position” and a digital tag will go True. If the Tag is False, the actuator is not at zero, it’s at some other position,  and only the Move Absolute program can return the actuator to zero. So, when launching this position command program, In a Red Lion G3 HMI, using only Basic C programming, how would you write a control program that would test the status of the actuator’s position, and, finding it at zero (the “InPos” tag is true) would start the Sine Wave program.  And, If the “InPos” Tag is false, would start the Move Absolute program, which would return the actuator to zero, and when the actuator is In Position, would start the Sine Wave program. Here’s the tricky part. It will take only a few milliseconds to start the Move Absolute program (if required) .. but how do you get the “C” control program you are writing, to wait until the actuator actually reaches zero, and the “inPos” tag goes true … which could take several seconds? I don’t believe there is a WaitFor function in “C” , and you cannot send either the Move Absolute, or the Sine Wave program more than once .. so, if a loop is used, it can loop only one time .. presumably with conditional delays. (however that's done)  You cannot use Sleep().. that would be cheating.. the full program must run in the least amount of time, and you do not know how far the actuator is from zero. You could use if (! InPos) or if (InPos) to qualify what programs to run .. but, where does the “Wait for In position”  fit into C Programming?  You might be able to use Continue .. but, ya still have to wait for “InPos” to go True…..before running the Sine Wave.       Thanks Much, Regards, Michael
  6. NJ controller firmware upgrade.

    Perhaps I can help ..  I said earlier .."And, I'm going to Omron to get away from Siemens."   This implied no comparison between Omron NJ and Siemens S7-1200 .. they are quite different after all...  However, where they are NOT different, Is the complex and expensive manor that firmware upgrades are performed ...  I think Crossbow thought I was comparing the CPU's 
  7. Thanks for the reply Joe PROBLEM SOLVED... The reason was not expected .. and worth sharing.    There were many good articles out there on how to manage the Windows Firewall .. but that wasn't the problem. There were two identical computers, each was to be able to communicate with the HMI (not at the same time)  One could do it, the other could not. The HMI's IP address is set by configuration software created by the PC, and downloaded to the HMI.   That IP address was 192.168.0.20    Neither of these two PC's had made the original download.   I looked at the LAN static IP address for both PC's, and it was 192.168.0.105 Then I checked (using NetSetMan) the IP address of the PC's WiFi ... One was 192.168.0.19 (the PC that worked) ... and the other was 192.168.0.20 (the one that didn't work) Could there be a conflict?  Two different networks: one trying to communicate with to an IP address over LAN, which is the same as the PC's WiFi  DHCP IP Address?    REALLY? So I turned off the WiFi (little switch on the side of the PC),  Powered Cycled the PC ...  And The communication worked. Well, I liked having the WiFi active .. almost never turn it off   So, I re-sent the HMI configuration software with a new IP address for the HMI: 192.168.0.25  And now both PC's communicate just fine with the HMI.. with the WiFi on and working too... PS.. I do have to turn the WiFi off when running a full Virus Scan with System Mechanic .. otherwise SM will crash .. but that's another story.  
  8. This is a problem that shouldn't happen .. It may be due to a defective Network port in the PC. Basically, it's easy to connect to Red Lion G3 HMI's.. using USB, or Ethernet.   Unfortunately there is a flaw with the G315 processor.. and you cannot connect with newer PC's via USB .. and there is no FIX.   However, connecting via Ethernet should be quite easy .. and, I'm able to do it with several old and newer PCs' .. EXCEPT one:   A Dell Latitude E6410.   I don't need help with the Red Lion programming to enable Ethernet communication via TCP/IP ... That's kinda straight forward. (sorta) What I need help with is... what's wrong with my PC ..?  sniff!      I have two similar Dell's  .. one is an ATG model... I've set the fixed LAN IP address the same in both (192.168.0.105).. and I've set the HMI's Ethernet port (789) to an address in the same subset: 192.168.0.20  ...   The E6410 ATG communicates no problem.. the other E6410 ..communication fails.  Everything seems identical in both PC's (well... not totally .. the LAN cards might be different) Anyone ever had this connectivity problem where only one of two identical PC's can connect via Ethernet? Thanks Much... PS: perhaps a suggestion on troubleshooting a LAN Network card? OR..Firewall blocking the HMI connecting...  ?  
  9. Hi.. an easy question.. which I can't find an answer too .. in the 2 manuals:  V421 and V422 ...: "Can you make a variable that goes TRUE when a particular page is selected, and "live" on the HMI screen?" Yes, it's easy to map NJ variables to the objects on the HMI pages...  Yet, It's not clear how to create a variable for a "specific page".. so it is TRUE when that page is on screen. I'll keep looking .. and post what I find, in case no one posts the answer ... thanks   Regards, Michael
  10. INNO  .. You are awesome...     I just tried writing that program yesterday.  Tyler Corbett (Omron Engineer, Canada) told me about "SetVariable" yesterday.  I can't believe I missed that when I looked over the list of "Actions" in "Events and Actions" ... (I have that same problem when I'm looking for a specific item on a menu ... sigh!)     My first attempt WORKED!    .. I didn't try to make the NJ side variable to go FALSE when the page does away .. you just showed how to do that ..  my first job this morning, with coffee ..       Life truly has meaning Tyler also presented some good info on going the other way.. where the NJ is controlling the pages on the NA HMI ... Nice!
  11. OK.... One last way of saying it: Special_NJ_global Variable := TRUE  when Special NA globalVariable is TRUE  IF "PageName" is _HMI_CurrentPage   ... How hard can it be?  Yes, I know the above expression is bogus.. but, it makes the point......  
  12. On Page 8 of NA Practices Guide ..Omron manual V422-E1-01 .. Last question:  "Is it possible to switch the screen from the PLC? Is it also possible to report the current screen from NA to PLC?"     Someone asks  a two question, question, and this is the only answer: "On the NJ, specify a String-type variable and assign it to “_HMI_CurrentPage”, a system variable that specifies the current screen. You can change the screen by entering the name of the destination screen in the variable assigned to the system variable. If the address values are directly linked with the page numbers as in NS series, you must write Visual Basic". This answer probably means something to someone who already knows how to do it ... but, it's not much help for me.  I get that you create a String-type variable: select STRING[256] under the Type column.. But, what does it mean to "assign it to this system variable: "_HMI_CurrentPage"  .. the answer seems only to answer the first question, and ignores the second question.. which is the one I'm interested in....  Do you know the answer to the second question?  PS: I think it's in the NA's Variable Maping .... working on it... EDIT.... Nope.. nothing there.. that's just for calling pages from the NJ software...   I want to work with input variable data, and display of resulting variable data on that same page; because, the input data creates the output data.  an' I don't want to push some "Equals" button that activates an ST rung.. I want the ST rung to be auto activated by the "existence" of the current page ... "_HMI_CurrentPage"  or something like that....???   Thanks, Micheal
  13. You sayin' I would have to use Visual Basic to create a script to make a special variable TRUE  ... hmmmm...  what's the indicator in software, that a particular "page" is "ON, or TRUE ? (remember I'm a bit of a newbie here.. sorry     FYI.. I did finally figure out the last 2 wave sequences, with some Tsunami help from "Dirt" on PLCs.net https://www.youtube.com/embed/B0UGm9JTw3U?rel=0  
  14. More Example: I’m going to make a Regular Wave, I input 85mm for a height, and 0.68 seconds for the wave period.  instantly, if something is already in the SCALE data input (200), the Full Scale Height in Feet (55.8), and the Full Scale period (9.62) would be quickly displayed in the data display windows… yet the axes hasn’t run yet  (Start Regular Waves) …    How can I get these Full Scale data displays to work before the axis is run?      PS:  You can see that they work fine, after the axis is run …. .. thanks to memory of variable data….  
  15. Thanks Crossbow .. I remember reading something like that .. You have to map page numbers 0.1.2...  to the page names ..  It wasn't real clear how that would help do what I wanted.    But, that idea of a "script" that turns on and off looks good...  I'll research Scripts in those manuals... I'm looking for a way to set values or binary states to variables, depending on what "Page" was displayed on the HMI ... As an example, when I input values on a page like "wave height", and it might be in feet,  There would be another data display object (on the same page) that indicates the height in millimeters; however, that display in mm, would be based on a "Scale" factor.... like 1/200  or 200.   "Scale" would also be a data input on this, or other HMI page.    I would like the data displays to be "live" .. so that when a scale and a wave height is input as data, the wave height in mm, is displayed.    No axis program is running yet.  The HMI page is live for inputting and displaying variable data; but the CPU isn't doing any servo controlling ... I need a way to display variables that are calculated from inputted variables.  I need a small program to go live when a page is displayed, and always be calculating, and displaying different variables on the same page.         Basically, you input something, and other data displays on the same page, change in response.   Because, they mathematically depend upon the values of the variables you inputted. I would like to see them, before running the axis.    
  16. The fix is two fold:  1) the equation for only 1/2 cosine wave, is not practical, in that in one cpu cycle the position can go from + PeakMax to zero... The position equation must have a few extra points past peak + position ... so, this part of the equation:  SIN(Pi * Sine_Time ....  should be SIN(2 * Pi * Sine_Time ....  or at least 1.1  ...Just to let the IF-THEN statement catch the peak, before it drops to zero. 2) Best to use the ST version of incrementing the StateTracker variable rather then ladder in the adding of different cosine waves in series...  The ST: Inc(StateTracker) will get you out of an ST series, and into another ST series if needed.   But then, you already knew that if you took the Omron classes ...      Thanks for looking .... Regards, Michael
  17. Hi..  Still Trying to make this Position curve: Pay no attention to the glitch (arrow)  it's a different system (Think of it as inches not volts) .. this pic just shows what I would like to do with the NJ and a linear motor .. It's like 3 parts. first is a cosine move from zero to peak-to-peak (2 * Amplitude) of a position data stream from a MC_SyncMoveAbsolute fb.  The position holds for a few seconds .. then an MC_MoveAbsolute ramps the position slowly back to zero. How hard could it be ... Here's where I am so far: set variables and select for an OFFSET if required:   Equation (6) generates the cosine position move .. the trick is to stop the equation when the max positive peak is reached.  IF-THEN tries to do that (TLim is a small value 0.001mm)  to make sure it's possible for FSine_Tsunami to be larger than 2*TsunamiAMP .. T_Hold starts the TON, and TsunamiRun (the command that started the sequence) goes FALSE.   Line 10 does stop the equation at the right time ...  it's what happens next where all hell breaks loose.  The next trick is to HOLD that last position for 4 to 6 seconds.  This just won't happen because there is no way to stop line (6) of the ST.  No way to freeze a position while still using the MC_MoveAbsolute, stop using it, and transfer control to a MC_MoveAbsolute.    This is my Question ... Delay_Timer.Q goes FALSE because Tsunami_Run is now FALSE (Rung 21)  This messes up the axis control by the MC_SyncMoveAbsolute fb. and the linear motor jumps negative a little; However, 4 seconds later, the MC_Move Absolute kicks in (RUNG 31) and returns the linear motor to zero (or Offset, if selected): Everything gets Reset by rung 33 & 34 Sooo.. this program doesn't work, and is certainly not the best way to make the position curve..   The one thing I could really use help with, is how to jump out of an ST equation for a Global Variable that's being generated by the MC_SyncMoveAbsolute .. hold the selected last position.. and transfer control to a MC_MoveAbsolute, to ramp back to zero or Offset. Regards, Michael Update:  this same post on PLCs.net has over 2200 views .. and, I did get some good help there (equation (6) for example .. unfortunately methinks there are no Omron engineers visiting PLCs.net very often.    Most Omron Engineers are very busy, and I can see why.  You do have to do some serious training at Omron schools, and years of internship .. there must be very few Omron Engineers out there.  I didn't know this, when i started the Omron project... sorry)        
  18. STATUS:    Changed to using State Trackers  .. That worked well .. No clunks, and the sequence runs fine; but, only up to a point.  There is a point at short periods (0.3 sec) to the positive peak of the cosine ramp up, when the control fails and the linear motor runs away negatively into the hard stop. (have nice shock pads for that..     This may be due to the position equation itself.  By creating only 180 degrees of motion mathematically ( SIN(2 * Pi * Time increments/Period) + 270 degree Offset)  The 2 is not in this equation)  The equation is only for a half cycle...  perhaps it should be in the equation... or something a little larger than 1 .   Because, the "end" timing is too critical.  In only one CPU cycle, (0.001sec) the curve will go from + peak(max) to zero!.     Probably, better to make the cycle go slightly past + Peak(max), but try to catch the + Peak(max) with the IF-THEN statement.   UPDATE:   RESOLVED... both Tsunami and the Rogue wave series: Found a way to use Inc in ST ..  makes for easy jumping to various states.. or stages..     Thanks all!
  19. I see there are some nice math instructions in the NJ's menu.    I can't use a MC_MoveAbsolute.  It must be a Cosine position curve running from zero to a positive max end position. I imagine I can use an offset to start the curve at zero, as the COS instructions produce a wave from -1 to +1 and back again.   The trick is to start the curve at -1 and end it at +1 ... If you know an easy way to do that, please share..     Regards, Michael   PS:   This may seem silly .. but, after finding it so easy programming a Delta Motion RMC75E motion controller to due exactly what I'm asking above... I am surprised as to the degree of difficulty dealing with Sysmac & the NJ ...  The level of complication is excessive, if one tries to go beyond the available Function Blocks, Functions and packaged math expressions.    Sure it's easy to do a trapezoidal move from one position to another.  But, I want a cosine curve (or, if you like, a sine curve) .. they are somewhat the same ... but not exactly the same .. and they are certainly not a trapezoidal move component.       I know The NJ can do sine waves ... Check this out: https://www.youtube.com/embed/gGzp7HURBJE?rel=0&controls=0&showinfo=0 Perhaps, this video will help illustrate the problem.  Regrettably, it may require some innovative programming on a complex level ... such work is often done for the programmer by other manufactures of Motion Control modules...  it is certainly beyond my experience, and ability.  Any suggestions, short of actually writing the program, would be a big help in my learning curve... Thanks much.
  20. UPDATE ... This works... Sort of: The ST and the MC_SyncMoveAbsolute fb start at the same time, when the peak + is reached, StateTracker is incremented to #1), Stop_Tsunami goes TRUE, (rung 32), TCosine_Start goes FALSE (rung 29), and T-Hold goes TRUE (rung 30).  FB_SyncMove is disabled: After 6 seconds of Hold, increment State Tracker to#2, which  enables Tsunami_ReturnRamp Fb, returning position back to zero: Tsunami sequence ends, MC_Stop is activated, and StateTracker is reset back to #0   This works nicely .. but it isn't with a flaw .. somewhere..   For TsunamiPer longer than 0.3 seconds, everything works as it should.  Shorter than 0.3 seconds, (higher velocites, and decelleration ...  The linear motor's slider, when first stopped at the peak + position ... doesn't HOLD, it moves quickly negative to the hard stop...and there's a FAULT .. Could this be due to the way MC_SyncMoveAbsolute is "Switched Off" ?      Here's a trace from the LinMot drive: Not too bad.. 0.4 sec. rise time to peak of 60mm... But look at what happens at an attempt at 80mm in 0.4 sec: It does it... but control fails at the transition to "Hold" ... so much for holding,  .... YET, the NJ has no problem keeping control of a 154mm sine wave at 0.4 sec. period ..... To be continued     
  21. Tried some other options .. also didn't work well .. one thing for sure,  the equation for FSine_Tsunami is correct ..it provides a new position every 1.0ms to the LinMot Drive.. That part is working well.. just things go badly after the position equals (2*Amplitude) .. the peak to peak value of the 1/2 cosine plot. Using an IF-THEN to jump out of the position calculation.. Turn off the ST (which is not a good idea.. but, what else)  The T-Hold starts a timer for 4 seconds, below: Turning off Tsunami_Run also kills Delay_Timer.Q .. which powers off the MC_SyncMoveAbsolute with brute force .. probably should use MC_STOP,  but that brings problems too. This causes the linear motor to jump a little in the negative direction, but 4 seconds later the MC_MoveAbsolute fb kicks in and the position ramps to zero or Offset, if an offset is selected.   After the return to zero, MC_STOP is activated by TON: MC_Stop is reset by TON:   This still doesn't work... because there isn't a way, known be me.. that will permit this sequence of moves to be done in 3 stages.  Omron doesn't have stages.. but, it does have tasks... perhaps, i should look into that more closely... to be continued..          
  22. Doesn't look like anyone is gonna comment on this post ..  I guess this Forum is mostly for the professionals .. That's OK..  I'll keep reading the manuals .. Looks like this should be done in three rungs of the ladder .. I'm close to figuring out how to make the Cosine position curve above.. Got some good help on PLCs.net Forum working now on the way to "jump" out of the calculation for the curve when the amplitude equals 2 * Amp..  .. Sure, might use an IF Amplitude < (2 * Amp) THEN quit calculating the cos curve, and hold for a while (go to a TON,, then after a few seconds.. use a MC_MoveAbsolute to get back to zero... but, ya can't use a "Jump" in an ST IF-THEN expression. Even  if one could use a "Greater than or equal to" FUN in Ladder ... How you would stop the position equation at a paticular point ,   continues to elude me...    Later.  
  23. Hi Michael ...  Glad you are still out there... When you can.. this is what I've got so far:     Line  6 generates the cosine curve, and makes all points positive because of the + TsunamiAmp at the end  (help from "Dirt" from Stockholm, on PLCs.net) ... I tried an inverted "Stop_Tsunami" to turn off the MC_SyncMoveAbsolute Fb.. but.. it didn't work... Interesting that there doesn't appear to be a way to jump from an ST line to a ladder rung...  or from an  IF   FSine_Tsunami => 2*TsunamiAmp  (or PeakToPeak) THEN stop calculating FSine_Tsunami and hold at that last position...& start a timer ...  how hard could it be... I'm trying to jump out of the ST when the cosine wave is finished, and hold for 4 seconds This program almost works .. The cosine wave starts at zero (+ a small offset) and, I believe reaches the max positive (2 * TsunamiAmp) .. The GE instruction (Greater than or equal to) should go true when the peak positive is reached..  But, this probably isn't the correct way to stop an hold a position when using a MC_SyncMoveAbsolute. The TON is intended to hold for 4 seconds, then trigger a MC_MoveAbsolute from wherever the hold position is,  back to the offset. instead, when the cosine move should stop ....  the motor quickly moves negatively to the hard stop, way past the offset, or zero position.  sigh! Ya think this has something to do with pulling the plug on the ST that's running the position stream to the MC_SyncMoveAbsolute?   That function block is still on, and generating position data... but, the data isn't changing .. it should be: Offset+ TsunamiSine , which should be Offset + (2 * TsunamiAmp) .. The last calculation of that ST line (6) would be the max positive position (2*TsunamiAmp)      
  24. HI I have 4 small ladder programs ... In 4 different .smc2 files.  Each program uses similar FB' & ST's and FUN's .    I would like to combine all four, each with their own page on the NA HMI.  My attempts haven't been working well .. The HMI is doing everything I wanted.. no problems there.    But, even tho I use different variables in the 4 programs, there are "warning's" that I'm using identical instances .. which is true ..   .. and, programs don't run ..  'tho, they each run quite well, when there is only one of them.   The problem is, I haven't been able to figure out how to isolate, and prevent conflicts between the four programs.  They all control one linear motor, and have it do different things. There never is more than one of the four running at any time I know I can create (list in the multiview explorer) many programs (ladder & ST); also, each can have many sections.    Please suggest the best way to manage four programs, within a single file.. in general.       I've done a lot of reading of the NJ manuals, and can't take the Omron programming class; however, have learned a lot on YouTube .. and on this Forum, ... so I'm not totally dim. If you think it would take too much time to answer this question, please point me to a good reference ... I'm familiar with W502-E1-18 NJ Reference, W508-E1-14 MC Reference, W501-E1-16 NJ Software, W507-E1-14 Motion Control ... so if you are going to suggest using those.. please suggest the page number..      Thanks much, Regards, Michael PS:    It's like having (4) MC_SyncMoveAbsolute fb's in the same ladder prog (not on the same rung)  they all control the same axis, but only one at a time....   OR, perhaps there's only one MC_SyncMoveAbsolute .. and it gets different position information, from 4 different sources ... one at a time?  .....................................................  RESOLVED: It was the last point I thought of above... that approach kinda worked .. an' for now "kinda" is good enough.
  25. Hi again... more information about the objective. Wanted to explain the problem better: Imagine this Sequence: A typical "S"curve ... generally starts from zero accelerates by a specified amount, then moves at a constant velocity until nearing the end point of the move, where it decelerates by a selected amount and stops at the "end point" .. a distant positive value. Then after a few seconds, another move, slower than the first slowly ramps at a constant speed back to zero... and, awaits the next move programmed and launched by a NA HMI That sequence is what I'm trying to do. In Ladder (Omron), you would probably use the MC_MoveAbsolute function block to make this move. Very easy, and almost intuitive... But.. what if that "curve has to be a "cosine wave"? It starts at zero and moves to the positive end position, and only the "path" is programmed, not the velocity or the acceleration. Now you would have to use the MC_SincMoveAbsolute fb. And the "path" would be calculated in ST .. with the only inputs from the HMI as "Amplitude" and "Period". The final positive end position (amplitude), and the time (in seconds) it would take to get there.  As we are not moving in a complete cycle, only a half cycle ... the "time" could be thought of as half the period. This is some brute force programming, I cannot do .. yet I can generate a sin or cos routine in ST (With some help from Tyler Corbett): (1) Pi:=3.141592; (2) SampleTimeSec:=TOLREAL(TimeToNanoSec(GetMyTaskInterval()))*1e-9; (3) SinTime:=ModReal(SinTime+SampleTimeSec, Period); (4) FSin:=(Amplitude * SIN( 2 * Pi * SinTime/Period); (5) Sine:= Sine + Fsine The global variable Sine is sent to the Position input of the MC_SyncMoveAbsolute (or some Final_Move sequence in ST) Now, The trick is to use 1/2 a Cosine wave (a 90 degree phase shift of a sine wave), and only use the first 180 degrees of the wave.. where it goes from zero to maximum positive (yes, it really goes from -1.0 to +1.0 .. but.. there will be an final rung for OFFSET (6) Final_Move:= Offset + Sine so that all moves are positive) This equation must run only once, unlike the above example which would run forever. After doing that one move.. there is a time delay (TON) then the position ramps slowly back to zero .. and waits for another run. I'm asking for any programming ideas that would control the equation for using only a half cycle.. which starts at zero and moves positive to the input: Amplitude. I don't expect the actual program.. just some text explaining a good method to control the process. Please. I assume the COS instruction would work just as well .. I just don't know how to use the best instructions to control the position equation... Thanks Much, Regards, Michael PS:   The equation (4)  isn't the problem.. to be clear ... My problem is in managing the equation in ST or Ladder programming .. something most everyone here is well versed in.. 'cept me. I'm imagining IF-THAN, and other expressions that will start and stop that equation's position feed to the ME_SyncMoveAbsolute function block which is talking to the LinMot drive via EtherCAT. The perfect sequence (with out the  glitch)                           There are 3 moves: the cosine SyncMoveAbsolute, the Delay and hold, and the MoveAbsolute back to zero