Trang chủ Liên hệ

Part 16. Phần mềm SCADA Cimon Ultimate Access - Công thức (Recipe)

MC&TT Co.,Ltd 01/04/2025

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

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.

Description Enter the short explanation about the recipe file.
OK Saves the file in the project directory. A folder named recipe
model will be created as you click this button, and a file will be saved as *.rcf format in the folder.
Cancel Cancels a file save.
Delete Deletes the selected file
Open

Opens the selected recipe file

Product Select the file name to load the setting values. You may select the file saved in the project directory.
Description Displays the short explanation about recipe file.
OK Open the recipe file.
Cancel Cancel opening file.
Delete Delete the selected file. If you delete the file in the CimonX
runtime, the original file in the project directory will also be deleted.

 

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”)

 

Bài viết liên quan