Part 16. Phần mềm SCADA Cimon Ultimate Access - Công thức (Recipe)
Công thức là tập hợp dữ liệu thuộc về nhau, ví dụ như cài đặt tham số máy hoặc dữ liệu sản xuất. Tính năng ‘Công thức’ phù hợp với sản xuất hàng loạt số lượng nhỏ khi giao tiếp với PLC. Có thể tạo, xóa hoặc sửa đổi hồ sơ dữ liệu công thức một cách thuận tiện trên các chế độ xem riêng lẻ. Ngoài ra, dữ liệu công thức có thể được nhập vào hoặc xuất ra từ thời gian chạy
1 Features
- Bạn có thể xác định trước các giá trị thành phần cho từng sản phẩm, sau đó có thể điều chỉnh chúng theo các giá trị thẻ tương tự.
- Bạn có thể chỉ cần nhập chuỗi giá trị thẻ thay vì thay đổi từng giá trị khi chuyển đổi sản phẩm.
2 Settings
To bring up the Recipe editor window, double-click ‘Recipe Editor’ in the project workspace. You may also select [Tools] – [Recipe Editor] or icon for the same command
Item | Description |
Model Name | Enter the model name in the text field. The duplicated name is not allowed. |
Save In | Enter the path route where recipe file will be saved in. Alternatively, you can select the directory by button. |
Security Level | This option is to limit the authority according to the user’s security level. You can assign a value from 1 to 100. Lower level indicates the higher authority. Assign the security level to give the authority for the corresponding model. According to the user information in the CimonX, commands such as reading and writing the set values or modifying tags in the model. |
Browse | Brings up the ‘Select Tag’ dialog box. You can browse the tag from the database. |
Field Name | Enter the item name of setting values in each cell. To create a recipe model, you must enter the tag name in the field groups |
Add Model | Add the new recipe model with configurations to the project. Alternatively, you may add the new model with the changed configuration. Blank space or duplicated name is not allowed. |
Edit Model | Modify the selected recipe model and save the changes by pressing [Edit Model] button. |
Delete Model | Delete the selected recipe model from the project. |
Add Group | Add the new group in the recipe model. Enter the tag group name and press [OK] to add the new row in the ‘Tag Group’. |
Edit Group | Modify the selected group name. Enter the group name and press [OK] to change the text. |
Delete Group | Delete the selected group from the recipe model |
3 Related features
Trong phần này, bạn có thể tìm thấy các hàm và chương trình con thường được sử dụng cho Recipe. Vui lòng tham khảo bảng bên dưới để biết các hàm/chương trình con áp dụng. Để biết thông tin chi tiết hơn về từng hàm và chương trình con, vui lòng tham khảo phần tiếp theo
Command | Description | ||
Recipe Controlling | Subroutine | RecipeDialog | Brings up the Recipe dialog box in the CimonX runtime. |
Subroutine | RecipeDownload | Downloads the recipe data from the tag group. This subroutine does the same action with [Write] in the recipe dialog box. | |
Subroutine | RecipeUpload | Uploads the tag group values to the recipe data. The subroutine does the same action with [Read] in the recipe dialog box. | |
Function | RecipeGetData | Brings the field value in the current recipe model. | |
Subroutine | RecipeSetData | Sets the value at the specific field of the current recipe model. |
|
Subroutine | RecipeEditDialog | Brings up the Recipe editor in the CimonX runtime. | |
Subroutine | RecipeLoad | Loads the recipe data from the recipe file. |
3.1 Recipe Controlling
RecipeDialog | Brings up the Recipe dialog box in the CimonX runtime. | |
Subroutine | Command | RecipeDialog() |
Script | RecipeDialog | |
Function |
This subroutine prompts the ‘Recipe dialog box’ which is used to control recipe function. You may check the setting values in the current recipe model, and save or modify them through buttons. |
|
Example | Enter the command to open the recipe dialog box. RecipeDialog() |
Item | Description | ||||||||||
Model Name | Select the recipe model. | ||||||||||
Tag Group | Select the tag group of the recipe model. | ||||||||||
Write | Applies the setting value to the tag. If the tag is defined as a real tag, the setting value will be downloaded to the connected PLC. | ||||||||||
Read | Bring the tag value to the recipe setting value. | ||||||||||
Save |
A dialog box for saving the recipe setting value appears.
|
||||||||||
Open |
Opens the selected recipe file
|
RecipeDownload | Downloads the recipe data from the tag group. | |
Subroutine | Command | RecipeDownload (“Model Name”, “Tag Group Name”) |
Script | RecipeDownload “Model Name”,“Tag Group Name” | |
Description | This subroutine does the same action with [Write] in the recipe dialog box. The recipe data is downloaded to the PLC. (When the tag has been defined as a real tag) |
|
Example | Enter the command to download the data in ‘Chicken’ tag group into the tag. RecipeDownLoad(“Feed”,“Chicken”) |
RecipeUpload | Uploads the tag group values to the recipe data. | |
Subroutine | Command | RecipeUpload(“Model Name”,“Tag Group Name”) |
Script | RecipeUpload “Model Name”, “Tag Group Name” | |
Description | This subroutine does the same action with [Read] in the recipe dialog box. The tag values in each tag group are uploaded to the recipe data. | |
Example | Enter the command to upload the tag value in the ‘Chicken’ tag group into the recipe data. RecipeUpLoad(“Feed”, “Chicken”) |
RecipeGetData | Brings the field value in the current recipe model. | |
Function | Operation | RecipeGetData (“Model Name”,“Field Name”) |
Script | n = RecipeGetData (“Model Name”, “Field Name”) | |
Description | Brings the field value of the recipe model from currently stored in recipe memory. If this function is used in the command, you must specify the tag which contains data: A1 = RecipeGetData(“Feed”,“Oats”) |
|
Example | Enter the command to bring the value from ‘Oats’ field of ‘Feed’ model to the ‘CHICK.OATS’ tag. CHICK.OATS = RecipeGetData(“Feed”, “Oats”) |
RecipeSetData | Sets the value at the specific field of the current recipe model. | |
Subroutine | Command | RecipeSetData(“Model Name”,“Field Name”, Value) |
Script | RecipeSetData “Model Name”, “Field Name”, Value | |
Description | This subroutine inputs a specific setting value in the field of the current model. Please note that you must use ‘RecipeDownload’ subroutine after setting the value with ‘RecipeSetData’ subroutine to reflect the value to the tag. |
|
Example | Enter the command to set the value 100 at the ‘Oats’ field of ‘Feed’ model. RecipeSetData(“Feed”,“Oats”, 100) |
RecipeEditDialog | Brings up the Recipe editor in the CimonX runtime. | |
Subroutine | Command | RecipeEditDialog() |
Script | RecipeEditDialog | |
Description | The recipe editor window will appear in the CimonX runtime. You can add a new model through the window. | |
Example | Enter the command to bring up the recipe editor. RecipeEditDialog() |
RecipeLoad | Loads the recipe data from the recipe file. | |
Subroutine | Command | RecipeLoad(“Model Name”, “File Name”) |
Script | RecipeLoad “Model Name”,“File Name” | |
Description | This subroutine does the same action with [Open] in the recipe dialog box. The recipe data is retrieved from the specified recipe file. | |
Example | Enter the command to load the recipe data file ‘Pig feed’ to the ‘Feed’ model. RecipeLoad(“Feed”, “Pig feed”) |