When you clear the “Recipe management in the PLC” option, the Recipe Manager and recipe definitions will not use any memory on the PLC.
If you select this option, then code is generated for the Recipe Manager and all recipe definitions, and this code is stored on the PLC. The size of the used memory primarily depends on the number pf recipes and their variables, as well as the data type of the variables. Whether or not the fields of the recipe definition are filled also has an effect. The memory usage of recipes cannot be calculated. It has to be determined by experimentation at the time it is needed. The following table merely provides some guiding principles.
Code Size (bytes) |
Data Size (bytes) |
Total (bytes) |
|
---|---|---|---|
Recipe definition with 100 INT variables |
194406 |
79400 |
267352 |
Recipe definition with 200 INT variables |
238318 |
121284 |
459344 |
Recipe definition with 300 INT variables |
282230 |
163084 |
543856 |
Recipe definition with 100 BOOL variables |
192742 |
69884 |
343168 |
Recipe definition with 200 BOOL variables |
235446 |
101568 |
436872 |
Recipe definition with 300 BOOL variables |
278146 |
133284 |
510072 |
Recipe definition with 100 string variables |
203278 |
870084 |
1154000 |
Recipe definition with 200 string variables |
255570 |
1709784 |
2973296 |
Recipe definition with 300 string variables |
307886 |
2549484 |
2964112 |