recipe setup

roscho

Member
Join Date
Feb 2006
Location
conn.
Posts
12
hello
i need to setup a batching programe in my plc.
i have a plc from automation direct 250-1 cpu
and an oper. interface ez-6m-r tuoch screen
i need about 100 recipe and need to store them in the v memory
i would like the person that is running the mach. to enter the recipe and to save them in the v memry. and then to call them up ase needed (with a batch code). thanks for any help. roscho
 
Data in Recipes are generally "hard-coded" into the Recipe.

Once the Recipe is loaded into the process, some of the data might be adjustable, or maybe not. It depends on how you set up your HMI. That is, you "tell" the HMI which variables are OK to change... if not OK, then they can't be changed... at least, not by the operator (HMI).

So, you have Recipe-1 loaded, you've made some changes to Recipe-1.
As time goes on, you move through Recipes -2, -5, etc...
Then you return to Recipe-1. When loaded, you see that all of the original data values in Recipe-1 have been restored... that is, your changes have not been saved!

That is the nature of recipes! They are "hard-coded"! This is to prevent the loss of that data under any normal power-loss situation (power-outage, dead-battery, etc...)

Q: My PLC and/or PC have been destroyed in a fire... are my recipes still safe?
A: Not unless you saved them somewhere else... somewhere that didn't burn.

If you want to allow operators to create and save recipes, you will have to create a data-array of v-mem for holding the data.

The thing to remember is that this data-array is in volitile memory... if you have a power-outage and your battery is dead... your recipes will be lost.

It could be arranged where once in a while, the PLC program is stopped and the current data in the array is saved and stored in the EEPROM... if your PLC has one... otherwise, there is no guarantee that the data will always be available.

Another caveat... if you do save to EEPROM occasionally, then you are again faced with the situation where every time you go back to a recipe, the recipe will be restored to the original (EEPROM) version.

If you decide to develop a data-array (where you can in fact save recipes), that is best handled by means of either Indirect-Addressing or Indexed-Addressing.

Another thing to remember if you use the data-array, once the operator makes a change, the original data is lost... unless you keep some kind of log tracking changes.
 

Similar Topics

I have a micro1400 processor running two routines (transfer compression/compression molding press). Recipe parameters are stored from job to job...
Replies
0
Views
41
I'm using legacy recipe to download a recipe to the PLC. A little background, the recipes are large. They are broken down into 6 tables, each 16...
Replies
2
Views
108
Hi guys, got one problem PLC model fp-xh c60t and HMI model TG765S-MT I've encountered an issue which is the recipe file went missing if i swtich...
Replies
0
Views
85
Can anyone help me find where is recipe plus or recipe manager in View desginer(studio 5000) software. i want to create an recipe but i am unable...
Replies
2
Views
178
Need to add new tags to some recipe inside a Wincc Tia Hmi . Do we have an option to download the recipe , with the newly added elements ...
Replies
0
Views
244
Back
Top Bottom