diff --git a/__pycache__/config_manager.cpython-312.pyc b/__pycache__/config_manager.cpython-312.pyc new file mode 100644 index 0000000..263e6e1 Binary files /dev/null and b/__pycache__/config_manager.cpython-312.pyc differ diff --git a/backend/__pycache__/script_utils.cpython-312.pyc b/backend/__pycache__/script_utils.cpython-312.pyc new file mode 100644 index 0000000..a8d49c2 Binary files /dev/null and b/backend/__pycache__/script_utils.cpython-312.pyc differ diff --git a/backend/script_groups/ObtainIOFromProjectTia/script_config.json b/backend/script_groups/ObtainIOFromProjectTia/script_config.json new file mode 100644 index 0000000..05a14aa --- /dev/null +++ b/backend/script_groups/ObtainIOFromProjectTia/script_config.json @@ -0,0 +1,9 @@ +{ + "level1": { + "api_key": "your-api-key-here", + "model": "gpt-3.5-turbo" + }, + "level2": {}, + "level3": {}, + "working_directory": "C:\\Trabajo\\SIDEL\\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\\Reporte\\IOExport" +} \ No newline at end of file diff --git a/backend/script_groups/ObtainIOFromProjectTia/work_dir.json b/backend/script_groups/ObtainIOFromProjectTia/work_dir.json new file mode 100644 index 0000000..1d0832e --- /dev/null +++ b/backend/script_groups/ObtainIOFromProjectTia/work_dir.json @@ -0,0 +1,6 @@ +{ + "path": "C:\\Trabajo\\SIDEL\\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\\Reporte\\IOExport", + "history": [ + "C:\\Trabajo\\SIDEL\\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\\Reporte\\IOExport" + ] +} \ No newline at end of file diff --git a/backend/script_groups/ObtainIOFromProjectTia/x1.py b/backend/script_groups/ObtainIOFromProjectTia/x1.py index 7a5a762..6b83a1b 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/x1.py +++ b/backend/script_groups/ObtainIOFromProjectTia/x1.py @@ -1,7 +1,8 @@ """ -export_logic_from_tia : +export_logic_from_tia : Script para exportar el software de un PLC desde TIA Portal en archivos XML y SCL. """ + import tkinter as tk from tkinter import filedialog import os @@ -15,31 +16,42 @@ sys.path.append(script_root) from backend.script_utils import load_configuration # --- Configuration --- -TIA_PORTAL_VERSION = "18.0" # Target TIA Portal version (e.g., "18.0") -EXPORT_OPTIONS = None # Use default export options -KEEP_FOLDER_STRUCTURE = True # Replicate TIA project folder structure in export directory +TIA_PORTAL_VERSION = "18.0" # Target TIA Portal version (e.g., "18.0") +EXPORT_OPTIONS = None # Use default export options +KEEP_FOLDER_STRUCTURE = ( + True # Replicate TIA project folder structure in export directory +) # --- TIA Scripting Import Handling --- # Check if the TIA_SCRIPTING environment variable is set -if os.getenv('TIA_SCRIPTING'): - sys.path.append(os.getenv('TIA_SCRIPTING')) +if os.getenv("TIA_SCRIPTING"): + sys.path.append(os.getenv("TIA_SCRIPTING")) else: # Optional: Define a fallback path if the environment variable isn't set # fallback_path = "C:\\path\\to\\your\\TIA_Scripting_binaries" # if os.path.exists(fallback_path): # sys.path.append(fallback_path) - pass # Allow import to fail if not found + pass # Allow import to fail if not found try: import siemens_tia_scripting as ts - EXPORT_OPTIONS = ts.Enums.ExportOptions.WithDefaults # Set default options now that 'ts' is imported + + EXPORT_OPTIONS = ( + ts.Enums.ExportOptions.WithDefaults + ) # Set default options now that 'ts' is imported except ImportError: print("ERROR: Failed to import 'siemens_tia_scripting'.") print("Ensure:") print(f"1. TIA Portal Openness for V{TIA_PORTAL_VERSION} is installed.") - print("2. The 'siemens_tia_scripting' Python module is installed (pip install ...) or") - print(" the path to its binaries is set in the 'TIA_SCRIPTING' environment variable.") - print("3. You are using a compatible Python version (e.g., 3.12.X as per documentation).") + print( + "2. The 'siemens_tia_scripting' Python module is installed (pip install ...) or" + ) + print( + " the path to its binaries is set in the 'TIA_SCRIPTING' environment variable." + ) + print( + "3. You are using a compatible Python version (e.g., 3.12.X as per documentation)." + ) sys.exit(1) except Exception as e: print(f"An unexpected error occurred during import: {e}") @@ -48,13 +60,19 @@ except Exception as e: # --- Functions --- + def select_project_file(): """Opens a dialog to select a TIA Portal project file.""" root = tk.Tk() - root.withdraw() # Hide the main tkinter window + root.withdraw() # Hide the main tkinter window file_path = filedialog.askopenfilename( title="Select TIA Portal Project File", - filetypes=[(f"TIA Portal V{TIA_PORTAL_VERSION} Projects", f"*.ap{TIA_PORTAL_VERSION.split('.')[0]}")] # e.g. *.ap18 + filetypes=[ + ( + f"TIA Portal V{TIA_PORTAL_VERSION} Projects", + f"*.ap{TIA_PORTAL_VERSION.split('.')[0]}", + ) + ], # e.g. *.ap18 ) root.destroy() if not file_path: @@ -62,19 +80,19 @@ def select_project_file(): sys.exit(0) return file_path + def select_export_directory(): """Opens a dialog to select the export directory.""" root = tk.Tk() - root.withdraw() # Hide the main tkinter window - dir_path = filedialog.askdirectory( - title="Select Export Directory" - ) + root.withdraw() # Hide the main tkinter window + dir_path = filedialog.askdirectory(title="Select Export Directory") root.destroy() if not dir_path: print("No export directory selected. Exiting.") sys.exit(0) return dir_path + def export_plc_data(plc, export_base_dir): """Exports Blocks, UDTs, and Tag Tables from a given PLC.""" plc_name = plc.get_name() @@ -96,42 +114,52 @@ def export_plc_data(plc, export_base_dir): print(f" SCL Target: {scl_blocks_path}") try: - program_blocks = plc.get_program_blocks() # + program_blocks = plc.get_program_blocks() # print(f" Found {len(program_blocks)} program blocks.") for block in program_blocks: - block_name = block.get_name() # Assuming get_name() exists + block_name = block.get_name() # Assuming get_name() exists print(f" Processing block: {block_name}...") try: - if not block.is_consistent(): # + if not block.is_consistent(): # print(f" Compiling block {block_name}...") - block.compile() # + block.compile() # if not block.is_consistent(): - print(f" WARNING: Block {block_name} inconsistent after compile. Skipping.") - blocks_skipped += 1 - continue + print( + f" WARNING: Block {block_name} inconsistent after compile. Skipping." + ) + blocks_skipped += 1 + continue print(f" Exporting {block_name} as XML...") - block.export(target_directory_path=xml_blocks_path, # - export_options=EXPORT_OPTIONS, # - export_format=ts.Enums.ExportFormats.SimaticML, # - keep_folder_structure=KEEP_FOLDER_STRUCTURE) # + block.export( + target_directory_path=xml_blocks_path, # + export_options=EXPORT_OPTIONS, # + export_format=ts.Enums.ExportFormats.SimaticML, # + keep_folder_structure=KEEP_FOLDER_STRUCTURE, + ) # try: - prog_language = block.get_property(name="ProgrammingLanguage") - if prog_language == "SCL": - print(f" Exporting {block_name} as SCL...") - block.export(target_directory_path=scl_blocks_path, - export_options=EXPORT_OPTIONS, - export_format=ts.Enums.ExportFormats.ExternalSource, # - keep_folder_structure=KEEP_FOLDER_STRUCTURE) + prog_language = block.get_property(name="ProgrammingLanguage") + if prog_language == "SCL": + print(f" Exporting {block_name} as SCL...") + block.export( + target_directory_path=scl_blocks_path, + export_options=EXPORT_OPTIONS, + export_format=ts.Enums.ExportFormats.ExternalSource, # + keep_folder_structure=KEEP_FOLDER_STRUCTURE, + ) except Exception as prop_ex: - print(f" Could not get ProgrammingLanguage for {block_name}. Skipping SCL. Error: {prop_ex}") + print( + f" Could not get ProgrammingLanguage for {block_name}. Skipping SCL. Error: {prop_ex}" + ) blocks_exported += 1 except Exception as block_ex: print(f" ERROR exporting block {block_name}: {block_ex}") blocks_skipped += 1 - print(f" Program Blocks Export Summary: Exported={blocks_exported}, Skipped/Errors={blocks_skipped}") + print( + f" Program Blocks Export Summary: Exported={blocks_exported}, Skipped/Errors={blocks_skipped}" + ) except Exception as e: print(f" ERROR processing Program Blocks: {e}") traceback.print_exc() @@ -145,30 +173,36 @@ def export_plc_data(plc, export_base_dir): print(f" Target: {udt_export_path}") try: - udts = plc.get_user_data_types() # + udts = plc.get_user_data_types() # print(f" Found {len(udts)} UDTs.") for udt in udts: - udt_name = udt.get_name() # + udt_name = udt.get_name() # print(f" Processing UDT: {udt_name}...") try: - if not udt.is_consistent(): # + if not udt.is_consistent(): # print(f" Compiling UDT {udt_name}...") - udt.compile() # + udt.compile() # if not udt.is_consistent(): - print(f" WARNING: UDT {udt_name} inconsistent after compile. Skipping.") + print( + f" WARNING: UDT {udt_name} inconsistent after compile. Skipping." + ) udts_skipped += 1 continue print(f" Exporting {udt_name}...") - udt.export(target_directory_path=udt_export_path, # - export_options=EXPORT_OPTIONS, # - # export_format defaults to SimaticML for UDTs - keep_folder_structure=KEEP_FOLDER_STRUCTURE) # + udt.export( + target_directory_path=udt_export_path, # + export_options=EXPORT_OPTIONS, # + # export_format defaults to SimaticML for UDTs + keep_folder_structure=KEEP_FOLDER_STRUCTURE, + ) # udts_exported += 1 except Exception as udt_ex: print(f" ERROR exporting UDT {udt_name}: {udt_ex}") udts_skipped += 1 - print(f" UDT Export Summary: Exported={udts_exported}, Skipped/Errors={udts_skipped}") + print( + f" UDT Export Summary: Exported={udts_exported}, Skipped/Errors={udts_skipped}" + ) except Exception as e: print(f" ERROR processing UDTs: {e}") traceback.print_exc() @@ -182,23 +216,27 @@ def export_plc_data(plc, export_base_dir): print(f" Target: {tags_export_path}") try: - tag_tables = plc.get_plc_tag_tables() # + tag_tables = plc.get_plc_tag_tables() # print(f" Found {len(tag_tables)} Tag Tables.") for table in tag_tables: - table_name = table.get_name() # + table_name = table.get_name() # print(f" Processing Tag Table: {table_name}...") try: # Note: Consistency check might not be available/needed for tag tables like blocks/UDTs print(f" Exporting {table_name}...") - table.export(target_directory_path=tags_export_path, # - export_options=EXPORT_OPTIONS, # - # export_format defaults to SimaticML for Tag Tables - keep_folder_structure=KEEP_FOLDER_STRUCTURE) # + table.export( + target_directory_path=tags_export_path, # + export_options=EXPORT_OPTIONS, # + # export_format defaults to SimaticML for Tag Tables + keep_folder_structure=KEEP_FOLDER_STRUCTURE, + ) # tags_exported += 1 except Exception as table_ex: print(f" ERROR exporting Tag Table {table_name}: {table_ex}") tags_skipped += 1 - print(f" Tag Table Export Summary: Exported={tags_exported}, Skipped/Errors={tags_skipped}") + print( + f" Tag Table Export Summary: Exported={tags_exported}, Skipped/Errors={tags_skipped}" + ) except Exception as e: print(f" ERROR processing Tag Tables: {e}") traceback.print_exc() @@ -208,17 +246,25 @@ def export_plc_data(plc, export_base_dir): # --- Main Script --- + if __name__ == "__main__": configs = load_configuration() - + working_directory = configs.get("working_directory") + print("--- TIA Portal Data Exporter (Blocks, UDTs, Tags) ---") - # 1. Select Files/Folders + # Validate working directory + if not working_directory or not os.path.isdir(working_directory): + print("ERROR: Working directory not set or invalid in configuration.") + print("Please configure the working directory using the main application.") + sys.exit(1) + + # 1. Select Project File, Export Directory comes from config project_file = select_project_file() - export_dir = select_export_directory() + export_dir = working_directory # Use working directory from config print(f"\nSelected Project: {project_file}") - print(f"Selected Export Directory: {export_dir}") + print(f"Using Export Directory (Working Directory): {export_dir}") portal_instance = None project_object = None @@ -228,31 +274,33 @@ if __name__ == "__main__": print(f"\nConnecting to TIA Portal V{TIA_PORTAL_VERSION}...") portal_instance = ts.open_portal( version=TIA_PORTAL_VERSION, - portal_mode=ts.Enums.PortalMode.WithGraphicalUserInterface + portal_mode=ts.Enums.PortalMode.WithGraphicalUserInterface, ) print("Connected to TIA Portal.") - print(f"Portal Process ID: {portal_instance.get_process_id()}") # + print(f"Portal Process ID: {portal_instance.get_process_id()}") # # 3. Open Project print(f"Opening project: {os.path.basename(project_file)}...") - project_object = portal_instance.open_project(project_file_path=project_file) # + project_object = portal_instance.open_project(project_file_path=project_file) # if project_object is None: - print("Project might already be open, attempting to get handle...") - project_object = portal_instance.get_project() # - if project_object is None: - raise Exception("Failed to open or get the specified project.") + print("Project might already be open, attempting to get handle...") + project_object = portal_instance.get_project() # + if project_object is None: + raise Exception("Failed to open or get the specified project.") print("Project opened successfully.") # 4. Get PLCs - plcs = project_object.get_plcs() # + plcs = project_object.get_plcs() # if not plcs: print("No PLC devices found in the project.") else: print(f"Found {len(plcs)} PLC(s). Starting export process...") - + # 5. Iterate and Export Data for each PLC for plc_device in plcs: - export_plc_data(plc=plc_device, export_base_dir=export_dir) + export_plc_data( + plc=plc_device, export_base_dir=export_dir + ) # Pass export_dir print("\nExport process completed.") @@ -269,9 +317,9 @@ if __name__ == "__main__": if portal_instance: try: print("\nClosing TIA Portal...") - portal_instance.close_portal() # + portal_instance.close_portal() # print("TIA Portal closed.") except Exception as close_ex: print(f"Error during TIA Portal cleanup: {close_ex}") - - print("\nScript finished.") \ No newline at end of file + + print("\nScript finished.") diff --git a/backend/script_groups/ObtainIOFromProjectTia/x2.py b/backend/script_groups/ObtainIOFromProjectTia/x2.py index 100062b..4604350 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/x2.py +++ b/backend/script_groups/ObtainIOFromProjectTia/x2.py @@ -1,13 +1,15 @@ """ -export_CAx_from_tia : +export_CAx_from_tia : Script que exporta los datos CAx de un proyecto de TIA Portal y genera un resumen en Markdown. """ + import tkinter as tk from tkinter import filedialog import os import sys import traceback -import xml.etree.ElementTree as ET # Library to parse XML (AML) +import xml.etree.ElementTree as ET # Library to parse XML (AML) +from pathlib import Path # Import Path script_root = os.path.dirname( os.path.dirname(os.path.dirname(os.path.dirname(__file__))) @@ -16,12 +18,12 @@ sys.path.append(script_root) from backend.script_utils import load_configuration # --- Configuration --- -TIA_PORTAL_VERSION = "18.0" # Target TIA Portal version +TIA_PORTAL_VERSION = "18.0" # Target TIA Portal version # --- TIA Scripting Import Handling --- # (Same import handling as the previous script) -if os.getenv('TIA_SCRIPTING'): - sys.path.append(os.getenv('TIA_SCRIPTING')) +if os.getenv("TIA_SCRIPTING"): + sys.path.append(os.getenv("TIA_SCRIPTING")) else: pass @@ -38,13 +40,19 @@ except Exception as e: # --- Functions --- + def select_project_file(): """Opens a dialog to select a TIA Portal project file.""" root = tk.Tk() root.withdraw() file_path = filedialog.askopenfilename( title="Select TIA Portal Project File", - filetypes=[(f"TIA Portal V{TIA_PORTAL_VERSION} Projects", f"*.ap{TIA_PORTAL_VERSION.split('.')[0]}")] + filetypes=[ + ( + f"TIA Portal V{TIA_PORTAL_VERSION} Projects", + f"*.ap{TIA_PORTAL_VERSION.split('.')[0]}", + ) + ], ) root.destroy() if not file_path: @@ -52,6 +60,7 @@ def select_project_file(): sys.exit(0) return file_path + def select_output_directory(): """Opens a dialog to select the output directory.""" root = tk.Tk() @@ -65,35 +74,42 @@ def select_output_directory(): sys.exit(0) return dir_path + def find_elements(element, path): """Helper to find elements using namespaces commonly found in AML.""" # AutomationML namespaces often vary slightly or might be default # This basic approach tries common prefixes or no prefix namespaces = { - '': element.tag.split('}')[0][1:] if '}' in element.tag else '', # Default namespace if present - 'caex': 'http://www.dke.de/CAEX', # Common CAEX namespace + "": ( + element.tag.split("}")[0][1:] if "}" in element.tag else "" + ), # Default namespace if present + "caex": "http://www.dke.de/CAEX", # Common CAEX namespace # Add other potential namespaces if needed based on file inspection } # Try finding with common prefixes or the default namespace for prefix, uri in namespaces.items(): - # Construct path with namespace URI if prefix is defined - namespaced_path = path - if prefix: - parts = path.split('/') - namespaced_parts = [f"{{{uri}}}{part}" if part != '.' else part for part in parts] - namespaced_path = '/'.join(namespaced_parts) - - # Try findall with the constructed path - found = element.findall(namespaced_path) - if found: - return found # Return first successful find + # Construct path with namespace URI if prefix is defined + namespaced_path = path + if prefix: + parts = path.split("/") + namespaced_parts = [ + f"{{{uri}}}{part}" if part != "." else part for part in parts + ] + namespaced_path = "/".join(namespaced_parts) + + # Try findall with the constructed path + found = element.findall(namespaced_path) + if found: + return found # Return first successful find # Fallback: try finding without explicit namespace (might work if default ns is used throughout) # This might require adjusting the path string itself depending on the XML structure try: # Simple attempt without namespace handling if the above fails return element.findall(path) - except SyntaxError: # Handle potential errors if path isn't valid without namespaces + except ( + SyntaxError + ): # Handle potential errors if path isn't valid without namespaces return [] @@ -109,96 +125,137 @@ def parse_aml_to_markdown(aml_file_path, md_file_path): # Find InstanceHierarchy - usually contains the project structure # Note: Namespace handling in ElementTree can be tricky. Adjust '{...}' part if needed. # We will use a helper function 'find_elements' to try common patterns - instance_hierarchies = find_elements(root, './/InstanceHierarchy') # Common CAEX tag + instance_hierarchies = find_elements( + root, ".//InstanceHierarchy" + ) # Common CAEX tag if not instance_hierarchies: markdown_lines.append("Could not find InstanceHierarchy in the AML file.") print("Warning: Could not find InstanceHierarchy element.") else: - # Assuming the first InstanceHierarchy is the main one + # Assuming the first InstanceHierarchy is the main one ih = instance_hierarchies[0] markdown_lines.append(f"## Instance Hierarchy: {ih.get('Name', 'N/A')}") markdown_lines.append("") # Look for InternalElements which represent devices/components - internal_elements = find_elements(ih, './/InternalElement') # Common CAEX tag + internal_elements = find_elements( + ih, ".//InternalElement" + ) # Common CAEX tag if not internal_elements: - markdown_lines.append("No devices (InternalElement) found in InstanceHierarchy.") - print("Info: No InternalElement tags found under InstanceHierarchy.") + markdown_lines.append( + "No devices (InternalElement) found in InstanceHierarchy." + ) + print("Info: No InternalElement tags found under InstanceHierarchy.") else: - markdown_lines.append(f"Found {len(internal_elements)} device(s)/component(s):") + markdown_lines.append( + f"Found {len(internal_elements)} device(s)/component(s):" + ) markdown_lines.append("") - markdown_lines.append("| Name | SystemUnitClass | RefBaseSystemUnitPath | Attributes |") + markdown_lines.append( + "| Name | SystemUnitClass | RefBaseSystemUnitPath | Attributes |" + ) markdown_lines.append("|---|---|---|---|") for elem in internal_elements: - name = elem.get('Name', 'N/A') - ref_path = elem.get('RefBaseSystemUnitPath', 'N/A') # Path to class definition - + name = elem.get("Name", "N/A") + ref_path = elem.get( + "RefBaseSystemUnitPath", "N/A" + ) # Path to class definition + # Try to get the class name from the RefBaseSystemUnitPath or SystemUnitClassLib - su_class_path = find_elements(elem, './/SystemUnitClass') # Check direct child first - su_class = su_class_path[0].get('Path', 'N/A') if su_class_path else ref_path.split('/')[-1] # Fallback to last part of path + su_class_path = find_elements( + elem, ".//SystemUnitClass" + ) # Check direct child first + su_class = ( + su_class_path[0].get("Path", "N/A") + if su_class_path + else ref_path.split("/")[-1] + ) # Fallback to last part of path attributes_md = "" - attributes = find_elements(elem, './/Attribute') # Find attributes + attributes = find_elements(elem, ".//Attribute") # Find attributes attr_list = [] for attr in attributes: - attr_name = attr.get('Name', '') - attr_value_elem = find_elements(attr, './/Value') # Get Value element - attr_value = attr_value_elem[0].text if attr_value_elem and attr_value_elem[0].text else 'N/A' - + attr_name = attr.get("Name", "") + attr_value_elem = find_elements( + attr, ".//Value" + ) # Get Value element + attr_value = ( + attr_value_elem[0].text + if attr_value_elem and attr_value_elem[0].text + else "N/A" + ) + # Look for potential IP addresses (common attribute names) if "Address" in attr_name or "IP" in attr_name: - attr_list.append(f"**{attr_name}**: {attr_value}") + attr_list.append(f"**{attr_name}**: {attr_value}") else: - attr_list.append(f"{attr_name}: {attr_value}") - + attr_list.append(f"{attr_name}: {attr_value}") + attributes_md = "
".join(attr_list) if attr_list else "None" - - markdown_lines.append(f"| {name} | {su_class} | `{ref_path}` | {attributes_md} |") + markdown_lines.append( + f"| {name} | {su_class} | `{ref_path}` | {attributes_md} |" + ) # Write to Markdown file - with open(md_file_path, 'w', encoding='utf-8') as f: + with open(md_file_path, "w", encoding="utf-8") as f: f.write("\n".join(markdown_lines)) print(f"Markdown summary written to: {md_file_path}") except ET.ParseError as xml_err: print(f"ERROR parsing XML file {aml_file_path}: {xml_err}") - with open(md_file_path, 'w', encoding='utf-8') as f: - f.write(f"# Error\n\nFailed to parse AML file: {os.path.basename(aml_file_path)}\n\nError: {xml_err}") + with open(md_file_path, "w", encoding="utf-8") as f: + f.write( + f"# Error\n\nFailed to parse AML file: {os.path.basename(aml_file_path)}\n\nError: {xml_err}" + ) except Exception as e: print(f"ERROR processing AML file {aml_file_path}: {e}") traceback.print_exc() - with open(md_file_path, 'w', encoding='utf-8') as f: - f.write(f"# Error\n\nAn unexpected error occurred while processing AML file: {os.path.basename(aml_file_path)}\n\nError: {e}") + with open(md_file_path, "w", encoding="utf-8") as f: + f.write( + f"# Error\n\nAn unexpected error occurred while processing AML file: {os.path.basename(aml_file_path)}\n\nError: {e}" + ) # --- Main Script --- if __name__ == "__main__": configs = load_configuration() + working_directory = configs.get("working_directory") + print("--- TIA Portal Project CAx Exporter and Analyzer ---") - # 1. Select Files/Folders + # Validate working directory + if not working_directory or not os.path.isdir(working_directory): + print("ERROR: Working directory not set or invalid in configuration.") + print("Please configure the working directory using the main application.") + sys.exit(1) + + # 1. Select Project File, Output Directory comes from config project_file = select_project_file() - output_dir = select_output_directory() + output_dir = Path( + working_directory + ) # Use working directory from config, ensure it's a Path object print(f"\nSelected Project: {project_file}") - print(f"Selected Output Directory: {output_dir}") + print(f"Using Output Directory (Working Directory): {output_dir}") - # Define output file names - project_base_name = os.path.splitext(os.path.basename(project_file))[0] - aml_file = os.path.join(output_dir, f"{project_base_name}_CAx_Export.aml") - md_file = os.path.join(output_dir, f"{project_base_name}_CAx_Summary.md") - log_file = os.path.join(output_dir, f"{project_base_name}_CAx_Export.log") # Log file for the export process + # Define output file names using Path object + project_path = Path(project_file) + project_base_name = project_path.stem # Get filename without extension + aml_file = output_dir / f"{project_base_name}_CAx_Export.aml" + md_file = output_dir / f"{project_base_name}_CAx_Summary.md" + log_file = ( + output_dir / f"{project_base_name}_CAx_Export.log" + ) # Log file for the export process print(f"Will export CAx data to: {aml_file}") print(f"Will generate summary to: {md_file}") print(f"Export log file: {log_file}") - portal_instance = None project_object = None cax_export_successful = False @@ -208,25 +265,33 @@ if __name__ == "__main__": print(f"\nConnecting to TIA Portal V{TIA_PORTAL_VERSION}...") portal_instance = ts.open_portal( version=TIA_PORTAL_VERSION, - portal_mode=ts.Enums.PortalMode.WithGraphicalUserInterface + portal_mode=ts.Enums.PortalMode.WithGraphicalUserInterface, ) print("Connected.") # 3. Open Project - print(f"Opening project: {os.path.basename(project_file)}...") - project_object = portal_instance.open_project(project_file_path=project_file) + print( + f"Opening project: {project_path.name}..." + ) # Use Path object's name attribute + project_object = portal_instance.open_project( + project_file_path=str(project_path) + ) # Pass path as string if project_object is None: - project_object = portal_instance.get_project() - if project_object is None: - raise Exception("Failed to open or get the specified project.") + print("Project might already be open, attempting to get handle...") + project_object = portal_instance.get_project() + if project_object is None: + raise Exception("Failed to open or get the specified project.") print("Project opened.") # 4. Export CAx Data (Project Level) print(f"Exporting CAx data for the project to {aml_file}...") - # Ensure output directory exists for the log file as well - os.makedirs(os.path.dirname(log_file), exist_ok=True) - - export_result = project_object.export_cax_data(export_file_path=aml_file, log_file_path=log_file) # [cite: 361] + # Ensure output directory exists (Path.mkdir handles this implicitly if needed later, but good practice) + output_dir.mkdir(parents=True, exist_ok=True) + + # Pass paths as strings to the TIA function + export_result = project_object.export_cax_data( + export_file_path=str(aml_file), log_file_path=str(log_file) + ) if export_result: print("CAx data exported successfully.") @@ -235,9 +300,10 @@ if __name__ == "__main__": print("CAx data export failed. Check the log file for details:") print(f" Log file: {log_file}") # Write basic error message to MD file if export fails - with open(md_file, 'w', encoding='utf-8') as f: - f.write(f"# Error\n\nCAx data export failed. Check log file: {log_file}") - + with open(md_file, "w", encoding="utf-8") as f: + f.write( + f"# Error\n\nCAx data export failed. Check log file: {log_file}" + ) except ts.TiaException as tia_ex: print(f"\nTIA Portal Openness Error: {tia_ex}") @@ -259,11 +325,15 @@ if __name__ == "__main__": # 5. Parse AML and Generate Markdown (only if export was successful) if cax_export_successful: - if os.path.exists(aml_file): - parse_aml_to_markdown(aml_file, md_file) + if aml_file.exists(): # Use Path object's exists() method + parse_aml_to_markdown(aml_file, md_file) else: - print(f"ERROR: Export was reported successful, but AML file not found at {aml_file}") - with open(md_file, 'w', encoding='utf-8') as f: - f.write(f"# Error\n\nExport was reported successful, but AML file not found:\n{aml_file}") + print( + f"ERROR: Export was reported successful, but AML file not found at {aml_file}" + ) + with open(md_file, "w", encoding="utf-8") as f: + f.write( + f"# Error\n\nExport was reported successful, but AML file not found:\n{aml_file}" + ) - print("\nScript finished.") \ No newline at end of file + print("\nScript finished.") diff --git a/backend/script_groups/ObtainIOFromProjectTia/x3.py b/backend/script_groups/ObtainIOFromProjectTia/x3.py index eb67bed..833b91d 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/x3.py +++ b/backend/script_groups/ObtainIOFromProjectTia/x3.py @@ -1,8 +1,9 @@ """ export_io_from_CAx : -Script que sirve para exraer los IOs de un proyecto de TIA Portal y +Script que sirve para exraer los IOs de un proyecto de TIA Portal y generar un archivo Markdown con la información. """ + import os import sys from tkinter import filedialog @@ -19,6 +20,7 @@ script_root = os.path.dirname( sys.path.append(script_root) from backend.script_utils import load_configuration + # --- extract_aml_data function (Unchanged from v15) --- def extract_aml_data(root): """(v15 logic - Unchanged) Extracts data, correcting PLC network association lookup.""" @@ -955,13 +957,15 @@ def process_aml_file( print(f"ERROR processing AML file {aml_file_path}: {e}") traceback.print_exc() -def select_cax_file(): - """Opens a dialog to select a CAx (XML) export file.""" + +def select_cax_file(initial_dir=None): # Add initial_dir parameter + """Opens a dialog to select a CAx (XML) export file, starting in the specified directory.""" root = tk.Tk() root.withdraw() file_path = filedialog.askopenfilename( title="Select CAx Export File (XML)", - filetypes=[("XML Files", "*.xml"), ("All Files", "*.*")] # Changed filetypes + filetypes=[("XML Files", "*.xml"), ("AML Files", "*.aml"), ("All Files", "*.*")], # Added AML + initialdir=initial_dir # Set the initial directory ) root.destroy() if not file_path: @@ -969,12 +973,13 @@ def select_cax_file(): sys.exit(0) return file_path + def select_output_directory(): """Opens a dialog to select the output directory.""" root = tk.Tk() root.withdraw() dir_path = filedialog.askdirectory( - title="Select Output Directory for JSON and MD files" # Updated title slightly + title="Select Output Directory for JSON and MD files" # Updated title slightly ) root.destroy() if not dir_path: @@ -982,35 +987,53 @@ def select_output_directory(): sys.exit(0) return dir_path + # --- Main Execution --- if __name__ == "__main__": - # configs = load_configuration() # Keep if needed, otherwise remove + configs = load_configuration() + working_directory = configs.get("working_directory") - script_version = "v27 - User Input/Output Paths" # Updated version + script_version = "v28 - Working Directory Integration" # Updated version print( f"--- AML (CAx Export) to Hierarchical JSON and Obsidian MD Converter ({script_version}) ---" ) - # 1. Select Input CAx File and Output Directory - cax_file_path = select_cax_file() - output_dir = select_output_directory() + # Validate working directory + if not working_directory or not os.path.isdir(working_directory): + print("ERROR: Working directory not set or invalid in configuration.") + print("Attempting to use script's directory as fallback.") + # Fallback to script's directory or current directory if needed + working_directory = os.path.dirname(os.path.abspath(__file__)) + if not os.path.isdir(working_directory): + working_directory = os.getcwd() + print(f"Using fallback directory: {working_directory}") + # Optionally, prompt user to select a working directory here if critical + # output_dir = select_output_directory() # Keep this if you want user selection on failure + + # Use working_directory as the output directory + output_dir = working_directory + print(f"Using Working Directory for Output: {output_dir}") + + # 1. Select Input CAx File, starting in the working directory + # Pass working_directory to the selection function + cax_file_path = select_cax_file(initial_dir=working_directory) # Convert paths to Path objects input_path = Path(cax_file_path) - output_path = Path(output_dir) + output_path = Path(output_dir) # Output path is the working directory # Check if input file exists if not input_path.is_file(): print(f"ERROR: Input file '{input_path}' not found or is not a file.") sys.exit(1) - # Ensure output directory exists + # Ensure output directory exists (redundant if working_directory is valid, but safe) output_path.mkdir(parents=True, exist_ok=True) - # Construct output file paths within the selected output directory + # Construct output file paths within the selected output directory (working_directory) output_json_file = output_path / input_path.with_suffix(".hierarchical.json").name - output_md_file = output_path / input_path.with_name(f"{input_path.stem}_Hardware_Tree.md").name - output_md_upward_file = output_path / input_path.with_name(f"{input_path.stem}_IO_Upward_Debug.md").name + output_md_file = output_path / input_path.with_name(f"{input_path.stem}_Hardware_Tree.md") # Simplified name + output_md_upward_file = output_path / input_path.with_name(f"{input_path.stem}_IO_Upward_Debug.md") # Simplified name print(f"Input AML: {input_path.resolve()}") print(f"Output Directory: {output_path.resolve()}") diff --git a/data/log.txt b/data/log.txt index f606c05..33b403e 100644 --- a/data/log.txt +++ b/data/log.txt @@ -1 +1,1935 @@ -[22:54:35] Error: Directorio de trabajo no configurado +[23:08:42] Configuraciones guardadas en d:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\ObtainIOFromProjectTia\script_config.json +[23:08:42] Iniciando ejecución de x1.py +[23:08:43] --- TIA Portal Data Exporter (Blocks, UDTs, Tags) --- +[23:09:02] Selected Project: C:/Trabajo/SIDEL/06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)/InLavoro/PLC/SAE196_c0.2/SAE196_c0.2.ap18 +[23:09:02] Using Export Directory (Working Directory): C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport +[23:09:02] Connecting to TIA Portal V18.0... +[23:09:03] 2025-05-02 23:09:03,396 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Global OpenPortal - Start TIA Portal, please acknowledge the security dialog. +[23:09:03] 2025-05-02 23:09:03,421 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Global OpenPortal - With user interface +[23:10:12] Connected to TIA Portal. +[23:10:12] 2025-05-02 23:10:12,848 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal GetProcessId - Process id: 34300 +[23:10:12] Portal Process ID: 34300 +[23:10:12] Opening project: SAE196_c0.2.ap18... +[23:10:13] 2025-05-02 23:10:13,299 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal OpenProject - Open project... C:/Trabajo/SIDEL/06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)/InLavoro/PLC/SAE196_c0.2/SAE196_c0.2.ap18 +[23:11:27] Project opened successfully. +[23:11:39] 2025-05-02 23:11:39,425 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Project GetPlcs - Found plc PLC with parent name S71500/ET200MP station_1 +[23:11:46] Found 1 PLC(s). Starting export process... +[23:11:46] --- Processing PLC: PLC --- +[23:11:46] [PLC: PLC] Exporting Program Blocks... +[23:11:46] XML Target: C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport\PLC\ProgramBlocks_XML +[23:11:46] SCL Target: C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport\PLC\ProgramBlocks_SCL +[23:11:46] Found 380 program blocks. +[23:11:50] Processing block: _CYCL_EXC... +[23:11:56] Exporting _CYCL_EXC as XML... +[23:12:14] 2025-05-02 23:12:14,210 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: _CYCL_EXC exported successfully +[23:12:14] 2025-05-02 23:12:14,265 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - _CYCL_EXC exported successfully +[23:12:14] Processing block: COMPLETE RESTART... +[23:12:14] Exporting COMPLETE RESTART as XML... +[23:12:14] 2025-05-02 23:12:14,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: COMPLETE RESTART exported successfully +[23:12:14] 2025-05-02 23:12:14,900 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - COMPLETE RESTART exported successfully +[23:12:14] Processing block: I/O_FLT1... +[23:12:14] Exporting I/O_FLT1 as XML... +[23:12:14] 2025-05-02 23:12:14,950 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: I/O_FLT1 exported successfully +[23:12:14] 2025-05-02 23:12:14,961 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - I/O_FLT1 exported successfully +[23:12:14] Processing block: MOD_ERR... +[23:12:14] Exporting MOD_ERR as XML... +[23:12:15] 2025-05-02 23:12:15,010 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MOD_ERR exported successfully +[23:12:15] 2025-05-02 23:12:15,021 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MOD_ERR exported successfully +[23:12:15] Processing block: ProDiagOB... +[23:12:15] Exporting ProDiagOB as XML... +[23:12:15] ERROR exporting block ProDiagOB: OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.OB'. +[23:12:15] Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.OB'. +[23:12:15] The programming language 'ProDiag_OB' is not supported during import and export. +[23:12:15] Processing block: Programming error... +[23:12:15] Exporting Programming error as XML... +[23:12:15] 2025-05-02 23:12:15,275 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Programming error exported successfully +[23:12:15] 2025-05-02 23:12:15,283 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Programming error exported successfully +[23:12:15] Processing block: RACK_FLT... +[23:12:15] Exporting RACK_FLT as XML... +[23:12:15] 2025-05-02 23:12:15,472 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RACK_FLT exported successfully +[23:12:15] 2025-05-02 23:12:15,474 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RACK_FLT exported successfully +[23:12:15] Processing block: Time error interrupt... +[23:12:15] Exporting Time error interrupt as XML... +[23:12:15] 2025-05-02 23:12:15,520 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Time error interrupt exported successfully +[23:12:15] 2025-05-02 23:12:15,533 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Time error interrupt exported successfully +[23:12:15] Processing block: Baialage... +[23:12:15] Exporting Baialage as XML... +[23:12:15] 2025-05-02 23:12:15,787 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Baialage exported successfully +[23:12:15] 2025-05-02 23:12:15,799 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Baialage exported successfully +[23:12:15] Processing block: BlenderCtrl__Main... +[23:12:17] Exporting BlenderCtrl__Main as XML... +[23:12:17] 2025-05-02 23:12:17,895 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl__Main exported successfully +[23:12:17] 2025-05-02 23:12:17,897 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl__Main exported successfully +[23:12:17] Processing block: BlenderCtrl_CIPModeInit... +[23:12:17] Exporting BlenderCtrl_CIPModeInit as XML... +[23:12:17] 2025-05-02 23:12:17,946 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_CIPModeInit exported successfully +[23:12:17] 2025-05-02 23:12:17,963 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_CIPModeInit exported successfully +[23:12:17] Processing block: BlenderCtrl_ProdModeInit... +[23:12:17] Exporting BlenderCtrl_ProdModeInit as XML... +[23:12:18] 2025-05-02 23:12:18,002 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_ProdModeInit exported successfully +[23:12:18] 2025-05-02 23:12:18,003 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_ProdModeInit exported successfully +[23:12:18] Processing block: BlenderCtrl_ResetSPWord... +[23:12:18] Exporting BlenderCtrl_ResetSPWord as XML... +[23:12:18] 2025-05-02 23:12:18,128 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_ResetSPWord exported successfully +[23:12:18] 2025-05-02 23:12:18,132 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_ResetSPWord exported successfully +[23:12:18] Processing block: BlenderCtrl_UpdatePWord... +[23:12:18] Exporting BlenderCtrl_UpdatePWord as XML... +[23:12:18] 2025-05-02 23:12:18,316 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_UpdatePWord exported successfully +[23:12:18] 2025-05-02 23:12:18,341 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_UpdatePWord exported successfully +[23:12:18] Processing block: BlenderPID_NextRecipe... +[23:12:18] Exporting BlenderPID_NextRecipe as XML... +[23:12:18] 2025-05-02 23:12:18,408 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_NextRecipe exported successfully +[23:12:18] 2025-05-02 23:12:18,410 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_NextRecipe exported successfully +[23:12:18] Processing block: BlenderRinse... +[23:12:18] Compiling block BlenderRinse... +[23:12:18] 2025-05-02 23:12:18,421 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block BlenderRinse. Result: +[23:12:32] 2025-05-02 23:12:32,291 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:12:32] 2025-05-02 23:12:32,292 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:12:32] 2025-05-02 23:12:32,293 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > BlenderRinse (FC2019) > Block was successfully compiled. +[23:12:32] Exporting BlenderRinse as XML... +[23:12:32] 2025-05-02 23:12:32,522 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRinse exported successfully +[23:12:32] 2025-05-02 23:12:32,529 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRinse exported successfully +[23:12:32] Processing block: BlenderRinse_Done... +[23:12:32] Exporting BlenderRinse_Done as XML... +[23:12:32] 2025-05-02 23:12:32,596 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRinse_Done exported successfully +[23:12:32] 2025-05-02 23:12:32,597 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRinse_Done exported successfully +[23:12:32] Processing block: BlenderRun_ProdTime... +[23:12:32] Compiling block BlenderRun_ProdTime... +[23:12:32] 2025-05-02 23:12:32,603 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block BlenderRun_ProdTime. Result: +[23:12:33] 2025-05-02 23:12:33,980 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:12:33] 2025-05-02 23:12:33,981 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:12:33] 2025-05-02 23:12:33,981 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > BlenderRun_ProdTime (FC2040) > Block was successfully compiled. +[23:12:33] Exporting BlenderRun_ProdTime as XML... +[23:12:34] 2025-05-02 23:12:34,091 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_ProdTime exported successfully +[23:12:34] 2025-05-02 23:12:34,105 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_ProdTime exported successfully +[23:12:34] Processing block: BlenderRun_Stopping... +[23:12:34] Compiling block BlenderRun_Stopping... +[23:12:34] 2025-05-02 23:12:34,127 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block BlenderRun_Stopping. Result: +[23:12:35] 2025-05-02 23:12:35,291 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:12:35] 2025-05-02 23:12:35,292 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:12:35] 2025-05-02 23:12:35,292 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > BlenderRun_Stopping (FC2041) > Block was successfully compiled. +[23:12:35] Exporting BlenderRun_Stopping as XML... +[23:12:35] 2025-05-02 23:12:35,392 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_Stopping exported successfully +[23:12:35] 2025-05-02 23:12:35,400 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_Stopping exported successfully +[23:12:35] Processing block: Blocco_1... +[23:12:35] Exporting Blocco_1 as XML... +[23:12:35] 2025-05-02 23:12:35,447 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blocco_1 exported successfully +[23:12:35] 2025-05-02 23:12:35,449 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blocco_1 exported successfully +[23:12:35] Processing block: Block_compare... +[23:12:35] Exporting Block_compare as XML... +[23:12:35] 2025-05-02 23:12:35,642 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Block_compare exported successfully +[23:12:35] 2025-05-02 23:12:35,647 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Block_compare exported successfully +[23:12:35] Processing block: Block_move... +[23:12:35] Exporting Block_move as XML... +[23:12:35] 2025-05-02 23:12:35,712 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Block_move exported successfully +[23:12:35] 2025-05-02 23:12:35,713 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Block_move exported successfully +[23:12:35] Processing block: CarboWaterLine_Seq... +[23:12:35] Exporting CarboWaterLine_Seq as XML... +[23:12:35] 2025-05-02 23:12:35,953 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CarboWaterLine_Seq exported successfully +[23:12:35] 2025-05-02 23:12:35,962 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CarboWaterLine_Seq exported successfully +[23:12:35] Processing block: Cetrifugal_Head... +[23:12:35] Exporting Cetrifugal_Head as XML... +[23:12:36] 2025-05-02 23:12:36,706 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Cetrifugal_Head exported successfully +[23:12:36] 2025-05-02 23:12:36,731 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Cetrifugal_Head exported successfully +[23:12:36] Exporting Cetrifugal_Head as SCL... +[23:12:39] 2025-05-02 23:12:39,096 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Cetrifugal_Head external source successfully generated +[23:12:39] Processing block: CIP CVQ... +[23:12:39] Exporting CIP CVQ as XML... +[23:12:39] 2025-05-02 23:12:39,173 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIP CVQ exported successfully +[23:12:39] 2025-05-02 23:12:39,175 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIP CVQ exported successfully +[23:12:39] Exporting CIP CVQ as SCL... +[23:12:39] 2025-05-02 23:12:39,210 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIP CVQ external source successfully generated +[23:12:39] Processing block: CIP FlipFlop... +[23:12:39] Exporting CIP FlipFlop as XML... +[23:12:39] 2025-05-02 23:12:39,350 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIP FlipFlop exported successfully +[23:12:39] 2025-05-02 23:12:39,380 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIP FlipFlop exported successfully +[23:12:39] Processing block: CIPLocal_ProgInizialize... +[23:12:39] Exporting CIPLocal_ProgInizialize as XML... +[23:12:39] 2025-05-02 23:12:39,455 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_ProgInizialize exported successfully +[23:12:39] 2025-05-02 23:12:39,457 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_ProgInizialize exported successfully +[23:12:39] Processing block: CIPLocal_WaitEvent_Ctrl... +[23:12:39] Exporting CIPLocal_WaitEvent_Ctrl as XML... +[23:12:39] 2025-05-02 23:12:39,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_WaitEvent_Ctrl exported successfully +[23:12:39] 2025-05-02 23:12:39,565 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_WaitEvent_Ctrl exported successfully +[23:12:39] Processing block: CIPMain... +[23:12:39] Exporting CIPMain as XML... +[23:12:39] 2025-05-02 23:12:39,839 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPMain exported successfully +[23:12:39] 2025-05-02 23:12:39,862 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPMain exported successfully +[23:12:39] Processing block: CIPMain_Flood... +[23:12:39] Exporting CIPMain_Flood as XML... +[23:12:40] 2025-05-02 23:12:40,032 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPMain_Flood exported successfully +[23:12:40] 2025-05-02 23:12:40,048 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPMain_Flood exported successfully +[23:12:40] Processing block: CIPMain_Total Drain... +[23:12:40] Exporting CIPMain_Total Drain as XML... +[23:12:40] 2025-05-02 23:12:40,179 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPMain_Total Drain exported successfully +[23:12:40] 2025-05-02 23:12:40,187 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPMain_Total Drain exported successfully +[23:12:40] Processing block: Clock Signal... +[23:12:40] Exporting Clock Signal as XML... +[23:12:40] 2025-05-02 23:12:40,324 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Clock Signal exported successfully +[23:12:40] 2025-05-02 23:12:40,326 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Clock Signal exported successfully +[23:12:40] Processing block: CO2 Solubility... +[23:12:40] Exporting CO2 Solubility as XML... +[23:12:40] 2025-05-02 23:12:40,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2 Solubility exported successfully +[23:12:40] 2025-05-02 23:12:40,891 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2 Solubility exported successfully +[23:12:40] Exporting CO2 Solubility as SCL... +[23:12:40] 2025-05-02 23:12:40,939 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2 Solubility external source successfully generated +[23:12:40] Processing block: CO2EqPress... +[23:12:40] Exporting CO2EqPress as XML... +[23:12:40] 2025-05-02 23:12:40,993 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2EqPress exported successfully +[23:12:40] 2025-05-02 23:12:40,994 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2EqPress exported successfully +[23:12:40] Exporting CO2EqPress as SCL... +[23:12:41] 2025-05-02 23:12:41,029 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2EqPress external source successfully generated +[23:12:41] Processing block: CO2InjPressure... +[23:12:41] Exporting CO2InjPressure as XML... +[23:12:41] 2025-05-02 23:12:41,066 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2InjPressure exported successfully +[23:12:41] 2025-05-02 23:12:41,069 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2InjPressure exported successfully +[23:12:41] Exporting CO2InjPressure as SCL... +[23:12:41] 2025-05-02 23:12:41,120 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2InjPressure external source successfully generated +[23:12:41] Processing block: CTRLCoolingSystem... +[23:12:41] Exporting CTRLCoolingSystem as XML... +[23:12:41] 2025-05-02 23:12:41,200 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CTRLCoolingSystem exported successfully +[23:12:41] 2025-05-02 23:12:41,212 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CTRLCoolingSystem exported successfully +[23:12:41] Processing block: DeairCO2TempComp... +[23:12:41] Exporting DeairCO2TempComp as XML... +[23:12:41] 2025-05-02 23:12:41,274 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DeairCO2TempComp exported successfully +[23:12:41] 2025-05-02 23:12:41,275 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DeairCO2TempComp exported successfully +[23:12:41] Exporting DeairCO2TempComp as SCL... +[23:12:41] 2025-05-02 23:12:41,317 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block DeairCO2TempComp external source successfully generated +[23:12:41] Processing block: DeaireationValve... +[23:12:41] Exporting DeaireationValve as XML... +[23:12:41] 2025-05-02 23:12:41,404 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DeaireationValve exported successfully +[23:12:41] 2025-05-02 23:12:41,415 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DeaireationValve exported successfully +[23:12:41] Exporting DeaireationValve as SCL... +[23:12:41] 2025-05-02 23:12:41,461 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block DeaireationValve external source successfully generated +[23:12:41] Processing block: Deaireator StartUp_Seq... +[23:12:41] Exporting Deaireator StartUp_Seq as XML... +[23:12:41] 2025-05-02 23:12:41,689 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Deaireator StartUp_Seq exported successfully +[23:12:41] 2025-05-02 23:12:41,691 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Deaireator StartUp_Seq exported successfully +[23:12:41] Processing block: DeltaP... +[23:12:41] Exporting DeltaP as XML... +[23:12:41] 2025-05-02 23:12:41,762 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DeltaP exported successfully +[23:12:41] 2025-05-02 23:12:41,775 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DeltaP exported successfully +[23:12:41] Exporting DeltaP as SCL... +[23:12:41] 2025-05-02 23:12:41,812 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block DeltaP external source successfully generated +[23:12:41] Processing block: FeedForward... +[23:12:41] Exporting FeedForward as XML... +[23:12:41] 2025-05-02 23:12:41,883 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FeedForward exported successfully +[23:12:41] 2025-05-02 23:12:41,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FeedForward exported successfully +[23:12:41] Exporting FeedForward as SCL... +[23:12:41] 2025-05-02 23:12:41,925 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FeedForward external source successfully generated +[23:12:41] Processing block: Flow_To_Press_Loss... +[23:12:41] Exporting Flow_To_Press_Loss as XML... +[23:12:41] 2025-05-02 23:12:41,998 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Flow_To_Press_Loss exported successfully +[23:12:42] 2025-05-02 23:12:42,010 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Flow_To_Press_Loss exported successfully +[23:12:42] Exporting Flow_To_Press_Loss as SCL... +[23:12:42] 2025-05-02 23:12:42,049 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Flow_To_Press_Loss external source successfully generated +[23:12:42] Processing block: Freq_To_mmH2O... +[23:12:42] Exporting Freq_To_mmH2O as XML... +[23:12:42] 2025-05-02 23:12:42,108 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Freq_To_mmH2O exported successfully +[23:12:42] 2025-05-02 23:12:42,118 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Freq_To_mmH2O exported successfully +[23:12:42] Exporting Freq_To_mmH2O as SCL... +[23:12:42] 2025-05-02 23:12:42,172 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Freq_To_mmH2O external source successfully generated +[23:12:42] Processing block: FrictionLoss... +[23:12:42] Exporting FrictionLoss as XML... +[23:12:42] 2025-05-02 23:12:42,214 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FrictionLoss exported successfully +[23:12:42] 2025-05-02 23:12:42,215 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FrictionLoss exported successfully +[23:12:42] Exporting FrictionLoss as SCL... +[23:12:42] 2025-05-02 23:12:42,255 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FrictionLoss external source successfully generated +[23:12:42] Processing block: FW_DRand... +[23:12:42] Exporting FW_DRand as XML... +[23:12:42] 2025-05-02 23:12:42,298 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FW_DRand exported successfully +[23:12:42] 2025-05-02 23:12:42,299 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FW_DRand exported successfully +[23:12:42] Processing block: GetProdBrixCO2_Anal_Inpt... +[23:12:42] Exporting GetProdBrixCO2_Anal_Inpt as XML... +[23:12:42] 2025-05-02 23:12:42,402 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GetProdBrixCO2_Anal_Inpt exported successfully +[23:12:42] 2025-05-02 23:12:42,414 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GetProdBrixCO2_Anal_Inpt exported successfully +[23:12:42] Processing block: Interlocking_Panel_1... +[23:12:42] Compiling block Interlocking_Panel_1... +[23:12:42] 2025-05-02 23:12:42,423 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block Interlocking_Panel_1. Result: +[23:12:44] 2025-05-02 23:12:44,566 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Program blocks > Interlocking_Panel_1 (FC2004) > Network 3 > Access to "DI_SyrRoom_SyrPump_Running" with ambiguous address. +[23:12:44] 2025-05-02 23:12:44,566 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:12:44] 2025-05-02 23:12:44,567 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 2) +[23:12:44] 2025-05-02 23:12:44,567 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > Interlocking_Panel_1 (FC2004) > Block was successfully compiled. +[23:12:44] Exporting Interlocking_Panel_1 as XML... +[23:12:44] 2025-05-02 23:12:44,771 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking_Panel_1 exported successfully +[23:12:44] 2025-05-02 23:12:44,782 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking_Panel_1 exported successfully +[23:12:44] Processing block: ITC Communic CIPRoom... +[23:12:44] Exporting ITC Communic CIPRoom as XML... +[23:12:44] 2025-05-02 23:12:44,899 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic CIPRoom exported successfully +[23:12:44] 2025-05-02 23:12:44,912 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic CIPRoom exported successfully +[23:12:44] Processing block: ITC Communic Filler... +[23:12:44] Exporting ITC Communic Filler as XML... +[23:12:45] 2025-05-02 23:12:45,020 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic Filler exported successfully +[23:12:45] 2025-05-02 23:12:45,022 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic Filler exported successfully +[23:12:45] Processing block: ITC Communic MainRoutine... +[23:12:45] Exporting ITC Communic MainRoutine as XML... +[23:12:45] 2025-05-02 23:12:45,090 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic MainRoutine exported successfully +[23:12:45] 2025-05-02 23:12:45,097 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic MainRoutine exported successfully +[23:12:45] Processing block: ITC Communic ProdRoom... +[23:12:45] Exporting ITC Communic ProdRoom as XML... +[23:12:45] 2025-05-02 23:12:45,192 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic ProdRoom exported successfully +[23:12:45] 2025-05-02 23:12:45,204 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic ProdRoom exported successfully +[23:12:45] Processing block: ITC DataIn... +[23:12:45] Exporting ITC DataIn as XML... +[23:12:45] 2025-05-02 23:12:45,264 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC DataIn exported successfully +[23:12:45] 2025-05-02 23:12:45,267 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC DataIn exported successfully +[23:12:45] Processing block: ITC DataOut... +[23:12:45] Exporting ITC DataOut as XML... +[23:12:45] 2025-05-02 23:12:45,314 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC DataOut exported successfully +[23:12:45] 2025-05-02 23:12:45,316 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC DataOut exported successfully +[23:12:45] Processing block: ITC Exchange MainRoutine... +[23:12:45] Exporting ITC Exchange MainRoutine as XML... +[23:12:45] 2025-05-02 23:12:45,380 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Exchange MainRoutine exported successfully +[23:12:45] 2025-05-02 23:12:45,407 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Exchange MainRoutine exported successfully +[23:12:45] Processing block: ITC MainRoutine... +[23:12:45] Exporting ITC MainRoutine as XML... +[23:12:45] 2025-05-02 23:12:45,466 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC MainRoutine exported successfully +[23:12:45] 2025-05-02 23:12:45,468 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC MainRoutine exported successfully +[23:12:45] Processing block: LIMIT_I... +[23:12:45] Exporting LIMIT_I as XML... +[23:12:45] 2025-05-02 23:12:45,546 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LIMIT_I exported successfully +[23:12:45] 2025-05-02 23:12:45,548 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LIMIT_I exported successfully +[23:12:45] Processing block: LIMIT_R... +[23:12:45] Exporting LIMIT_R as XML... +[23:12:45] 2025-05-02 23:12:45,619 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LIMIT_R exported successfully +[23:12:45] 2025-05-02 23:12:45,622 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LIMIT_R exported successfully +[23:12:45] Processing block: Maselli_PA_Control... +[23:12:45] Exporting Maselli_PA_Control as XML... +[23:12:45] 2025-05-02 23:12:45,730 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Control exported successfully +[23:12:45] 2025-05-02 23:12:45,741 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Control exported successfully +[23:12:45] Processing block: Maselli_PA_Ctrl_Transfer... +[23:12:45] Exporting Maselli_PA_Ctrl_Transfer as XML... +[23:12:45] 2025-05-02 23:12:45,825 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Ctrl_Transfer exported successfully +[23:12:45] 2025-05-02 23:12:45,833 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Ctrl_Transfer exported successfully +[23:12:45] Processing block: Maselli_PA_Ctrl_Write... +[23:12:45] Exporting Maselli_PA_Ctrl_Write as XML... +[23:12:45] 2025-05-02 23:12:45,957 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Ctrl_Write exported successfully +[23:12:45] 2025-05-02 23:12:45,977 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Ctrl_Write exported successfully +[23:12:45] Processing block: MFMAnalogValues_Totalize... +[23:12:46] Exporting MFMAnalogValues_Totalize as XML... +[23:12:46] 2025-05-02 23:12:46,099 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MFMAnalogValues_Totalize exported successfully +[23:12:46] 2025-05-02 23:12:46,111 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MFMAnalogValues_Totalize exported successfully +[23:12:46] Processing block: mmH2O_TO_Freq... +[23:12:46] Exporting mmH2O_TO_Freq as XML... +[23:12:46] 2025-05-02 23:12:46,207 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mmH2O_TO_Freq exported successfully +[23:12:46] 2025-05-02 23:12:46,222 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mmH2O_TO_Freq exported successfully +[23:12:46] Exporting mmH2O_TO_Freq as SCL... +[23:12:46] 2025-05-02 23:12:46,275 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block mmH2O_TO_Freq external source successfully generated +[23:12:46] Processing block: ModValveFault... +[23:12:46] Exporting ModValveFault as XML... +[23:12:46] 2025-05-02 23:12:46,430 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ModValveFault exported successfully +[23:12:46] 2025-05-02 23:12:46,441 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ModValveFault exported successfully +[23:12:46] Processing block: mPDS_SYR_PA_Control... +[23:12:46] Exporting mPDS_SYR_PA_Control as XML... +[23:12:46] 2025-05-02 23:12:46,565 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Control exported successfully +[23:12:46] 2025-05-02 23:12:46,576 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Control exported successfully +[23:12:46] Processing block: ONS_R... +[23:12:46] Exporting ONS_R as XML... +[23:12:46] 2025-05-02 23:12:46,657 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ONS_R exported successfully +[23:12:46] 2025-05-02 23:12:46,659 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ONS_R exported successfully +[23:12:46] Processing block: Prod Tank RunOut_Seq... +[23:12:46] Exporting Prod Tank RunOut_Seq as XML... +[23:12:46] 2025-05-02 23:12:46,781 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank RunOut_Seq exported successfully +[23:12:46] 2025-05-02 23:12:46,783 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank RunOut_Seq exported successfully +[23:12:46] Processing block: ProductLiterInTank... +[23:12:46] Exporting ProductLiterInTank as XML... +[23:12:46] 2025-05-02 23:12:46,835 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductLiterInTank exported successfully +[23:12:46] 2025-05-02 23:12:46,850 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductLiterInTank exported successfully +[23:12:46] Exporting ProductLiterInTank as SCL... +[23:12:46] 2025-05-02 23:12:46,906 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProductLiterInTank external source successfully generated +[23:12:46] Processing block: ProductPipeDrain_Seq... +[23:12:46] Exporting ProductPipeDrain_Seq as XML... +[23:12:46] 2025-05-02 23:12:46,995 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeDrain_Seq exported successfully +[23:12:46] 2025-05-02 23:12:46,996 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeDrain_Seq exported successfully +[23:12:47] Processing block: ProductPipeRunOut_Seq... +[23:12:47] Exporting ProductPipeRunOut_Seq as XML... +[23:12:47] 2025-05-02 23:12:47,136 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeRunOut_Seq exported successfully +[23:12:47] 2025-05-02 23:12:47,154 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeRunOut_Seq exported successfully +[23:12:47] Processing block: ProductQuality... +[23:12:47] Exporting ProductQuality as XML... +[23:12:47] 2025-05-02 23:12:47,295 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductQuality exported successfully +[23:12:47] 2025-05-02 23:12:47,304 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductQuality exported successfully +[23:12:47] Processing block: SEL_I... +[23:12:47] Exporting SEL_I as XML... +[23:12:47] 2025-05-02 23:12:47,420 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SEL_I exported successfully +[23:12:47] 2025-05-02 23:12:47,423 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SEL_I exported successfully +[23:12:47] Processing block: SEL_R... +[23:12:47] Exporting SEL_R as XML... +[23:12:47] 2025-05-02 23:12:47,487 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SEL_R exported successfully +[23:12:47] 2025-05-02 23:12:47,489 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SEL_R exported successfully +[23:12:47] Processing block: SelCheckBrixSource... +[23:12:47] Exporting SelCheckBrixSource as XML... +[23:12:47] 2025-05-02 23:12:47,669 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SelCheckBrixSource exported successfully +[23:12:47] 2025-05-02 23:12:47,676 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SelCheckBrixSource exported successfully +[23:12:47] Processing block: SLIM_Block... +[23:12:47] Exporting SLIM_Block as XML... +[23:12:47] 2025-05-02 23:12:47,733 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SLIM_Block exported successfully +[23:12:47] 2025-05-02 23:12:47,736 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SLIM_Block exported successfully +[23:12:47] Processing block: SpeedAdjust... +[23:12:47] Exporting SpeedAdjust as XML... +[23:12:47] 2025-05-02 23:12:47,799 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SpeedAdjust exported successfully +[23:12:47] 2025-05-02 23:12:47,802 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SpeedAdjust exported successfully +[23:12:47] Exporting SpeedAdjust as SCL... +[23:12:47] 2025-05-02 23:12:47,856 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SpeedAdjust external source successfully generated +[23:12:47] Processing block: Syrup Line MFM Prep_Seq... +[23:12:47] Exporting Syrup Line MFM Prep_Seq as XML... +[23:12:48] 2025-05-02 23:12:48,087 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup Line MFM Prep_Seq exported successfully +[23:12:48] 2025-05-02 23:12:48,093 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup Line MFM Prep_Seq exported successfully +[23:12:48] Processing block: Syrup MFM StartUp_Seq... +[23:12:48] Exporting Syrup MFM StartUp_Seq as XML... +[23:12:48] 2025-05-02 23:12:48,222 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup MFM StartUp_Seq exported successfully +[23:12:48] 2025-05-02 23:12:48,232 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup MFM StartUp_Seq exported successfully +[23:12:48] Processing block: SyrupDensity... +[23:12:48] Exporting SyrupDensity as XML... +[23:12:48] 2025-05-02 23:12:48,316 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrupDensity exported successfully +[23:12:48] 2025-05-02 23:12:48,319 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrupDensity exported successfully +[23:12:48] Exporting SyrupDensity as SCL... +[23:12:48] 2025-05-02 23:12:48,448 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SyrupDensity external source successfully generated +[23:12:48] Processing block: SyrupRoomCtrl... +[23:12:48] Exporting SyrupRoomCtrl as XML... +[23:12:48] 2025-05-02 23:12:48,585 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrupRoomCtrl exported successfully +[23:12:48] 2025-05-02 23:12:48,596 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrupRoomCtrl exported successfully +[23:12:48] Processing block: WaterDensity... +[23:12:48] Exporting WaterDensity as XML... +[23:12:48] 2025-05-02 23:12:48,685 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: WaterDensity exported successfully +[23:12:48] 2025-05-02 23:12:48,692 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - WaterDensity exported successfully +[23:12:48] Exporting WaterDensity as SCL... +[23:12:48] 2025-05-02 23:12:48,765 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block WaterDensity external source successfully generated +[23:12:48] Processing block: WritePeripheral... +[23:12:48] Exporting WritePeripheral as XML... +[23:12:48] 2025-05-02 23:12:48,848 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: WritePeripheral exported successfully +[23:12:48] 2025-05-02 23:12:48,864 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - WritePeripheral exported successfully +[23:12:48] Processing block: CIPRecipeManagement_Data... +[23:12:48] Exporting CIPRecipeManagement_Data as XML... +[23:12:49] 2025-05-02 23:12:49,102 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipeManagement_Data exported successfully +[23:12:49] 2025-05-02 23:12:49,104 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipeManagement_Data exported successfully +[23:12:49] Processing block: Co2_Counters_DB... +[23:12:49] Exporting Co2_Counters_DB as XML... +[23:12:49] 2025-05-02 23:12:49,208 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Co2_Counters_DB exported successfully +[23:12:49] 2025-05-02 23:12:49,214 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Co2_Counters_DB exported successfully +[23:12:49] Processing block: Default_SupervisionDB... +[23:12:49] Exporting Default_SupervisionDB as XML... +[23:12:49] 2025-05-02 23:12:49,348 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Default_SupervisionDB exported successfully +[23:12:49] 2025-05-02 23:12:49,425 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Default_SupervisionDB exported successfully +[23:12:49] Processing block: ITC Communic CIP DI... +[23:12:49] Exporting ITC Communic CIP DI as XML... +[23:12:49] 2025-05-02 23:12:49,772 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic CIP DI exported successfully +[23:12:49] 2025-05-02 23:12:49,776 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic CIP DI exported successfully +[23:12:49] Processing block: ITC Communic Filler DI... +[23:12:49] Exporting ITC Communic Filler DI as XML... +[23:12:49] 2025-05-02 23:12:49,896 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic Filler DI exported successfully +[23:12:49] 2025-05-02 23:12:49,902 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic Filler DI exported successfully +[23:12:49] Processing block: ITC Communic Mixer DI... +[23:12:49] Exporting ITC Communic Mixer DI as XML... +[23:12:49] 2025-05-02 23:12:49,990 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic Mixer DI exported successfully +[23:12:49] 2025-05-02 23:12:49,993 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic Mixer DI exported successfully +[23:12:50] Processing block: ITC Communic Product Room DI... +[23:12:50] Exporting ITC Communic Product Room DI as XML... +[23:12:50] 2025-05-02 23:12:50,139 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic Product Room DI exported successfully +[23:12:50] 2025-05-02 23:12:50,147 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic Product Room DI exported successfully +[23:12:50] Processing block: Key Read & Write Data... +[23:12:50] Exporting Key Read & Write Data as XML... +[23:12:50] 2025-05-02 23:12:50,238 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Key Read & Write Data exported successfully +[23:12:50] 2025-05-02 23:12:50,241 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Key Read & Write Data exported successfully +[23:12:50] Processing block: mPPM303StartUpRamp... +[23:12:50] Exporting mPPM303StartUpRamp as XML... +[23:12:50] 2025-05-02 23:12:50,312 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPPM303StartUpRamp exported successfully +[23:12:50] 2025-05-02 23:12:50,370 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPPM303StartUpRamp exported successfully +[23:12:50] Processing block: PID_RMM304_Data... +[23:12:50] Exporting PID_RMM304_Data as XML... +[23:12:50] 2025-05-02 23:12:50,495 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM304_Data exported successfully +[23:12:50] 2025-05-02 23:12:50,504 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM304_Data exported successfully +[23:12:50] Processing block: PID_RVN302_Data... +[23:12:50] Exporting PID_RVN302_Data as XML... +[23:12:50] 2025-05-02 23:12:50,643 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVN302_Data exported successfully +[23:12:50] 2025-05-02 23:12:50,654 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVN302_Data exported successfully +[23:12:50] Processing block: PID_RVS318_Data... +[23:12:50] Exporting PID_RVS318_Data as XML... +[23:12:50] 2025-05-02 23:12:50,755 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVS318_Data exported successfully +[23:12:50] 2025-05-02 23:12:50,757 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVS318_Data exported successfully +[23:12:50] Processing block: ProdBrixRecovery_DB... +[23:12:50] Exporting ProdBrixRecovery_DB as XML... +[23:12:50] 2025-05-02 23:12:50,854 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdBrixRecovery_DB exported successfully +[23:12:50] 2025-05-02 23:12:50,865 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdBrixRecovery_DB exported successfully +[23:12:50] Processing block: Prod Tank Drain_Seq... +[23:12:50] Exporting Prod Tank Drain_Seq as XML... +[23:12:51] 2025-05-02 23:12:51,141 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank Drain_Seq exported successfully +[23:12:51] 2025-05-02 23:12:51,174 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank Drain_Seq exported successfully +[23:12:51] Processing block: _StepMove... +[23:12:51] Exporting _StepMove as XML... +[23:12:51] 2025-05-02 23:12:51,313 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: _StepMove exported successfully +[23:12:51] 2025-05-02 23:12:51,361 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - _StepMove exported successfully +[23:12:51] Processing block: _StepMove_Test... +[23:12:51] Exporting _StepMove_Test as XML... +[23:12:51] 2025-05-02 23:12:51,495 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: _StepMove_Test exported successfully +[23:12:51] 2025-05-02 23:12:51,504 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - _StepMove_Test exported successfully +[23:12:51] Processing block: RecipeManagement_Data... +[23:12:51] Exporting RecipeManagement_Data as XML... +[23:12:51] 2025-05-02 23:12:51,604 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement_Data exported successfully +[23:12:51] 2025-05-02 23:12:51,612 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement_Data exported successfully +[23:12:51] Processing block: Blender_Procedure Data... +[23:12:51] Exporting Blender_Procedure Data as XML... +[23:12:51] 2025-05-02 23:12:51,726 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Procedure Data exported successfully +[23:12:51] 2025-05-02 23:12:51,736 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Procedure Data exported successfully +[23:12:51] Processing block: BlenderPID__Main_Data... +[23:12:51] Exporting BlenderPID__Main_Data as XML... +[23:12:51] 2025-05-02 23:12:51,845 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID__Main_Data exported successfully +[23:12:51] 2025-05-02 23:12:51,858 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID__Main_Data exported successfully +[23:12:51] Processing block: BlenderRun_MeasFil_Data... +[23:12:51] Exporting BlenderRun_MeasFil_Data as XML... +[23:12:51] 2025-05-02 23:12:51,920 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_MeasFil_Data exported successfully +[23:12:51] 2025-05-02 23:12:51,922 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_MeasFil_Data exported successfully +[23:12:51] Processing block: BrixTracking_Data... +[23:12:51] Exporting BrixTracking_Data as XML... +[23:12:52] 2025-05-02 23:12:52,180 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,195 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_Data exported successfully +[23:12:52] Processing block: CO2Tracking_Data... +[23:12:52] Exporting CO2Tracking_Data as XML... +[23:12:52] 2025-05-02 23:12:52,274 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,289 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_Data exported successfully +[23:12:52] Processing block: FirstProduction_Data... +[23:12:52] Exporting FirstProduction_Data as XML... +[23:12:52] 2025-05-02 23:12:52,354 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FirstProduction_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,355 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FirstProduction_Data exported successfully +[23:12:52] Processing block: Input_Data... +[23:12:52] Exporting Input_Data as XML... +[23:12:52] 2025-05-02 23:12:52,422 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,427 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_Data exported successfully +[23:12:52] Processing block: ISOonTCP_or_TCP_Protocol_DB... +[23:12:52] Exporting ISOonTCP_or_TCP_Protocol_DB as XML... +[23:12:52] 2025-05-02 23:12:52,472 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ISOonTCP_or_TCP_Protocol_DB exported successfully +[23:12:52] 2025-05-02 23:12:52,474 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ISOonTCP_or_TCP_Protocol_DB exported successfully +[23:12:52] Processing block: MFM_Analog_Value_Data... +[23:12:52] Exporting MFM_Analog_Value_Data as XML... +[23:12:52] 2025-05-02 23:12:52,529 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MFM_Analog_Value_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,531 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MFM_Analog_Value_Data exported successfully +[23:12:52] Processing block: PID MAIN Data... +[23:12:52] Exporting PID MAIN Data as XML... +[23:12:52] 2025-05-02 23:12:52,667 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID MAIN Data exported successfully +[23:12:52] 2025-05-02 23:12:52,678 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID MAIN Data exported successfully +[23:12:52] Processing block: PID_Filling_Head_Data... +[23:12:52] Exporting PID_Filling_Head_Data as XML... +[23:12:52] 2025-05-02 23:12:52,734 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,736 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head_Data exported successfully +[23:12:52] Processing block: PID_RMM301_Data... +[23:12:52] Exporting PID_RMM301_Data as XML... +[23:12:52] 2025-05-02 23:12:52,776 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM301_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,778 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM301_Data exported successfully +[23:12:52] Processing block: PID_RMM303_Data... +[23:12:52] Exporting PID_RMM303_Data as XML... +[23:12:52] 2025-05-02 23:12:52,830 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM303_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,832 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM303_Data exported successfully +[23:12:52] Processing block: PID_RMP302_Data... +[23:12:52] Exporting PID_RMP302_Data as XML... +[23:12:52] 2025-05-02 23:12:52,864 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMP302_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,865 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMP302_Data exported successfully +[23:12:52] Processing block: PID_RVM301_Data... +[23:12:52] Exporting PID_RVM301_Data as XML... +[23:12:52] 2025-05-02 23:12:52,901 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM301_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,902 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM301_Data exported successfully +[23:12:52] Processing block: PID_RVM319_Data... +[23:12:52] Exporting PID_RVM319_Data as XML... +[23:12:52] 2025-05-02 23:12:52,971 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM319_Data exported successfully +[23:12:52] 2025-05-02 23:12:52,972 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM319_Data exported successfully +[23:12:52] Processing block: PID_RVP303_Data... +[23:12:52] Exporting PID_RVP303_Data as XML... +[23:12:53] 2025-05-02 23:12:53,018 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVP303_Data exported successfully +[23:12:53] 2025-05-02 23:12:53,020 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVP303_Data exported successfully +[23:12:53] Processing block: Sel_Check_Brix_Data... +[23:12:53] Exporting Sel_Check_Brix_Data as XML... +[23:12:53] 2025-05-02 23:12:53,054 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Sel_Check_Brix_Data exported successfully +[23:12:53] 2025-05-02 23:12:53,055 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Sel_Check_Brix_Data exported successfully +[23:12:53] Processing block: Signal_Gen_Data... +[23:12:53] Exporting Signal_Gen_Data as XML... +[23:12:53] 2025-05-02 23:12:53,091 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Signal_Gen_Data exported successfully +[23:12:53] 2025-05-02 23:12:53,093 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Signal_Gen_Data exported successfully +[23:12:53] Processing block: System_Run_Out_Data... +[23:12:53] Exporting System_Run_Out_Data as XML... +[23:12:53] 2025-05-02 23:12:53,136 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_Run_Out_Data exported successfully +[23:12:53] 2025-05-02 23:12:53,137 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_Run_Out_Data exported successfully +[23:12:53] Processing block: SubCarb_DB... +[23:12:53] Exporting SubCarb_DB as XML... +[23:12:53] 2025-05-02 23:12:53,181 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SubCarb_DB exported successfully +[23:12:53] 2025-05-02 23:12:53,182 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SubCarb_DB exported successfully +[23:12:53] Processing block: CYC_INT5... +[23:12:53] Exporting CYC_INT5 as XML... +[23:12:53] 2025-05-02 23:12:53,302 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CYC_INT5 exported successfully +[23:12:53] 2025-05-02 23:12:53,337 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CYC_INT5 exported successfully +[23:12:53] Processing block: BlenderCtrl_All Auto... +[23:12:53] Exporting BlenderCtrl_All Auto as XML... +[23:12:53] 2025-05-02 23:12:53,414 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_All Auto exported successfully +[23:12:53] 2025-05-02 23:12:53,416 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_All Auto exported successfully +[23:12:53] Processing block: BlenderCtrl_InitErrors... +[23:12:53] Exporting BlenderCtrl_InitErrors as XML... +[23:12:53] 2025-05-02 23:12:53,490 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_InitErrors exported successfully +[23:12:53] 2025-05-02 23:12:53,503 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_InitErrors exported successfully +[23:12:53] Exporting BlenderCtrl_InitErrors as SCL... +[23:12:53] 2025-05-02 23:12:53,547 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderCtrl_InitErrors external source successfully generated +[23:12:53] Processing block: BlenderCtrl_ManualActive... +[23:12:53] Exporting BlenderCtrl_ManualActive as XML... +[23:12:53] 2025-05-02 23:12:53,611 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_ManualActive exported successfully +[23:12:53] 2025-05-02 23:12:53,614 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_ManualActive exported successfully +[23:12:53] Processing block: BlenderCtrl_MFM Command... +[23:12:53] Exporting BlenderCtrl_MFM Command as XML... +[23:12:53] 2025-05-02 23:12:53,685 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_MFM Command exported successfully +[23:12:53] 2025-05-02 23:12:53,692 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_MFM Command exported successfully +[23:12:53] Exporting BlenderCtrl_MFM Command as SCL... +[23:12:53] 2025-05-02 23:12:53,743 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderCtrl_MFM Command external source successfully generated +[23:12:53] Processing block: BlenderPID_FlowMeterErro... +[23:12:53] Exporting BlenderPID_FlowMeterErro as XML... +[23:12:53] 2025-05-02 23:12:53,813 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_FlowMeterErro exported successfully +[23:12:53] 2025-05-02 23:12:53,815 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_FlowMeterErro exported successfully +[23:12:53] Exporting BlenderPID_FlowMeterErro as SCL... +[23:12:53] 2025-05-02 23:12:53,850 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_FlowMeterErro external source successfully generated +[23:12:53] Processing block: BlenderPID_PIDResInteg... +[23:12:53] Exporting BlenderPID_PIDResInteg as XML... +[23:12:53] 2025-05-02 23:12:53,910 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDResInteg exported successfully +[23:12:53] 2025-05-02 23:12:53,911 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDResInteg exported successfully +[23:12:53] Exporting BlenderPID_PIDResInteg as SCL... +[23:12:53] 2025-05-02 23:12:53,952 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDResInteg external source successfully generated +[23:12:53] Processing block: BlenderPIDCtrl_PresRelea... +[23:12:53] Exporting BlenderPIDCtrl_PresRelea as XML... +[23:12:54] 2025-05-02 23:12:54,019 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_PresRelea exported successfully +[23:12:54] 2025-05-02 23:12:54,035 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_PresRelea exported successfully +[23:12:54] Exporting BlenderPIDCtrl_PresRelea as SCL... +[23:12:54] 2025-05-02 23:12:54,095 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPIDCtrl_PresRelea external source successfully generated +[23:12:54] Processing block: BlenderPIDCtrl_SaveValve... +[23:12:54] Exporting BlenderPIDCtrl_SaveValve as XML... +[23:12:54] 2025-05-02 23:12:54,203 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_SaveValve exported successfully +[23:12:54] 2025-05-02 23:12:54,205 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_SaveValve exported successfully +[23:12:54] Exporting BlenderPIDCtrl_SaveValve as SCL... +[23:12:54] 2025-05-02 23:12:54,282 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPIDCtrl_SaveValve external source successfully generated +[23:12:54] Processing block: BlenderRun__Control... +[23:12:54] Compiling block BlenderRun__Control... +[23:12:54] 2025-05-02 23:12:54,288 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block BlenderRun__Control. Result: +[23:12:56] 2025-05-02 23:12:56,663 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:12:56] 2025-05-02 23:12:56,664 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:12:56] 2025-05-02 23:12:56,664 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > BlenderRun__Control (FC2015) > Block was successfully compiled. +[23:12:56] Exporting BlenderRun__Control as XML... +[23:12:56] 2025-05-02 23:12:56,855 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun__Control exported successfully +[23:12:56] 2025-05-02 23:12:56,871 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun__Control exported successfully +[23:12:56] Processing block: BlenderRun_SelectConstan... +[23:12:56] Exporting BlenderRun_SelectConstan as XML... +[23:12:56] 2025-05-02 23:12:56,961 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_SelectConstan exported successfully +[23:12:56] 2025-05-02 23:12:56,962 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_SelectConstan exported successfully +[23:12:56] Exporting BlenderRun_SelectConstan as SCL... +[23:12:57] 2025-05-02 23:12:57,017 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderRun_SelectConstan external source successfully generated +[23:12:57] Processing block: BlendFill StartUp_Seq... +[23:12:57] Exporting BlendFill StartUp_Seq as XML... +[23:12:57] 2025-05-02 23:12:57,193 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlendFill StartUp_Seq exported successfully +[23:12:57] 2025-05-02 23:12:57,196 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlendFill StartUp_Seq exported successfully +[23:12:57] Processing block: CIP_SimpleProgr_Init... +[23:12:57] Exporting CIP_SimpleProgr_Init as XML... +[23:12:57] 2025-05-02 23:12:57,418 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIP_SimpleProgr_Init exported successfully +[23:12:57] 2025-05-02 23:12:57,439 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIP_SimpleProgr_Init exported successfully +[23:12:57] Exporting CIP_SimpleProgr_Init as SCL... +[23:12:57] 2025-05-02 23:12:57,549 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIP_SimpleProgr_Init external source successfully generated +[23:12:57] Processing block: CIPLocal... +[23:12:57] Exporting CIPLocal as XML... +[23:12:57] 2025-05-02 23:12:57,715 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal exported successfully +[23:12:57] 2025-05-02 23:12:57,727 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal exported successfully +[23:12:57] Processing block: CIPLocal_ExecSimpleCIP... +[23:12:57] Exporting CIPLocal_ExecSimpleCIP as XML... +[23:12:57] 2025-05-02 23:12:57,875 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_ExecSimpleCIP exported successfully +[23:12:57] 2025-05-02 23:12:57,881 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_ExecSimpleCIP exported successfully +[23:12:57] Exporting CIPLocal_ExecSimpleCIP as SCL... +[23:12:57] 2025-05-02 23:12:57,940 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIPLocal_ExecSimpleCIP external source successfully generated +[23:12:57] Processing block: CIPLocal_ExecStep... +[23:12:57] Exporting CIPLocal_ExecStep as XML... +[23:12:58] 2025-05-02 23:12:58,048 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_ExecStep exported successfully +[23:12:58] 2025-05-02 23:12:58,064 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_ExecStep exported successfully +[23:12:58] Exporting CIPLocal_ExecStep as SCL... +[23:12:58] 2025-05-02 23:12:58,111 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIPLocal_ExecStep external source successfully generated +[23:12:58] Processing block: CIPLocal_ProgStepDown... +[23:12:58] Exporting CIPLocal_ProgStepDown as XML... +[23:12:58] 2025-05-02 23:12:58,163 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_ProgStepDown exported successfully +[23:12:58] 2025-05-02 23:12:58,172 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_ProgStepDown exported successfully +[23:12:58] Exporting CIPLocal_ProgStepDown as SCL... +[23:12:58] 2025-05-02 23:12:58,227 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIPLocal_ProgStepDown external source successfully generated +[23:12:58] Processing block: CIPLocal_ProgStepUp... +[23:12:58] Exporting CIPLocal_ProgStepUp as XML... +[23:12:58] 2025-05-02 23:12:58,292 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_ProgStepUp exported successfully +[23:12:58] 2025-05-02 23:12:58,314 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_ProgStepUp exported successfully +[23:12:58] Exporting CIPLocal_ProgStepUp as SCL... +[23:12:58] 2025-05-02 23:12:58,390 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIPLocal_ProgStepUp external source successfully generated +[23:12:58] Processing block: CIPReportManager... +[23:12:58] Exporting CIPReportManager as XML... +[23:12:58] 2025-05-02 23:12:58,540 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPReportManager exported successfully +[23:12:58] 2025-05-02 23:12:58,542 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPReportManager exported successfully +[23:12:58] Processing block: CPU_DP Global Diag... +[23:12:58] Exporting CPU_DP Global Diag as XML... +[23:12:58] 2025-05-02 23:12:58,705 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CPU_DP Global Diag exported successfully +[23:12:58] 2025-05-02 23:12:58,713 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CPU_DP Global Diag exported successfully +[23:12:58] Processing block: CVQ_1p7_8_Perc... +[23:12:58] Exporting CVQ_1p7_8_Perc as XML... +[23:12:58] 2025-05-02 23:12:58,800 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CVQ_1p7_8_Perc exported successfully +[23:12:58] 2025-05-02 23:12:58,802 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CVQ_1p7_8_Perc exported successfully +[23:12:58] Exporting CVQ_1p7_8_Perc as SCL... +[23:12:58] 2025-05-02 23:12:58,860 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CVQ_1p7_8_Perc external source successfully generated +[23:12:58] Processing block: DELETE... +[23:12:58] Exporting DELETE as XML... +[23:12:58] 2025-05-02 23:12:58,933 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DELETE exported successfully +[23:12:58] 2025-05-02 23:12:58,934 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DELETE exported successfully +[23:12:58] Processing block: EQ_STRNG... +[23:12:58] Exporting EQ_STRNG as XML... +[23:12:58] 2025-05-02 23:12:58,991 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: EQ_STRNG exported successfully +[23:12:58] 2025-05-02 23:12:58,992 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - EQ_STRNG exported successfully +[23:12:58] Processing block: FillerControl... +[23:12:59] Exporting FillerControl as XML... +[23:12:59] 2025-05-02 23:12:59,191 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FillerControl exported successfully +[23:12:59] 2025-05-02 23:12:59,209 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FillerControl exported successfully +[23:12:59] Processing block: FillerControl_DataSend... +[23:12:59] Exporting FillerControl_DataSend as XML... +[23:12:59] 2025-05-02 23:12:59,326 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FillerControl_DataSend exported successfully +[23:12:59] 2025-05-02 23:12:59,350 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FillerControl_DataSend exported successfully +[23:12:59] Exporting FillerControl_DataSend as SCL... +[23:12:59] 2025-05-02 23:12:59,413 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FillerControl_DataSend external source successfully generated +[23:12:59] Processing block: FillingTime... +[23:12:59] Exporting FillingTime as XML... +[23:12:59] 2025-05-02 23:12:59,490 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FillingTime exported successfully +[23:12:59] 2025-05-02 23:12:59,504 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FillingTime exported successfully +[23:12:59] Exporting FillingTime as SCL... +[23:12:59] 2025-05-02 23:12:59,546 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FillingTime external source successfully generated +[23:12:59] Processing block: Input_CheckFlowMetersSta... +[23:12:59] Exporting Input_CheckFlowMetersSta as XML... +[23:12:59] 2025-05-02 23:12:59,667 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_CheckFlowMetersSta exported successfully +[23:12:59] 2025-05-02 23:12:59,669 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_CheckFlowMetersSta exported successfully +[23:12:59] Exporting Input_CheckFlowMetersSta as SCL... +[23:12:59] 2025-05-02 23:12:59,733 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Input_CheckFlowMetersSta external source successfully generated +[23:12:59] Processing block: Input_DigitalCtrl... +[23:12:59] Exporting Input_DigitalCtrl as XML... +[23:12:59] 2025-05-02 23:12:59,815 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_DigitalCtrl exported successfully +[23:12:59] 2025-05-02 23:12:59,821 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_DigitalCtrl exported successfully +[23:12:59] Processing block: Input_DigitalScanner... +[23:12:59] Exporting Input_DigitalScanner as XML... +[23:12:59] 2025-05-02 23:12:59,892 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_DigitalScanner exported successfully +[23:12:59] 2025-05-02 23:12:59,925 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_DigitalScanner exported successfully +[23:12:59] Processing block: Instrument_Scanner... +[23:12:59] Exporting Instrument_Scanner as XML... +[23:12:59] 2025-05-02 23:12:59,969 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Instrument_Scanner exported successfully +[23:12:59] 2025-05-02 23:12:59,971 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Instrument_Scanner exported successfully +[23:12:59] Processing block: Interlocking_Panel... +[23:12:59] Exporting Interlocking_Panel as XML... +[23:13:00] 2025-05-02 23:13:00,147 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking_Panel exported successfully +[23:13:00] 2025-05-02 23:13:00,148 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking_Panel exported successfully +[23:13:00] Processing block: Maselli_PA_Ctrl_Read... +[23:13:00] Exporting Maselli_PA_Ctrl_Read as XML... +[23:13:00] 2025-05-02 23:13:00,229 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Ctrl_Read exported successfully +[23:13:00] 2025-05-02 23:13:00,251 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Ctrl_Read exported successfully +[23:13:00] Processing block: MaxCarboCO2 Vol... +[23:13:00] Exporting MaxCarboCO2 Vol as XML... +[23:13:00] 2025-05-02 23:13:00,288 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MaxCarboCO2 Vol exported successfully +[23:13:00] 2025-05-02 23:13:00,290 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MaxCarboCO2 Vol exported successfully +[23:13:00] Exporting MaxCarboCO2 Vol as SCL... +[23:13:00] 2025-05-02 23:13:00,395 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block MaxCarboCO2 Vol external source successfully generated +[23:13:00] Processing block: MessageScroll... +[23:13:00] Exporting MessageScroll as XML... +[23:13:00] 2025-05-02 23:13:00,436 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MessageScroll exported successfully +[23:13:00] 2025-05-02 23:13:00,437 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MessageScroll exported successfully +[23:13:00] Processing block: mPDS_SYR_PA_Ctrl_Read... +[23:13:00] Exporting mPDS_SYR_PA_Ctrl_Read as XML... +[23:13:00] 2025-05-02 23:13:00,549 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Ctrl_Read exported successfully +[23:13:00] 2025-05-02 23:13:00,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Ctrl_Read exported successfully +[23:13:00] Processing block: Output_CO2InjPress... +[23:13:00] Exporting Output_CO2InjPress as XML... +[23:13:00] 2025-05-02 23:13:00,645 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Output_CO2InjPress exported successfully +[23:13:00] 2025-05-02 23:13:00,647 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Output_CO2InjPress exported successfully +[23:13:00] Processing block: Pneumatic Valve Fault... +[23:13:00] Exporting Pneumatic Valve Fault as XML... +[23:13:00] 2025-05-02 23:13:00,706 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Pneumatic Valve Fault exported successfully +[23:13:00] 2025-05-02 23:13:00,709 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Pneumatic Valve Fault exported successfully +[23:13:00] Processing block: PPM O2... +[23:13:00] Exporting PPM O2 as XML... +[23:13:00] 2025-05-02 23:13:00,757 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPM O2 exported successfully +[23:13:00] 2025-05-02 23:13:00,759 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPM O2 exported successfully +[23:13:00] Exporting PPM O2 as SCL... +[23:13:00] 2025-05-02 23:13:00,797 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block PPM O2 external source successfully generated +[23:13:00] Processing block: PPM303_VFC_Ctrl... +[23:13:00] Exporting PPM303_VFC_Ctrl as XML... +[23:13:00] 2025-05-02 23:13:00,869 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPM303_VFC_Ctrl exported successfully +[23:13:00] 2025-05-02 23:13:00,881 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPM303_VFC_Ctrl exported successfully +[23:13:00] Processing block: PPM305_VFC_Ctrl... +[23:13:00] Exporting PPM305_VFC_Ctrl as XML... +[23:13:00] 2025-05-02 23:13:00,962 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPM305_VFC_Ctrl exported successfully +[23:13:00] 2025-05-02 23:13:00,978 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPM305_VFC_Ctrl exported successfully +[23:13:00] Processing block: PPM307_VFC_Ctrl... +[23:13:00] Compiling block PPM307_VFC_Ctrl... +[23:13:00] 2025-05-02 23:13:00,985 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block PPM307_VFC_Ctrl. Result: +[23:13:02] 2025-05-02 23:13:02,054 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:02] 2025-05-02 23:13:02,055 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:02] 2025-05-02 23:13:02,055 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > PPM307_VFC_Ctrl (FC1874) > Block was successfully compiled. +[23:13:02] Exporting PPM307_VFC_Ctrl as XML... +[23:13:02] 2025-05-02 23:13:02,144 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPM307_VFC_Ctrl exported successfully +[23:13:02] 2025-05-02 23:13:02,145 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPM307_VFC_Ctrl exported successfully +[23:13:02] Processing block: PPN301_VFC_Ctrl... +[23:13:02] Exporting PPN301_VFC_Ctrl as XML... +[23:13:02] 2025-05-02 23:13:02,224 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPN301_VFC_Ctrl exported successfully +[23:13:02] 2025-05-02 23:13:02,225 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPN301_VFC_Ctrl exported successfully +[23:13:02] Processing block: PPP302_VFC_Ctrl... +[23:13:02] Exporting PPP302_VFC_Ctrl as XML... +[23:13:02] 2025-05-02 23:13:02,297 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPP302_VFC_Ctrl exported successfully +[23:13:02] 2025-05-02 23:13:02,299 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPP302_VFC_Ctrl exported successfully +[23:13:02] Processing block: ProdBrixRecovery_BrixCal... +[23:13:02] Exporting ProdBrixRecovery_BrixCal as XML... +[23:13:02] 2025-05-02 23:13:02,392 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdBrixRecovery_BrixCal exported successfully +[23:13:02] 2025-05-02 23:13:02,395 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdBrixRecovery_BrixCal exported successfully +[23:13:02] Exporting ProdBrixRecovery_BrixCal as SCL... +[23:13:02] 2025-05-02 23:13:02,442 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProdBrixRecovery_BrixCal external source successfully generated +[23:13:02] Processing block: ProdReportManager... +[23:13:02] Exporting ProdReportManager as XML... +[23:13:02] 2025-05-02 23:13:02,623 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdReportManager exported successfully +[23:13:02] 2025-05-02 23:13:02,629 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdReportManager exported successfully +[23:13:02] Processing block: ProductQuality_Messages... +[23:13:02] Exporting ProductQuality_Messages as XML... +[23:13:02] 2025-05-02 23:13:02,700 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductQuality_Messages exported successfully +[23:13:02] 2025-05-02 23:13:02,701 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductQuality_Messages exported successfully +[23:13:02] Exporting ProductQuality_Messages as SCL... +[23:13:02] 2025-05-02 23:13:02,754 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProductQuality_Messages external source successfully generated +[23:13:02] Processing block: Profibus Network... +[23:13:02] Exporting Profibus Network as XML... +[23:13:02] 2025-05-02 23:13:02,973 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Profibus Network exported successfully +[23:13:02] 2025-05-02 23:13:02,987 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Profibus Network exported successfully +[23:13:02] Processing block: QCO Monitor... +[23:13:03] Exporting QCO Monitor as XML... +[23:13:03] 2025-05-02 23:13:03,116 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: QCO Monitor exported successfully +[23:13:03] 2025-05-02 23:13:03,128 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - QCO Monitor exported successfully +[23:13:03] Processing block: ReadAnalogIn... +[23:13:03] Exporting ReadAnalogIn as XML... +[23:13:03] 2025-05-02 23:13:03,249 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ReadAnalogIn exported successfully +[23:13:03] 2025-05-02 23:13:03,252 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ReadAnalogIn exported successfully +[23:13:03] Processing block: RecipeCalculation... +[23:13:03] Exporting RecipeCalculation as XML... +[23:13:03] 2025-05-02 23:13:03,320 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeCalculation exported successfully +[23:13:03] 2025-05-02 23:13:03,346 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeCalculation exported successfully +[23:13:03] Exporting RecipeCalculation as SCL... +[23:13:03] 2025-05-02 23:13:03,389 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block RecipeCalculation external source successfully generated +[23:13:03] Processing block: REPLACE_Mod... +[23:13:03] Exporting REPLACE_Mod as XML... +[23:13:03] 2025-05-02 23:13:03,485 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: REPLACE_Mod exported successfully +[23:13:03] 2025-05-02 23:13:03,486 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - REPLACE_Mod exported successfully +[23:13:03] Processing block: SyrBrix_SyrupCorrPerc... +[23:13:03] Exporting SyrBrix_SyrupCorrPerc as XML... +[23:13:03] 2025-05-02 23:13:03,532 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrBrix_SyrupCorrPerc exported successfully +[23:13:03] 2025-05-02 23:13:03,534 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrBrix_SyrupCorrPerc exported successfully +[23:13:03] Exporting SyrBrix_SyrupCorrPerc as SCL... +[23:13:03] 2025-05-02 23:13:03,574 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SyrBrix_SyrupCorrPerc external source successfully generated +[23:13:03] Processing block: Syrup Rinse QCO_Seq... +[23:13:03] Exporting Syrup Rinse QCO_Seq as XML... +[23:13:03] 2025-05-02 23:13:03,670 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup Rinse QCO_Seq exported successfully +[23:13:03] 2025-05-02 23:13:03,673 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup Rinse QCO_Seq exported successfully +[23:13:03] Processing block: SyrupRoomCtrl_UpdateVal... +[23:13:03] Exporting SyrupRoomCtrl_UpdateVal as XML... +[23:13:03] 2025-05-02 23:13:03,731 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrupRoomCtrl_UpdateVal exported successfully +[23:13:03] 2025-05-02 23:13:03,748 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrupRoomCtrl_UpdateVal exported successfully +[23:13:03] Exporting SyrupRoomCtrl_UpdateVal as SCL... +[23:13:03] 2025-05-02 23:13:03,797 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SyrupRoomCtrl_UpdateVal external source successfully generated +[23:13:03] Processing block: T_Timer... +[23:13:03] Exporting T_Timer as XML... +[23:13:03] 2025-05-02 23:13:03,840 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: T_Timer exported successfully +[23:13:03] 2025-05-02 23:13:03,851 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - T_Timer exported successfully +[23:13:03] Processing block: TankLevelToHeight... +[23:13:03] Exporting TankLevelToHeight as XML... +[23:13:03] 2025-05-02 23:13:03,909 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: TankLevelToHeight exported successfully +[23:13:03] 2025-05-02 23:13:03,917 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - TankLevelToHeight exported successfully +[23:13:03] Exporting TankLevelToHeight as SCL... +[23:13:03] 2025-05-02 23:13:03,950 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block TankLevelToHeight external source successfully generated +[23:13:03] Processing block: VacuumCtrl... +[23:13:03] Exporting VacuumCtrl as XML... +[23:13:04] 2025-05-02 23:13:04,012 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: VacuumCtrl exported successfully +[23:13:04] 2025-05-02 23:13:04,013 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - VacuumCtrl exported successfully +[23:13:04] Processing block: ValveFlow... +[23:13:04] Exporting ValveFlow as XML... +[23:13:04] 2025-05-02 23:13:04,063 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ValveFlow exported successfully +[23:13:04] 2025-05-02 23:13:04,064 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ValveFlow exported successfully +[23:13:04] Exporting ValveFlow as SCL... +[23:13:04] 2025-05-02 23:13:04,105 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ValveFlow external source successfully generated +[23:13:04] Processing block: BlenderPID__Main... +[23:13:04] Exporting BlenderPID__Main as XML... +[23:13:04] 2025-05-02 23:13:04,369 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID__Main exported successfully +[23:13:04] 2025-05-02 23:13:04,390 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID__Main exported successfully +[23:13:04] Exporting BlenderPID__Main as SCL... +[23:13:04] 2025-05-02 23:13:04,475 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID__Main external source successfully generated +[23:13:04] Processing block: BlenderPID_BlendingFault... +[23:13:04] Exporting BlenderPID_BlendingFault as XML... +[23:13:04] 2025-05-02 23:13:04,600 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_BlendingFault exported successfully +[23:13:04] 2025-05-02 23:13:04,601 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_BlendingFault exported successfully +[23:13:04] Exporting BlenderPID_BlendingFault as SCL... +[23:13:04] 2025-05-02 23:13:04,653 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_BlendingFault external source successfully generated +[23:13:04] Processing block: BlenderPID_PIDFFCalc... +[23:13:04] Exporting BlenderPID_PIDFFCalc as XML... +[23:13:04] 2025-05-02 23:13:04,787 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDFFCalc exported successfully +[23:13:04] 2025-05-02 23:13:04,795 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDFFCalc exported successfully +[23:13:04] Exporting BlenderPID_PIDFFCalc as SCL... +[23:13:04] 2025-05-02 23:13:04,857 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDFFCalc external source successfully generated +[23:13:04] Processing block: BlenderPID_PIDInitParam... +[23:13:04] Exporting BlenderPID_PIDInitParam as XML... +[23:13:04] 2025-05-02 23:13:04,963 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDInitParam exported successfully +[23:13:04] 2025-05-02 23:13:04,967 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDInitParam exported successfully +[23:13:04] Exporting BlenderPID_PIDInitParam as SCL... +[23:13:05] 2025-05-02 23:13:05,020 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDInitParam external source successfully generated +[23:13:05] Processing block: BlenderPID_PIDSPCalc... +[23:13:05] Exporting BlenderPID_PIDSPCalc as XML... +[23:13:05] 2025-05-02 23:13:05,219 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDSPCalc exported successfully +[23:13:05] 2025-05-02 23:13:05,228 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDSPCalc exported successfully +[23:13:05] Exporting BlenderPID_PIDSPCalc as SCL... +[23:13:05] 2025-05-02 23:13:05,328 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDSPCalc external source successfully generated +[23:13:05] Processing block: BlenderPIDCtrl_Monitor... +[23:13:05] Exporting BlenderPIDCtrl_Monitor as XML... +[23:13:05] 2025-05-02 23:13:05,444 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_Monitor exported successfully +[23:13:05] 2025-05-02 23:13:05,449 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_Monitor exported successfully +[23:13:05] Processing block: BlenderPIDCtrl_ReadAnIn... +[23:13:05] Compiling block BlenderPIDCtrl_ReadAnIn... +[23:13:05] 2025-05-02 23:13:05,454 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block BlenderPIDCtrl_ReadAnIn. Result: +[23:13:06] 2025-05-02 23:13:06,949 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:06] 2025-05-02 23:13:06,950 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:06] 2025-05-02 23:13:06,950 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > BlenderPIDCtrl_ReadAnIn (FB1790) > Block was successfully compiled. +[23:13:06] Exporting BlenderPIDCtrl_ReadAnIn as XML... +[23:13:07] 2025-05-02 23:13:07,038 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_ReadAnIn exported successfully +[23:13:07] 2025-05-02 23:13:07,063 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_ReadAnIn exported successfully +[23:13:07] Processing block: BlenderPIDCtrl_SaveInteg... +[23:13:07] Exporting BlenderPIDCtrl_SaveInteg as XML... +[23:13:07] 2025-05-02 23:13:07,196 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_SaveInteg exported successfully +[23:13:07] 2025-05-02 23:13:07,202 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_SaveInteg exported successfully +[23:13:07] Exporting BlenderPIDCtrl_SaveInteg as SCL... +[23:13:07] 2025-05-02 23:13:07,253 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPIDCtrl_SaveInteg external source successfully generated +[23:13:07] Processing block: BlenderRun_MeasFilSpeed... +[23:13:07] Exporting BlenderRun_MeasFilSpeed as XML... +[23:13:07] 2025-05-02 23:13:07,391 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_MeasFilSpeed exported successfully +[23:13:07] 2025-05-02 23:13:07,410 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_MeasFilSpeed exported successfully +[23:13:07] Processing block: BrixTracking_ProdSamples... +[23:13:07] Exporting BrixTracking_ProdSamples as XML... +[23:13:07] 2025-05-02 23:13:07,501 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_ProdSamples exported successfully +[23:13:07] 2025-05-02 23:13:07,505 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_ProdSamples exported successfully +[23:13:07] Exporting BrixTracking_ProdSamples as SCL... +[23:13:07] 2025-05-02 23:13:07,569 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BrixTracking_ProdSamples external source successfully generated +[23:13:07] Processing block: BrixTracking_SampleTime... +[23:13:07] Exporting BrixTracking_SampleTime as XML... +[23:13:07] 2025-05-02 23:13:07,656 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_SampleTime exported successfully +[23:13:07] 2025-05-02 23:13:07,657 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_SampleTime exported successfully +[23:13:07] Exporting BrixTracking_SampleTime as SCL... +[23:13:07] 2025-05-02 23:13:07,698 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BrixTracking_SampleTime external source successfully generated +[23:13:07] Processing block: CIPRecipeManagement... +[23:13:07] Exporting CIPRecipeManagement as XML... +[23:13:07] 2025-05-02 23:13:07,823 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipeManagement exported successfully +[23:13:07] 2025-05-02 23:13:07,824 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipeManagement exported successfully +[23:13:07] Processing block: Co2_Counters... +[23:13:07] Exporting Co2_Counters as XML... +[23:13:07] 2025-05-02 23:13:07,934 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Co2_Counters exported successfully +[23:13:07] 2025-05-02 23:13:07,950 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Co2_Counters exported successfully +[23:13:07] Processing block: CO2Tracking... +[23:13:07] Exporting CO2Tracking as XML... +[23:13:08] 2025-05-02 23:13:08,062 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking exported successfully +[23:13:08] 2025-05-02 23:13:08,075 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking exported successfully +[23:13:08] Processing block: CO2Tracking_ProdSamples... +[23:13:08] Exporting CO2Tracking_ProdSamples as XML... +[23:13:08] 2025-05-02 23:13:08,128 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_ProdSamples exported successfully +[23:13:08] 2025-05-02 23:13:08,139 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_ProdSamples exported successfully +[23:13:08] Exporting CO2Tracking_ProdSamples as SCL... +[23:13:08] 2025-05-02 23:13:08,175 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2Tracking_ProdSamples external source successfully generated +[23:13:08] Processing block: CO2Tracking_SampleTime... +[23:13:08] Exporting CO2Tracking_SampleTime as XML... +[23:13:08] 2025-05-02 23:13:08,253 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_SampleTime exported successfully +[23:13:08] 2025-05-02 23:13:08,262 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_SampleTime exported successfully +[23:13:08] Exporting CO2Tracking_SampleTime as SCL... +[23:13:08] 2025-05-02 23:13:08,298 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2Tracking_SampleTime external source successfully generated +[23:13:08] Processing block: Default_SupervisionFB... +[23:13:08] Exporting Default_SupervisionFB as XML... +[23:13:08] ERROR exporting block Default_SupervisionFB: OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.FB'. +[23:13:08] Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.FB'. +[23:13:08] The programming language 'ProDiag' is not supported during import and export. +[23:13:08] Processing block: Delay... +[23:13:08] Exporting Delay as XML... +[23:13:08] 2025-05-02 23:13:08,742 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Delay exported successfully +[23:13:08] 2025-05-02 23:13:08,743 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Delay exported successfully +[23:13:08] Exporting Delay as SCL... +[23:13:08] 2025-05-02 23:13:08,794 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Delay external source successfully generated +[23:13:08] Processing block: Input... +[23:13:08] Compiling block Input... +[23:13:08] 2025-05-02 23:13:08,804 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block Input. Result: +[23:13:11] 2025-05-02 23:13:11,037 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Program blocks > Input (FB1718) > Network 8 > Access to "DI_MaxTempAlarm" with ambiguous address. +[23:13:11] 2025-05-02 23:13:11,038 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Program blocks > Input (FB1718) > Network 41 > Access to "DI_SyrRoom_SyrPump_Running" with ambiguous address. +[23:13:11] 2025-05-02 23:13:11,039 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Program blocks > Input (FB1718) > Network 81 > The address is not occupied by a tag. +[23:13:11] 2025-05-02 23:13:11,039 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:11] 2025-05-02 23:13:11,041 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 6) +[23:13:11] 2025-05-02 23:13:11,041 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > Input (FB1718) > Block was successfully compiled. +[23:13:11] Exporting Input as XML... +[23:13:11] 2025-05-02 23:13:11,549 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input exported successfully +[23:13:11] 2025-05-02 23:13:11,573 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input exported successfully +[23:13:11] Processing block: Integral... +[23:13:11] Exporting Integral as XML... +[23:13:11] 2025-05-02 23:13:11,639 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Integral exported successfully +[23:13:11] 2025-05-02 23:13:11,641 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Integral exported successfully +[23:13:11] Exporting Integral as SCL... +[23:13:11] 2025-05-02 23:13:11,683 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Integral external source successfully generated +[23:13:11] Processing block: Key Read & Write... +[23:13:11] Compiling block Key Read & Write... +[23:13:11] 2025-05-02 23:13:11,689 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block Key Read & Write. Result: +[23:13:14] 2025-05-02 23:13:14,123 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Program blocks > Key Read & Write (FB50) > Network 4 > Modification of the register DI has no effect on the symbolic instance accesses. +[23:13:14] 2025-05-02 23:13:14,123 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:14] 2025-05-02 23:13:14,124 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 3) +[23:13:14] 2025-05-02 23:13:14,124 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > Key Read & Write (FB50) > Block was successfully compiled. +[23:13:14] Exporting Key Read & Write as XML... +[23:13:14] 2025-05-02 23:13:14,418 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Key Read & Write exported successfully +[23:13:14] 2025-05-02 23:13:14,437 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Key Read & Write exported successfully +[23:13:14] Processing block: LowPassFilter... +[23:13:14] Exporting LowPassFilter as XML... +[23:13:14] 2025-05-02 23:13:14,495 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LowPassFilter exported successfully +[23:13:14] 2025-05-02 23:13:14,496 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LowPassFilter exported successfully +[23:13:14] Exporting LowPassFilter as SCL... +[23:13:14] 2025-05-02 23:13:14,542 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block LowPassFilter external source successfully generated +[23:13:14] Processing block: MFMAnalogValues... +[23:13:14] Exporting MFMAnalogValues as XML... +[23:13:14] 2025-05-02 23:13:14,732 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MFMAnalogValues exported successfully +[23:13:14] 2025-05-02 23:13:14,736 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MFMAnalogValues exported successfully +[23:13:14] Exporting MFMAnalogValues as SCL... +[23:13:14] 2025-05-02 23:13:14,802 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block MFMAnalogValues external source successfully generated +[23:13:14] Processing block: MSE Slope... +[23:13:14] Exporting MSE Slope as XML... +[23:13:14] 2025-05-02 23:13:14,898 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MSE Slope exported successfully +[23:13:14] 2025-05-02 23:13:14,901 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MSE Slope exported successfully +[23:13:14] Exporting MSE Slope as SCL... +[23:13:14] 2025-05-02 23:13:14,947 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block MSE Slope external source successfully generated +[23:13:14] Processing block: PID_Filling_Head_Calc... +[23:13:14] Exporting PID_Filling_Head_Calc as XML... +[23:13:15] 2025-05-02 23:13:15,046 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head_Calc exported successfully +[23:13:15] 2025-05-02 23:13:15,047 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head_Calc exported successfully +[23:13:15] Exporting PID_Filling_Head_Calc as SCL... +[23:13:15] 2025-05-02 23:13:15,084 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block PID_Filling_Head_Calc external source successfully generated +[23:13:15] Processing block: PID_RMM301... +[23:13:15] Exporting PID_RMM301 as XML... +[23:13:15] 2025-05-02 23:13:15,165 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM301 exported successfully +[23:13:15] 2025-05-02 23:13:15,169 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM301 exported successfully +[23:13:15] Processing block: PID_RMM303... +[23:13:15] Exporting PID_RMM303 as XML... +[23:13:15] 2025-05-02 23:13:15,251 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM303 exported successfully +[23:13:15] 2025-05-02 23:13:15,262 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM303 exported successfully +[23:13:15] Processing block: PID_RMM304... +[23:13:15] Exporting PID_RMM304 as XML... +[23:13:15] 2025-05-02 23:13:15,350 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM304 exported successfully +[23:13:15] 2025-05-02 23:13:15,372 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM304 exported successfully +[23:13:15] Processing block: PID_RMP302... +[23:13:15] Exporting PID_RMP302 as XML... +[23:13:15] 2025-05-02 23:13:15,446 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMP302 exported successfully +[23:13:15] 2025-05-02 23:13:15,465 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMP302 exported successfully +[23:13:15] Processing block: PID_RVM301... +[23:13:15] Exporting PID_RVM301 as XML... +[23:13:15] 2025-05-02 23:13:15,522 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM301 exported successfully +[23:13:15] 2025-05-02 23:13:15,525 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM301 exported successfully +[23:13:15] Processing block: PID_RVM319_PRD... +[23:13:15] Exporting PID_RVM319_PRD as XML... +[23:13:15] 2025-05-02 23:13:15,601 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM319_PRD exported successfully +[23:13:15] 2025-05-02 23:13:15,606 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM319_PRD exported successfully +[23:13:15] Processing block: PID_RVN302... +[23:13:15] Exporting PID_RVN302 as XML... +[23:13:15] 2025-05-02 23:13:15,718 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVN302 exported successfully +[23:13:15] 2025-05-02 23:13:15,722 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVN302 exported successfully +[23:13:15] Processing block: PID_RVP303... +[23:13:15] Exporting PID_RVP303 as XML... +[23:13:15] 2025-05-02 23:13:15,811 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVP303 exported successfully +[23:13:15] 2025-05-02 23:13:15,814 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVP303 exported successfully +[23:13:15] Processing block: PID_RVS318... +[23:13:15] Exporting PID_RVS318 as XML... +[23:13:15] 2025-05-02 23:13:15,884 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVS318 exported successfully +[23:13:15] 2025-05-02 23:13:15,899 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVS318 exported successfully +[23:13:15] Processing block: PIDControl... +[23:13:15] Exporting PIDControl as XML... +[23:13:15] 2025-05-02 23:13:15,955 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PIDControl exported successfully +[23:13:15] 2025-05-02 23:13:15,956 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PIDControl exported successfully +[23:13:15] Processing block: Procedure... +[23:13:15] Exporting Procedure as XML... +[23:13:16] 2025-05-02 23:13:16,053 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Procedure exported successfully +[23:13:16] 2025-05-02 23:13:16,068 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Procedure exported successfully +[23:13:16] Processing block: ProcedureBlendFill StartUp... +[23:13:16] Exporting ProcedureBlendFill StartUp as XML... +[23:13:16] 2025-05-02 23:13:16,184 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureBlendFill StartUp exported successfully +[23:13:16] 2025-05-02 23:13:16,190 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureBlendFill StartUp exported successfully +[23:13:16] Processing block: ProcedureBrixTracking... +[23:13:16] Exporting ProcedureBrixTracking as XML... +[23:13:16] 2025-05-02 23:13:16,285 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureBrixTracking exported successfully +[23:13:16] 2025-05-02 23:13:16,299 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureBrixTracking exported successfully +[23:13:16] Processing block: ProcedureCarboWaterLine... +[23:13:16] Exporting ProcedureCarboWaterLine as XML... +[23:13:16] 2025-05-02 23:13:16,401 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureCarboWaterLine exported successfully +[23:13:16] 2025-05-02 23:13:16,408 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureCarboWaterLine exported successfully +[23:13:16] Processing block: ProcedureDeaireator StartUp... +[23:13:16] Exporting ProcedureDeaireator StartUp as XML... +[23:13:16] 2025-05-02 23:13:16,479 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureDeaireator StartUp exported successfully +[23:13:16] 2025-05-02 23:13:16,487 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureDeaireator StartUp exported successfully +[23:13:16] Processing block: ProcedureFirstProduction... +[23:13:16] Exporting ProcedureFirstProduction as XML... +[23:13:16] 2025-05-02 23:13:16,592 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureFirstProduction exported successfully +[23:13:16] 2025-05-02 23:13:16,602 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureFirstProduction exported successfully +[23:13:16] Processing block: ProcedureProdBrixRecovery... +[23:13:16] Exporting ProcedureProdBrixRecovery as XML... +[23:13:16] 2025-05-02 23:13:16,689 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureProdBrixRecovery exported successfully +[23:13:16] 2025-05-02 23:13:16,706 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureProdBrixRecovery exported successfully +[23:13:16] Processing block: ProcedureProdTankDrain... +[23:13:16] Exporting ProcedureProdTankDrain as XML... +[23:13:16] 2025-05-02 23:13:16,861 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureProdTankDrain exported successfully +[23:13:16] 2025-05-02 23:13:16,863 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureProdTankDrain exported successfully +[23:13:16] Processing block: ProcedureProdTankRunOut... +[23:13:16] Exporting ProcedureProdTankRunOut as XML... +[23:13:16] 2025-05-02 23:13:16,976 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureProdTankRunOut exported successfully +[23:13:16] 2025-05-02 23:13:16,986 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureProdTankRunOut exported successfully +[23:13:16] Processing block: ProcedureSyrup RunOut... +[23:13:17] Exporting ProcedureSyrup RunOut as XML... +[23:13:17] 2025-05-02 23:13:17,078 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureSyrup RunOut exported successfully +[23:13:17] 2025-05-02 23:13:17,098 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureSyrup RunOut exported successfully +[23:13:17] Processing block: ProcedureSyrupLineMFMPrep... +[23:13:17] Compiling block ProcedureSyrupLineMFMPrep... +[23:13:17] 2025-05-02 23:13:17,130 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block ProcedureSyrupLineMFMPrep. Result: +[23:13:18] 2025-05-02 23:13:18,439 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:18] 2025-05-02 23:13:18,440 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:18] 2025-05-02 23:13:18,440 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > ProcedureSyrupLineMFMPrep (FB1810) > Block was successfully compiled. +[23:13:18] Exporting ProcedureSyrupLineMFMPrep as XML... +[23:13:18] 2025-05-02 23:13:18,574 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureSyrupLineMFMPrep exported successfully +[23:13:18] 2025-05-02 23:13:18,595 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureSyrupLineMFMPrep exported successfully +[23:13:18] Processing block: ProcedureSyrupMFMStartUp... +[23:13:18] Exporting ProcedureSyrupMFMStartUp as XML... +[23:13:18] 2025-05-02 23:13:18,669 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureSyrupMFMStartUp exported successfully +[23:13:18] 2025-05-02 23:13:18,671 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureSyrupMFMStartUp exported successfully +[23:13:18] Processing block: ProductAvailable... +[23:13:18] Exporting ProductAvailable as XML... +[23:13:18] 2025-05-02 23:13:18,740 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductAvailable exported successfully +[23:13:18] 2025-05-02 23:13:18,751 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductAvailable exported successfully +[23:13:18] Exporting ProductAvailable as SCL... +[23:13:18] 2025-05-02 23:13:18,819 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProductAvailable external source successfully generated +[23:13:18] Processing block: ProductPipeDrain... +[23:13:18] Exporting ProductPipeDrain as XML... +[23:13:18] 2025-05-02 23:13:18,901 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeDrain exported successfully +[23:13:18] 2025-05-02 23:13:18,903 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeDrain exported successfully +[23:13:18] Processing block: ProductPipeRunOut... +[23:13:18] Exporting ProductPipeRunOut as XML... +[23:13:19] 2025-05-02 23:13:19,009 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeRunOut exported successfully +[23:13:19] 2025-05-02 23:13:19,019 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeRunOut exported successfully +[23:13:19] Processing block: Signal Gen... +[23:13:19] Exporting Signal Gen as XML... +[23:13:19] 2025-05-02 23:13:19,087 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Signal Gen exported successfully +[23:13:19] 2025-05-02 23:13:19,093 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Signal Gen exported successfully +[23:13:19] Exporting Signal Gen as SCL... +[23:13:19] 2025-05-02 23:13:19,131 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Signal Gen external source successfully generated +[23:13:19] Processing block: SlewLimit... +[23:13:19] Exporting SlewLimit as XML... +[23:13:19] 2025-05-02 23:13:19,167 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SlewLimit exported successfully +[23:13:19] 2025-05-02 23:13:19,168 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SlewLimit exported successfully +[23:13:19] Exporting SlewLimit as SCL... +[23:13:19] 2025-05-02 23:13:19,197 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SlewLimit external source successfully generated +[23:13:19] Processing block: Statistical_Analisys... +[23:13:19] Exporting Statistical_Analisys as XML... +[23:13:19] 2025-05-02 23:13:19,260 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Statistical_Analisys exported successfully +[23:13:19] 2025-05-02 23:13:19,262 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Statistical_Analisys exported successfully +[23:13:19] Exporting Statistical_Analisys as SCL... +[23:13:19] 2025-05-02 23:13:19,318 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Statistical_Analisys external source successfully generated +[23:13:19] Processing block: SubCarb... +[23:13:19] Exporting SubCarb as XML... +[23:13:19] 2025-05-02 23:13:19,484 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SubCarb exported successfully +[23:13:19] 2025-05-02 23:13:19,494 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SubCarb exported successfully +[23:13:19] Processing block: SyrBrix Autocorrection... +[23:13:19] Exporting SyrBrix Autocorrection as XML... +[23:13:19] 2025-05-02 23:13:19,641 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrBrix Autocorrection exported successfully +[23:13:19] 2025-05-02 23:13:19,652 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrBrix Autocorrection exported successfully +[23:13:19] Processing block: System_Run_Out... +[23:13:19] Exporting System_Run_Out as XML... +[23:13:19] 2025-05-02 23:13:19,813 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_Run_Out exported successfully +[23:13:19] 2025-05-02 23:13:19,823 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_Run_Out exported successfully +[23:13:19] Processing block: Blender_Constants... +[23:13:19] Exporting Blender_Constants as XML... +[23:13:19] 2025-05-02 23:13:19,869 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Constants exported successfully +[23:13:19] 2025-05-02 23:13:19,885 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Constants exported successfully +[23:13:19] Processing block: Blender_Variables... +[23:13:19] Exporting Blender_Variables as XML... +[23:13:19] 2025-05-02 23:13:19,966 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Variables exported successfully +[23:13:19] 2025-05-02 23:13:19,975 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Variables exported successfully +[23:13:19] Processing block: Blender_Variables_Pers... +[23:13:19] Exporting Blender_Variables_Pers as XML... +[23:13:20] 2025-05-02 23:13:20,052 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Variables_Pers exported successfully +[23:13:20] 2025-05-02 23:13:20,054 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Variables_Pers exported successfully +[23:13:20] Processing block: Blocco_dati_Test... +[23:13:20] Exporting Blocco_dati_Test as XML... +[23:13:20] 2025-05-02 23:13:20,099 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blocco_dati_Test exported successfully +[23:13:20] 2025-05-02 23:13:20,101 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blocco_dati_Test exported successfully +[23:13:20] Processing block: CIP_Program_Variables... +[23:13:20] Exporting CIP_Program_Variables as XML... +[23:13:20] 2025-05-02 23:13:20,198 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIP_Program_Variables exported successfully +[23:13:20] 2025-05-02 23:13:20,211 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIP_Program_Variables exported successfully +[23:13:20] Processing block: CIPRecipe#01... +[23:13:20] Exporting CIPRecipe#01 as XML... +[23:13:20] 2025-05-02 23:13:20,252 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#01 exported successfully +[23:13:20] 2025-05-02 23:13:20,253 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#01 exported successfully +[23:13:20] Processing block: CIPRecipe#02... +[23:13:20] Exporting CIPRecipe#02 as XML... +[23:13:20] 2025-05-02 23:13:20,309 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#02 exported successfully +[23:13:20] 2025-05-02 23:13:20,310 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#02 exported successfully +[23:13:20] Processing block: CIPRecipe#03... +[23:13:20] Exporting CIPRecipe#03 as XML... +[23:13:20] 2025-05-02 23:13:20,367 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#03 exported successfully +[23:13:20] 2025-05-02 23:13:20,368 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#03 exported successfully +[23:13:20] Processing block: CIPRecipe#04... +[23:13:20] Exporting CIPRecipe#04 as XML... +[23:13:20] 2025-05-02 23:13:20,425 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#04 exported successfully +[23:13:20] 2025-05-02 23:13:20,426 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#04 exported successfully +[23:13:20] Processing block: CIPRecipe#05... +[23:13:20] Exporting CIPRecipe#05 as XML... +[23:13:20] 2025-05-02 23:13:20,471 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#05 exported successfully +[23:13:20] 2025-05-02 23:13:20,472 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#05 exported successfully +[23:13:20] Processing block: CIPRecipe#06... +[23:13:20] Exporting CIPRecipe#06 as XML... +[23:13:20] 2025-05-02 23:13:20,511 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#06 exported successfully +[23:13:20] 2025-05-02 23:13:20,513 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#06 exported successfully +[23:13:20] Processing block: CIPRecipe#07... +[23:13:20] Exporting CIPRecipe#07 as XML... +[23:13:20] 2025-05-02 23:13:20,560 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#07 exported successfully +[23:13:20] 2025-05-02 23:13:20,561 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#07 exported successfully +[23:13:20] Processing block: CIPRecipe#08... +[23:13:20] Exporting CIPRecipe#08 as XML... +[23:13:20] 2025-05-02 23:13:20,611 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#08 exported successfully +[23:13:20] 2025-05-02 23:13:20,613 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#08 exported successfully +[23:13:20] Processing block: CIPRecipe#09... +[23:13:20] Exporting CIPRecipe#09 as XML... +[23:13:20] 2025-05-02 23:13:20,655 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#09 exported successfully +[23:13:20] 2025-05-02 23:13:20,657 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#09 exported successfully +[23:13:20] Processing block: CIPRecipe#10... +[23:13:20] Exporting CIPRecipe#10 as XML... +[23:13:20] 2025-05-02 23:13:20,701 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#10 exported successfully +[23:13:20] 2025-05-02 23:13:20,703 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#10 exported successfully +[23:13:20] Processing block: CIPRecipe#11... +[23:13:20] Exporting CIPRecipe#11 as XML... +[23:13:20] 2025-05-02 23:13:20,754 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#11 exported successfully +[23:13:20] 2025-05-02 23:13:20,756 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#11 exported successfully +[23:13:20] Processing block: CIPRecipe#12... +[23:13:20] Exporting CIPRecipe#12 as XML... +[23:13:20] 2025-05-02 23:13:20,804 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#12 exported successfully +[23:13:20] 2025-05-02 23:13:20,805 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#12 exported successfully +[23:13:20] Processing block: CIPRecipe#13... +[23:13:20] Exporting CIPRecipe#13 as XML... +[23:13:20] 2025-05-02 23:13:20,860 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#13 exported successfully +[23:13:20] 2025-05-02 23:13:20,862 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#13 exported successfully +[23:13:20] Processing block: CIPRecipe#14... +[23:13:20] Exporting CIPRecipe#14 as XML... +[23:13:20] 2025-05-02 23:13:20,939 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#14 exported successfully +[23:13:20] 2025-05-02 23:13:20,941 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#14 exported successfully +[23:13:20] Processing block: CIPRecipe#15... +[23:13:20] Exporting CIPRecipe#15 as XML... +[23:13:21] 2025-05-02 23:13:21,000 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#15 exported successfully +[23:13:21] 2025-05-02 23:13:21,002 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#15 exported successfully +[23:13:21] Processing block: CIPRecipe#16... +[23:13:21] Exporting CIPRecipe#16 as XML... +[23:13:21] 2025-05-02 23:13:21,039 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#16 exported successfully +[23:13:21] 2025-05-02 23:13:21,040 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#16 exported successfully +[23:13:21] Processing block: CIPRecipe#17... +[23:13:21] Exporting CIPRecipe#17 as XML... +[23:13:21] 2025-05-02 23:13:21,079 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#17 exported successfully +[23:13:21] 2025-05-02 23:13:21,080 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#17 exported successfully +[23:13:21] Processing block: CIPRecipe#18... +[23:13:21] Exporting CIPRecipe#18 as XML... +[23:13:21] 2025-05-02 23:13:21,137 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#18 exported successfully +[23:13:21] 2025-05-02 23:13:21,138 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#18 exported successfully +[23:13:21] Processing block: CIPRecipe#19... +[23:13:21] Exporting CIPRecipe#19 as XML... +[23:13:21] 2025-05-02 23:13:21,185 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#19 exported successfully +[23:13:21] 2025-05-02 23:13:21,186 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#19 exported successfully +[23:13:21] Processing block: CIPRecipe#20... +[23:13:21] Exporting CIPRecipe#20 as XML... +[23:13:21] 2025-05-02 23:13:21,245 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#20 exported successfully +[23:13:21] 2025-05-02 23:13:21,247 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#20 exported successfully +[23:13:21] Processing block: CIPRecipe#21... +[23:13:21] Exporting CIPRecipe#21 as XML... +[23:13:21] 2025-05-02 23:13:21,286 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#21 exported successfully +[23:13:21] 2025-05-02 23:13:21,288 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#21 exported successfully +[23:13:21] Processing block: CIPRecipe#22... +[23:13:21] Exporting CIPRecipe#22 as XML... +[23:13:21] 2025-05-02 23:13:21,333 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#22 exported successfully +[23:13:21] 2025-05-02 23:13:21,355 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#22 exported successfully +[23:13:21] Processing block: CIPRecipe#23... +[23:13:21] Exporting CIPRecipe#23 as XML... +[23:13:21] 2025-05-02 23:13:21,406 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#23 exported successfully +[23:13:21] 2025-05-02 23:13:21,408 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#23 exported successfully +[23:13:21] Processing block: CIPRecipe#24... +[23:13:21] Exporting CIPRecipe#24 as XML... +[23:13:21] 2025-05-02 23:13:21,447 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#24 exported successfully +[23:13:21] 2025-05-02 23:13:21,448 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#24 exported successfully +[23:13:21] Processing block: CIPRecipe#25... +[23:13:21] Exporting CIPRecipe#25 as XML... +[23:13:21] 2025-05-02 23:13:21,510 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#25 exported successfully +[23:13:21] 2025-05-02 23:13:21,512 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#25 exported successfully +[23:13:21] Processing block: CIPRecipe#26... +[23:13:21] Exporting CIPRecipe#26 as XML... +[23:13:21] 2025-05-02 23:13:21,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#26 exported successfully +[23:13:21] 2025-05-02 23:13:21,553 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#26 exported successfully +[23:13:21] Processing block: CIPRecipe#27... +[23:13:21] Exporting CIPRecipe#27 as XML... +[23:13:21] 2025-05-02 23:13:21,619 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#27 exported successfully +[23:13:21] 2025-05-02 23:13:21,621 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#27 exported successfully +[23:13:21] Processing block: CIPRecipe#28... +[23:13:21] Exporting CIPRecipe#28 as XML... +[23:13:21] 2025-05-02 23:13:21,683 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#28 exported successfully +[23:13:21] 2025-05-02 23:13:21,685 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#28 exported successfully +[23:13:21] Processing block: CIPRecipe#29... +[23:13:21] Exporting CIPRecipe#29 as XML... +[23:13:21] 2025-05-02 23:13:21,743 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#29 exported successfully +[23:13:21] 2025-05-02 23:13:21,757 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#29 exported successfully +[23:13:21] Processing block: CIPRecipe#30... +[23:13:21] Exporting CIPRecipe#30 as XML... +[23:13:21] 2025-05-02 23:13:21,807 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#30 exported successfully +[23:13:21] 2025-05-02 23:13:21,808 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#30 exported successfully +[23:13:21] Processing block: CIPReportDB... +[23:13:21] Exporting CIPReportDB as XML... +[23:13:21] 2025-05-02 23:13:21,854 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPReportDB exported successfully +[23:13:21] 2025-05-02 23:13:21,868 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPReportDB exported successfully +[23:13:21] Processing block: Filler_Head_Variables... +[23:13:21] Exporting Filler_Head_Variables as XML... +[23:13:21] 2025-05-02 23:13:21,904 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Filler_Head_Variables exported successfully +[23:13:21] 2025-05-02 23:13:21,905 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Filler_Head_Variables exported successfully +[23:13:21] Processing block: GLOBAL_DIAG_DB... +[23:13:21] Exporting GLOBAL_DIAG_DB as XML... +[23:13:21] 2025-05-02 23:13:21,944 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GLOBAL_DIAG_DB exported successfully +[23:13:21] 2025-05-02 23:13:21,946 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GLOBAL_DIAG_DB exported successfully +[23:13:21] Processing block: HMI CPU_DP Diag... +[23:13:21] Exporting HMI CPU_DP Diag as XML... +[23:13:21] 2025-05-02 23:13:21,986 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI CPU_DP Diag exported successfully +[23:13:21] 2025-05-02 23:13:21,987 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI CPU_DP Diag exported successfully +[23:13:21] Processing block: HMI Key User... +[23:13:21] Exporting HMI Key User as XML... +[23:13:22] 2025-05-02 23:13:22,058 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI Key User exported successfully +[23:13:22] 2025-05-02 23:13:22,059 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI Key User exported successfully +[23:13:22] Processing block: HMI_Alarms... +[23:13:22] Exporting HMI_Alarms as XML... +[23:13:22] 2025-05-02 23:13:22,121 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Alarms exported successfully +[23:13:22] 2025-05-02 23:13:22,122 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Alarms exported successfully +[23:13:22] Processing block: HMI_Digital... +[23:13:22] Exporting HMI_Digital as XML... +[23:13:22] 2025-05-02 23:13:22,262 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Digital exported successfully +[23:13:22] 2025-05-02 23:13:22,276 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Digital exported successfully +[23:13:22] Processing block: HMI_Instrument... +[23:13:22] Exporting HMI_Instrument as XML... +[23:13:22] 2025-05-02 23:13:22,540 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Instrument exported successfully +[23:13:22] 2025-05-02 23:13:22,567 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Instrument exported successfully +[23:13:22] Processing block: HMI_IO_Showing... +[23:13:22] Exporting HMI_IO_Showing as XML... +[23:13:22] 2025-05-02 23:13:22,643 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_IO_Showing exported successfully +[23:13:22] 2025-05-02 23:13:22,646 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_IO_Showing exported successfully +[23:13:22] Processing block: HMI_Local_CIP_Variables... +[23:13:22] Exporting HMI_Local_CIP_Variables as XML... +[23:13:22] 2025-05-02 23:13:22,695 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Local_CIP_Variables exported successfully +[23:13:22] 2025-05-02 23:13:22,710 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Local_CIP_Variables exported successfully +[23:13:22] Processing block: HMI_PID... +[23:13:22] Exporting HMI_PID as XML... +[23:13:22] 2025-05-02 23:13:22,764 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_PID exported successfully +[23:13:22] 2025-05-02 23:13:22,766 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_PID exported successfully +[23:13:22] Processing block: HMI_Recipe_Edit... +[23:13:22] Exporting HMI_Recipe_Edit as XML... +[23:13:22] 2025-05-02 23:13:22,808 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Recipe_Edit exported successfully +[23:13:22] 2025-05-02 23:13:22,809 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Recipe_Edit exported successfully +[23:13:22] Processing block: HMI_Recipe_Name... +[23:13:22] Exporting HMI_Recipe_Name as XML... +[23:13:22] 2025-05-02 23:13:22,867 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Recipe_Name exported successfully +[23:13:22] 2025-05-02 23:13:22,868 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Recipe_Name exported successfully +[23:13:22] Processing block: HMI_Refrige_IO_Showing... +[23:13:22] Exporting HMI_Refrige_IO_Showing as XML... +[23:13:22] 2025-05-02 23:13:22,931 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Refrige_IO_Showing exported successfully +[23:13:22] 2025-05-02 23:13:22,932 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Refrige_IO_Showing exported successfully +[23:13:22] Processing block: HMI_Service... +[23:13:22] Exporting HMI_Service as XML... +[23:13:22] 2025-05-02 23:13:22,970 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Service exported successfully +[23:13:22] 2025-05-02 23:13:22,973 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Service exported successfully +[23:13:22] Processing block: HMI_Variables_Cmd... +[23:13:22] Exporting HMI_Variables_Cmd as XML... +[23:13:23] 2025-05-02 23:13:23,027 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Variables_Cmd exported successfully +[23:13:23] 2025-05-02 23:13:23,039 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Variables_Cmd exported successfully +[23:13:23] Processing block: HMI_Variables_Status... +[23:13:23] Exporting HMI_Variables_Status as XML... +[23:13:23] 2025-05-02 23:13:23,115 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Variables_Status exported successfully +[23:13:23] 2025-05-02 23:13:23,130 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Variables_Status exported successfully +[23:13:23] Processing block: Interlocking_Variables... +[23:13:23] Exporting Interlocking_Variables as XML... +[23:13:23] 2025-05-02 23:13:23,217 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking_Variables exported successfully +[23:13:23] 2025-05-02 23:13:23,223 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking_Variables exported successfully +[23:13:23] Processing block: ITC Communic MainData... +[23:13:23] Exporting ITC Communic MainData as XML... +[23:13:23] 2025-05-02 23:13:23,320 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic MainData exported successfully +[23:13:23] 2025-05-02 23:13:23,339 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic MainData exported successfully +[23:13:23] Processing block: Machine_Co2_Cons... +[23:13:23] Exporting Machine_Co2_Cons as XML... +[23:13:23] 2025-05-02 23:13:23,380 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Machine_Co2_Cons exported successfully +[23:13:23] 2025-05-02 23:13:23,383 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Machine_Co2_Cons exported successfully +[23:13:23] Processing block: Maselli_PA_Data... +[23:13:23] Exporting Maselli_PA_Data as XML... +[23:13:23] 2025-05-02 23:13:23,426 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Data exported successfully +[23:13:23] 2025-05-02 23:13:23,428 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Data exported successfully +[23:13:23] Processing block: PID_Variables... +[23:13:23] Exporting PID_Variables as XML... +[23:13:23] 2025-05-02 23:13:23,466 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Variables exported successfully +[23:13:23] 2025-05-02 23:13:23,469 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Variables exported successfully +[23:13:23] Processing block: Pneumatic Valve Fault DB... +[23:13:23] Exporting Pneumatic Valve Fault DB as XML... +[23:13:23] 2025-05-02 23:13:23,524 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Pneumatic Valve Fault DB exported successfully +[23:13:23] 2025-05-02 23:13:23,525 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Pneumatic Valve Fault DB exported successfully +[23:13:23] Processing block: Procedure_Variables... +[23:13:23] Exporting Procedure_Variables as XML... +[23:13:23] 2025-05-02 23:13:23,599 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Procedure_Variables exported successfully +[23:13:23] 2025-05-02 23:13:23,614 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Procedure_Variables exported successfully +[23:13:23] Processing block: ProdReportDB... +[23:13:23] Exporting ProdReportDB as XML... +[23:13:23] 2025-05-02 23:13:23,679 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdReportDB exported successfully +[23:13:23] 2025-05-02 23:13:23,680 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdReportDB exported successfully +[23:13:23] Processing block: Profibus_Variables... +[23:13:23] Exporting Profibus_Variables as XML... +[23:13:23] 2025-05-02 23:13:23,720 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Profibus_Variables exported successfully +[23:13:23] 2025-05-02 23:13:23,723 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Profibus_Variables exported successfully +[23:13:23] Processing block: QCO Timing DB... +[23:13:23] Exporting QCO Timing DB as XML... +[23:13:23] 2025-05-02 23:13:23,781 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: QCO Timing DB exported successfully +[23:13:23] 2025-05-02 23:13:23,785 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - QCO Timing DB exported successfully +[23:13:23] Processing block: ReadAnalogIn_Fault_DB... +[23:13:23] Exporting ReadAnalogIn_Fault_DB as XML... +[23:13:23] 2025-05-02 23:13:23,831 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ReadAnalogIn_Fault_DB exported successfully +[23:13:23] 2025-05-02 23:13:23,833 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ReadAnalogIn_Fault_DB exported successfully +[23:13:23] Processing block: Recipe #02... +[23:13:23] Exporting Recipe #02 as XML... +[23:13:23] 2025-05-02 23:13:23,874 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #02 exported successfully +[23:13:23] 2025-05-02 23:13:23,878 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #02 exported successfully +[23:13:23] Processing block: Recipe #05... +[23:13:23] Exporting Recipe #05 as XML... +[23:13:23] 2025-05-02 23:13:23,925 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #05 exported successfully +[23:13:23] 2025-05-02 23:13:23,927 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #05 exported successfully +[23:13:23] Processing block: Recipe #06... +[23:13:23] Exporting Recipe #06 as XML... +[23:13:23] 2025-05-02 23:13:23,960 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #06 exported successfully +[23:13:23] 2025-05-02 23:13:23,962 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #06 exported successfully +[23:13:23] Processing block: Recipe #07... +[23:13:23] Exporting Recipe #07 as XML... +[23:13:23] 2025-05-02 23:13:23,997 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #07 exported successfully +[23:13:23] 2025-05-02 23:13:23,998 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #07 exported successfully +[23:13:24] Processing block: Recipe #08... +[23:13:24] Exporting Recipe #08 as XML... +[23:13:24] 2025-05-02 23:13:24,034 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #08 exported successfully +[23:13:24] 2025-05-02 23:13:24,036 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #08 exported successfully +[23:13:24] Processing block: Recipe #26... +[23:13:24] Exporting Recipe #26 as XML... +[23:13:24] 2025-05-02 23:13:24,081 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #26 exported successfully +[23:13:24] 2025-05-02 23:13:24,083 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #26 exported successfully +[23:13:24] Processing block: RecipeEditDataSave... +[23:13:24] Exporting RecipeEditDataSave as XML... +[23:13:24] 2025-05-02 23:13:24,131 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeEditDataSave exported successfully +[23:13:24] 2025-05-02 23:13:24,133 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeEditDataSave exported successfully +[23:13:24] Processing block: SLIM_Variables... +[23:13:24] Exporting SLIM_Variables as XML... +[23:13:24] 2025-05-02 23:13:24,206 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SLIM_Variables exported successfully +[23:13:24] 2025-05-02 23:13:24,238 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SLIM_Variables exported successfully +[23:13:24] Processing block: System_RunOut_Variables... +[23:13:24] Exporting System_RunOut_Variables as XML... +[23:13:24] 2025-05-02 23:13:24,318 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_RunOut_Variables exported successfully +[23:13:24] 2025-05-02 23:13:24,349 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_RunOut_Variables exported successfully +[23:13:24] Processing block: BlenderCtrl_MachineInit... +[23:13:24] Compiling block BlenderCtrl_MachineInit... +[23:13:24] 2025-05-02 23:13:24,366 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block BlenderCtrl_MachineInit. Result: +[23:13:28] 2025-05-02 23:13:28,511 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:28] 2025-05-02 23:13:28,512 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:28] 2025-05-02 23:13:28,512 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > BlenderCtrl_MachineInit (FC2003) > Block was successfully compiled. +[23:13:28] Exporting BlenderCtrl_MachineInit as XML... +[23:13:29] 2025-05-02 23:13:29,171 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_MachineInit exported successfully +[23:13:29] 2025-05-02 23:13:29,177 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_MachineInit exported successfully +[23:13:29] Processing block: Pneumatic Valve Ctrl... +[23:13:29] Exporting Pneumatic Valve Ctrl as XML... +[23:13:29] 2025-05-02 23:13:29,866 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Pneumatic Valve Ctrl exported successfully +[23:13:29] 2025-05-02 23:13:29,889 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Pneumatic Valve Ctrl exported successfully +[23:13:29] Processing block: PumpsControl... +[23:13:29] Compiling block PumpsControl... +[23:13:29] 2025-05-02 23:13:29,900 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block PumpsControl. Result: +[23:13:31] 2025-05-02 23:13:31,700 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:31] 2025-05-02 23:13:31,701 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:31] 2025-05-02 23:13:31,702 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > PumpsControl (FC1870) > Block was successfully compiled. +[23:13:31] Exporting PumpsControl as XML... +[23:13:32] 2025-05-02 23:13:32,033 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PumpsControl exported successfully +[23:13:32] 2025-05-02 23:13:32,037 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PumpsControl exported successfully +[23:13:32] Processing block: Safeties... +[23:13:32] Compiling block Safeties... +[23:13:32] 2025-05-02 23:13:32,045 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block Safeties. Result: +[23:13:34] 2025-05-02 23:13:34,238 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:34] 2025-05-02 23:13:34,239 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:34] 2025-05-02 23:13:34,240 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > Safeties (FC2022) > Block was successfully compiled. +[23:13:34] Exporting Safeties as XML... +[23:13:34] 2025-05-02 23:13:34,733 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Safeties exported successfully +[23:13:34] 2025-05-02 23:13:34,743 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Safeties exported successfully +[23:13:34] Processing block: HMI_Device... +[23:13:34] Exporting HMI_Device as XML... +[23:13:34] 2025-05-02 23:13:34,848 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Device exported successfully +[23:13:34] 2025-05-02 23:13:34,852 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Device exported successfully +[23:13:34] Processing block: Prod Tank PressCtrl... +[23:13:34] Exporting Prod Tank PressCtrl as XML... +[23:13:34] 2025-05-02 23:13:34,996 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank PressCtrl exported successfully +[23:13:35] 2025-05-02 23:13:35,010 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank PressCtrl exported successfully +[23:13:35] Processing block: BlenderPIDCtrl__Loop... +[23:13:35] Exporting BlenderPIDCtrl__Loop as XML... +[23:13:35] 2025-05-02 23:13:35,104 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl__Loop exported successfully +[23:13:35] 2025-05-02 23:13:35,105 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl__Loop exported successfully +[23:13:35] Processing block: PID_Filling_Head... +[23:13:35] Exporting PID_Filling_Head as XML... +[23:13:35] 2025-05-02 23:13:35,309 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head exported successfully +[23:13:35] 2025-05-02 23:13:35,341 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head exported successfully +[23:13:35] Processing block: TankLevel... +[23:13:35] Exporting TankLevel as XML... +[23:13:35] 2025-05-02 23:13:35,560 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: TankLevel exported successfully +[23:13:35] 2025-05-02 23:13:35,569 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - TankLevel exported successfully +[23:13:35] Processing block: BlenderPID_ActualRecipe... +[23:13:35] Exporting BlenderPID_ActualRecipe as XML... +[23:13:35] 2025-05-02 23:13:35,676 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_ActualRecipe exported successfully +[23:13:35] 2025-05-02 23:13:35,679 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_ActualRecipe exported successfully +[23:13:35] Exporting BlenderPID_ActualRecipe as SCL... +[23:13:35] 2025-05-02 23:13:35,757 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_ActualRecipe external source successfully generated +[23:13:35] Processing block: RecipeManagement - Prod... +[23:13:35] Exporting RecipeManagement - Prod as XML... +[23:13:36] 2025-05-02 23:13:36,052 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement - Prod exported successfully +[23:13:36] 2025-05-02 23:13:36,068 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement - Prod exported successfully +[23:13:36] Processing block: Recipe #47... +[23:13:36] Exporting Recipe #47 as XML... +[23:13:36] 2025-05-02 23:13:36,151 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #47 exported successfully +[23:13:36] 2025-05-02 23:13:36,161 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #47 exported successfully +[23:13:36] Processing block: Recipe #44... +[23:13:36] Exporting Recipe #44 as XML... +[23:13:36] 2025-05-02 23:13:36,222 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #44 exported successfully +[23:13:36] 2025-05-02 23:13:36,224 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #44 exported successfully +[23:13:36] Processing block: Recipe #40... +[23:13:36] Exporting Recipe #40 as XML... +[23:13:36] 2025-05-02 23:13:36,278 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #40 exported successfully +[23:13:36] 2025-05-02 23:13:36,280 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #40 exported successfully +[23:13:36] Processing block: Output... +[23:13:36] Compiling block Output... +[23:13:36] 2025-05-02 23:13:36,290 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block Output. Result: +[23:13:39] 2025-05-02 23:13:39,073 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:39] 2025-05-02 23:13:39,074 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:39] 2025-05-02 23:13:39,075 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > Output (FC2026) > Block was successfully compiled. +[23:13:39] Exporting Output as XML... +[23:13:39] 2025-05-02 23:13:39,919 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Output exported successfully +[23:13:39] 2025-05-02 23:13:39,945 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Output exported successfully +[23:13:39] Processing block: Recipe #03... +[23:13:39] Exporting Recipe #03 as XML... +[23:13:40] 2025-05-02 23:13:40,009 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #03 exported successfully +[23:13:40] 2025-05-02 23:13:40,018 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #03 exported successfully +[23:13:40] Processing block: Recipe #04... +[23:13:40] Exporting Recipe #04 as XML... +[23:13:40] 2025-05-02 23:13:40,062 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #04 exported successfully +[23:13:40] 2025-05-02 23:13:40,066 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #04 exported successfully +[23:13:40] Processing block: Recipe #09... +[23:13:40] Exporting Recipe #09 as XML... +[23:13:40] 2025-05-02 23:13:40,110 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #09 exported successfully +[23:13:40] 2025-05-02 23:13:40,112 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #09 exported successfully +[23:13:40] Processing block: Recipe #10... +[23:13:40] Exporting Recipe #10 as XML... +[23:13:40] 2025-05-02 23:13:40,155 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #10 exported successfully +[23:13:40] 2025-05-02 23:13:40,157 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #10 exported successfully +[23:13:40] Processing block: Recipe #11... +[23:13:40] Exporting Recipe #11 as XML... +[23:13:40] 2025-05-02 23:13:40,209 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #11 exported successfully +[23:13:40] 2025-05-02 23:13:40,210 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #11 exported successfully +[23:13:40] Processing block: Recipe #12... +[23:13:40] Exporting Recipe #12 as XML... +[23:13:40] 2025-05-02 23:13:40,258 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #12 exported successfully +[23:13:40] 2025-05-02 23:13:40,260 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #12 exported successfully +[23:13:40] Processing block: Recipe #13... +[23:13:40] Exporting Recipe #13 as XML... +[23:13:40] 2025-05-02 23:13:40,313 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #13 exported successfully +[23:13:40] 2025-05-02 23:13:40,344 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #13 exported successfully +[23:13:40] Processing block: Recipe #14... +[23:13:40] Exporting Recipe #14 as XML... +[23:13:40] 2025-05-02 23:13:40,389 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #14 exported successfully +[23:13:40] 2025-05-02 23:13:40,393 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #14 exported successfully +[23:13:40] Processing block: Recipe #15... +[23:13:40] Exporting Recipe #15 as XML... +[23:13:40] 2025-05-02 23:13:40,440 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #15 exported successfully +[23:13:40] 2025-05-02 23:13:40,473 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #15 exported successfully +[23:13:40] Processing block: Recipe #16... +[23:13:40] Exporting Recipe #16 as XML... +[23:13:40] 2025-05-02 23:13:40,518 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #16 exported successfully +[23:13:40] 2025-05-02 23:13:40,521 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #16 exported successfully +[23:13:40] Processing block: Recipe #17... +[23:13:40] Exporting Recipe #17 as XML... +[23:13:40] 2025-05-02 23:13:40,581 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #17 exported successfully +[23:13:40] 2025-05-02 23:13:40,583 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #17 exported successfully +[23:13:40] Processing block: Recipe #22... +[23:13:40] Exporting Recipe #22 as XML... +[23:13:40] 2025-05-02 23:13:40,638 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #22 exported successfully +[23:13:40] 2025-05-02 23:13:40,640 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #22 exported successfully +[23:13:40] Processing block: Recipe #23... +[23:13:40] Exporting Recipe #23 as XML... +[23:13:40] 2025-05-02 23:13:40,693 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #23 exported successfully +[23:13:40] 2025-05-02 23:13:40,704 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #23 exported successfully +[23:13:40] Processing block: Recipe #24... +[23:13:40] Exporting Recipe #24 as XML... +[23:13:40] 2025-05-02 23:13:40,772 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #24 exported successfully +[23:13:40] 2025-05-02 23:13:40,775 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #24 exported successfully +[23:13:40] Processing block: HMI_Blender_Parameters... +[23:13:40] Exporting HMI_Blender_Parameters as XML... +[23:13:40] 2025-05-02 23:13:40,847 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Blender_Parameters exported successfully +[23:13:40] 2025-05-02 23:13:40,863 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Blender_Parameters exported successfully +[23:13:40] Processing block: Recipe #27... +[23:13:40] Exporting Recipe #27 as XML... +[23:13:40] 2025-05-02 23:13:40,929 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #27 exported successfully +[23:13:40] 2025-05-02 23:13:40,954 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #27 exported successfully +[23:13:40] Processing block: Recipe #33... +[23:13:40] Exporting Recipe #33 as XML... +[23:13:41] 2025-05-02 23:13:41,027 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #33 exported successfully +[23:13:41] 2025-05-02 23:13:41,029 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #33 exported successfully +[23:13:41] Processing block: Recipe #34... +[23:13:41] Exporting Recipe #34 as XML... +[23:13:41] 2025-05-02 23:13:41,104 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #34 exported successfully +[23:13:41] 2025-05-02 23:13:41,108 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #34 exported successfully +[23:13:41] Processing block: Recipe #19... +[23:13:41] Exporting Recipe #19 as XML... +[23:13:41] 2025-05-02 23:13:41,162 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #19 exported successfully +[23:13:41] 2025-05-02 23:13:41,164 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #19 exported successfully +[23:13:41] Processing block: Recipe #20... +[23:13:41] Exporting Recipe #20 as XML... +[23:13:41] 2025-05-02 23:13:41,210 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #20 exported successfully +[23:13:41] 2025-05-02 23:13:41,212 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #20 exported successfully +[23:13:41] Processing block: Recipe #30... +[23:13:41] Exporting Recipe #30 as XML... +[23:13:41] 2025-05-02 23:13:41,273 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #30 exported successfully +[23:13:41] 2025-05-02 23:13:41,275 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #30 exported successfully +[23:13:41] Processing block: Recipe #38... +[23:13:41] Exporting Recipe #38 as XML... +[23:13:41] 2025-05-02 23:13:41,365 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #38 exported successfully +[23:13:41] 2025-05-02 23:13:41,367 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #38 exported successfully +[23:13:41] Processing block: Recipe #21... +[23:13:41] Exporting Recipe #21 as XML... +[23:13:41] 2025-05-02 23:13:41,419 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #21 exported successfully +[23:13:41] 2025-05-02 23:13:41,421 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #21 exported successfully +[23:13:41] Processing block: Recipe #25... +[23:13:41] Exporting Recipe #25 as XML... +[23:13:41] 2025-05-02 23:13:41,487 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #25 exported successfully +[23:13:41] 2025-05-02 23:13:41,490 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #25 exported successfully +[23:13:41] Processing block: Recipe #01... +[23:13:41] Exporting Recipe #01 as XML... +[23:13:41] 2025-05-02 23:13:41,548 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #01 exported successfully +[23:13:41] 2025-05-02 23:13:41,550 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #01 exported successfully +[23:13:41] Processing block: BlenderPIDCtrl_WriteAnOu... +[23:13:41] Compiling block BlenderPIDCtrl_WriteAnOu... +[23:13:41] 2025-05-02 23:13:41,641 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block BlenderPIDCtrl_WriteAnOu. Result: +[23:13:43] 2025-05-02 23:13:43,568 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:43] 2025-05-02 23:13:43,569 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:43] 2025-05-02 23:13:43,569 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Success: PLC > Program blocks > BlenderPIDCtrl_WriteAnOu (FC1925) > Block was successfully compiled. +[23:13:43] Exporting BlenderPIDCtrl_WriteAnOu as XML... +[23:13:43] 2025-05-02 23:13:43,758 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_WriteAnOu exported successfully +[23:13:43] 2025-05-02 23:13:43,771 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_WriteAnOu exported successfully +[23:13:43] Processing block: Recipe #28... +[23:13:43] Exporting Recipe #28 as XML... +[23:13:43] 2025-05-02 23:13:43,820 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #28 exported successfully +[23:13:43] 2025-05-02 23:13:43,822 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #28 exported successfully +[23:13:43] Processing block: Recipe #29... +[23:13:43] Exporting Recipe #29 as XML... +[23:13:43] 2025-05-02 23:13:43,878 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #29 exported successfully +[23:13:43] 2025-05-02 23:13:43,880 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #29 exported successfully +[23:13:43] Processing block: Recipe #31... +[23:13:43] Exporting Recipe #31 as XML... +[23:13:43] 2025-05-02 23:13:43,941 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #31 exported successfully +[23:13:43] 2025-05-02 23:13:43,943 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #31 exported successfully +[23:13:43] Processing block: Recipe #32... +[23:13:43] Exporting Recipe #32 as XML... +[23:13:44] 2025-05-02 23:13:44,004 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #32 exported successfully +[23:13:44] 2025-05-02 23:13:44,006 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #32 exported successfully +[23:13:44] Processing block: Recipe #35... +[23:13:44] Exporting Recipe #35 as XML... +[23:13:44] 2025-05-02 23:13:44,095 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #35 exported successfully +[23:13:44] 2025-05-02 23:13:44,097 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #35 exported successfully +[23:13:44] Processing block: Recipe #36... +[23:13:44] Exporting Recipe #36 as XML... +[23:13:44] 2025-05-02 23:13:44,156 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #36 exported successfully +[23:13:44] 2025-05-02 23:13:44,159 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #36 exported successfully +[23:13:44] Processing block: Recipe #37... +[23:13:44] Exporting Recipe #37 as XML... +[23:13:44] 2025-05-02 23:13:44,209 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #37 exported successfully +[23:13:44] 2025-05-02 23:13:44,211 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #37 exported successfully +[23:13:44] Processing block: Recipe #39... +[23:13:44] Exporting Recipe #39 as XML... +[23:13:44] 2025-05-02 23:13:44,267 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #39 exported successfully +[23:13:44] 2025-05-02 23:13:44,270 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #39 exported successfully +[23:13:44] Processing block: Recipe #41... +[23:13:44] Exporting Recipe #41 as XML... +[23:13:44] 2025-05-02 23:13:44,345 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #41 exported successfully +[23:13:44] 2025-05-02 23:13:44,347 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #41 exported successfully +[23:13:44] Processing block: Recipe #42... +[23:13:44] Exporting Recipe #42 as XML... +[23:13:44] 2025-05-02 23:13:44,396 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #42 exported successfully +[23:13:44] 2025-05-02 23:13:44,397 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #42 exported successfully +[23:13:44] Processing block: Recipe #43... +[23:13:44] Exporting Recipe #43 as XML... +[23:13:44] 2025-05-02 23:13:44,456 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #43 exported successfully +[23:13:44] 2025-05-02 23:13:44,457 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #43 exported successfully +[23:13:44] Processing block: Recipe #45... +[23:13:44] Exporting Recipe #45 as XML... +[23:13:44] 2025-05-02 23:13:44,500 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #45 exported successfully +[23:13:44] 2025-05-02 23:13:44,502 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #45 exported successfully +[23:13:44] Processing block: Recipe #46... +[23:13:44] Exporting Recipe #46 as XML... +[23:13:44] 2025-05-02 23:13:44,543 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #46 exported successfully +[23:13:44] 2025-05-02 23:13:44,545 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #46 exported successfully +[23:13:44] Processing block: Recipe #48... +[23:13:44] Exporting Recipe #48 as XML... +[23:13:44] 2025-05-02 23:13:44,584 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #48 exported successfully +[23:13:44] 2025-05-02 23:13:44,586 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #48 exported successfully +[23:13:44] Processing block: Recipe #49... +[23:13:44] Exporting Recipe #49 as XML... +[23:13:44] 2025-05-02 23:13:44,643 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #49 exported successfully +[23:13:44] 2025-05-02 23:13:44,645 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #49 exported successfully +[23:13:44] Processing block: Recipe #18... +[23:13:44] Exporting Recipe #18 as XML... +[23:13:44] 2025-05-02 23:13:44,720 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #18 exported successfully +[23:13:44] 2025-05-02 23:13:44,722 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #18 exported successfully +[23:13:44] Processing block: Recipe #50... +[23:13:44] Exporting Recipe #50 as XML... +[23:13:44] 2025-05-02 23:13:44,778 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #50 exported successfully +[23:13:44] 2025-05-02 23:13:44,784 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #50 exported successfully +[23:13:44] Processing block: ISOonTCP_or_TCP_Protocol... +[23:13:44] Exporting ISOonTCP_or_TCP_Protocol as XML... +[23:13:44] 2025-05-02 23:13:44,931 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ISOonTCP_or_TCP_Protocol exported successfully +[23:13:44] 2025-05-02 23:13:44,938 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ISOonTCP_or_TCP_Protocol exported successfully +[23:13:44] Processing block: mPDS_PA_Control... +[23:13:44] Compiling block mPDS_PA_Control... +[23:13:44] 2025-05-02 23:13:44,947 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block mPDS_PA_Control. Result: +[23:13:46] 2025-05-02 23:13:46,134 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:46] 2025-05-02 23:13:46,135 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:46] Exporting mPDS_PA_Control as XML... +[23:13:46] 2025-05-02 23:13:46,263 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Control exported successfully +[23:13:46] 2025-05-02 23:13:46,275 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Control exported successfully +[23:13:46] Processing block: mPDS_PA_Ctrl_Parameters... +[23:13:46] Exporting mPDS_PA_Ctrl_Parameters as XML... +[23:13:46] 2025-05-02 23:13:46,359 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Ctrl_Parameters exported successfully +[23:13:46] 2025-05-02 23:13:46,360 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Ctrl_Parameters exported successfully +[23:13:46] Processing block: mPDS_PA_Ctrl_Read... +[23:13:46] Compiling block mPDS_PA_Ctrl_Read... +[23:13:46] 2025-05-02 23:13:46,369 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block mPDS_PA_Ctrl_Read. Result: +[23:13:47] 2025-05-02 23:13:47,515 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:47] 2025-05-02 23:13:47,517 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:47] Exporting mPDS_PA_Ctrl_Read as XML... +[23:13:47] 2025-05-02 23:13:47,643 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Ctrl_Read exported successfully +[23:13:47] 2025-05-02 23:13:47,653 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Ctrl_Read exported successfully +[23:13:47] Processing block: mPDS_PA_Ctrl_Transfer... +[23:13:47] Compiling block mPDS_PA_Ctrl_Transfer... +[23:13:47] 2025-05-02 23:13:47,661 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block mPDS_PA_Ctrl_Transfer. Result: +[23:13:48] 2025-05-02 23:13:48,764 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:48] 2025-05-02 23:13:48,765 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:48] Exporting mPDS_PA_Ctrl_Transfer as XML... +[23:13:48] 2025-05-02 23:13:48,839 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Ctrl_Transfer exported successfully +[23:13:48] 2025-05-02 23:13:48,849 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Ctrl_Transfer exported successfully +[23:13:48] Processing block: mPDS_PA_Ctrl_Write... +[23:13:48] Compiling block mPDS_PA_Ctrl_Write... +[23:13:48] 2025-05-02 23:13:48,856 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block mPDS_PA_Ctrl_Write. Result: +[23:13:50] 2025-05-02 23:13:50,175 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:50] 2025-05-02 23:13:50,177 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:50] Exporting mPDS_PA_Ctrl_Write as XML... +[23:13:50] 2025-05-02 23:13:50,331 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Ctrl_Write exported successfully +[23:13:50] 2025-05-02 23:13:50,356 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Ctrl_Write exported successfully +[23:13:50] Exporting mPDS_PA_Ctrl_Write as SCL... +[23:13:50] 2025-05-02 23:13:50,423 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block mPDS_PA_Ctrl_Write external source successfully generated +[23:13:50] Processing block: Output_AnalogValueToHMI... +[23:13:50] Exporting Output_AnalogValueToHMI as XML... +[23:13:50] 2025-05-02 23:13:50,569 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Output_AnalogValueToHMI exported successfully +[23:13:50] 2025-05-02 23:13:50,582 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Output_AnalogValueToHMI exported successfully +[23:13:50] Exporting Output_AnalogValueToHMI as SCL... +[23:13:50] 2025-05-02 23:13:50,660 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Output_AnalogValueToHMI external source successfully generated +[23:13:50] Processing block: mPDS_PA_Data... +[23:13:50] Exporting mPDS_PA_Data as XML... +[23:13:50] 2025-05-02 23:13:50,711 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Data exported successfully +[23:13:50] 2025-05-02 23:13:50,713 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Data exported successfully +[23:13:50] Processing block: mPDS_SYR_PA_Ctrl_Write... +[23:13:50] Compiling block mPDS_SYR_PA_Ctrl_Write... +[23:13:50] 2025-05-02 23:13:50,719 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block mPDS_SYR_PA_Ctrl_Write. Result: +[23:13:51] 2025-05-02 23:13:51,863 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[23:13:51] 2025-05-02 23:13:51,864 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: PLC > Compiling finished (errors: 0; warnings: 1) +[23:13:51] Exporting mPDS_SYR_PA_Ctrl_Write as XML... +[23:13:51] 2025-05-02 23:13:51,973 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Ctrl_Write exported successfully +[23:13:51] 2025-05-02 23:13:51,979 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Ctrl_Write exported successfully +[23:13:51] Exporting mPDS_SYR_PA_Ctrl_Write as SCL... +[23:13:52] 2025-05-02 23:13:52,037 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block mPDS_SYR_PA_Ctrl_Write external source successfully generated +[23:13:52] Processing block: mPDS_SYR_PA_Ctrl_Trans... +[23:13:52] Exporting mPDS_SYR_PA_Ctrl_Trans as XML... +[23:13:52] 2025-05-02 23:13:52,120 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Ctrl_Trans exported successfully +[23:13:52] 2025-05-02 23:13:52,122 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Ctrl_Trans exported successfully +[23:13:52] Processing block: mPDS_SYR_PA_Ctrl_Param... +[23:13:52] Exporting mPDS_SYR_PA_Ctrl_Param as XML... +[23:13:52] 2025-05-02 23:13:52,171 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Ctrl_Param exported successfully +[23:13:52] 2025-05-02 23:13:52,173 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Ctrl_Param exported successfully +[23:13:52] Processing block: mPDS_SYR_PA_Data... +[23:13:52] Exporting mPDS_SYR_PA_Data as XML... +[23:13:52] 2025-05-02 23:13:52,227 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Data exported successfully +[23:13:52] 2025-05-02 23:13:52,228 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Data exported successfully +[23:13:52] Processing block: GNS PLCdia MainRoutine... +[23:13:52] Exporting GNS PLCdia MainRoutine as XML... +[23:13:52] 2025-05-02 23:13:52,301 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS PLCdia MainRoutine exported successfully +[23:13:52] 2025-05-02 23:13:52,303 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS PLCdia MainRoutine exported successfully +[23:13:52] Processing block: GNS PLCdia Profinet... +[23:13:52] Exporting GNS PLCdia Profinet as XML... +[23:13:52] 2025-05-02 23:13:52,402 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS PLCdia Profinet exported successfully +[23:13:52] 2025-05-02 23:13:52,413 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS PLCdia Profinet exported successfully +[23:13:52] Processing block: GNS PLCdia Profibus... +[23:13:52] Exporting GNS PLCdia Profibus as XML... +[23:13:52] 2025-05-02 23:13:52,529 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS PLCdia Profibus exported successfully +[23:13:52] 2025-05-02 23:13:52,540 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS PLCdia Profibus exported successfully +[23:13:52] Processing block: GNS PLCdia ProfibusData... +[23:13:52] Exporting GNS PLCdia ProfibusData as XML... +[23:13:52] 2025-05-02 23:13:52,624 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS PLCdia ProfibusData exported successfully +[23:13:52] 2025-05-02 23:13:52,627 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS PLCdia ProfibusData exported successfully +[23:13:52] Processing block: GNS PLCdia ProfinetData... +[23:13:52] Exporting GNS PLCdia ProfinetData as XML... +[23:13:52] 2025-05-02 23:13:52,700 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS PLCdia ProfinetData exported successfully +[23:13:52] 2025-05-02 23:13:52,709 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS PLCdia ProfinetData exported successfully +[23:13:52] Program Blocks Export Summary: Exported=378, Skipped/Errors=2 +[23:13:52] [PLC: PLC] Exporting PLC Data Types (UDTs)... +[23:13:52] Target: C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport\PLC\PlcDataTypes +[23:13:52] Found 24 UDTs. +[23:13:52] Processing UDT: AnalogInstrument... +[23:13:52] Exporting AnalogInstrument... +[23:13:52] 2025-05-02 23:13:52,950 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: AnalogInstrument exported successfully +[23:13:52] 2025-05-02 23:13:52,959 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - AnalogInstrument exported successfully +[23:13:52] Processing UDT: CIP_Link_Type... +[23:13:52] Exporting CIP_Link_Type... +[23:13:53] 2025-05-02 23:13:53,013 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: CIP_Link_Type exported successfully +[23:13:53] 2025-05-02 23:13:53,021 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - CIP_Link_Type exported successfully +[23:13:53] Processing UDT: CIP_Simple_Type... +[23:13:53] Exporting CIP_Simple_Type... +[23:13:53] 2025-05-02 23:13:53,074 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: CIP_Simple_Type exported successfully +[23:13:53] 2025-05-02 23:13:53,082 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - CIP_Simple_Type exported successfully +[23:13:53] Processing UDT: CIP_Step_Type... +[23:13:53] Exporting CIP_Step_Type... +[23:13:53] 2025-05-02 23:13:53,124 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: CIP_Step_Type exported successfully +[23:13:53] 2025-05-02 23:13:53,127 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - CIP_Step_Type exported successfully +[23:13:53] Processing UDT: CIP_WaitEvent_Type... +[23:13:53] Exporting CIP_WaitEvent_Type... +[23:13:53] 2025-05-02 23:13:53,165 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: CIP_WaitEvent_Type exported successfully +[23:13:53] 2025-05-02 23:13:53,167 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - CIP_WaitEvent_Type exported successfully +[23:13:53] Processing UDT: Device... +[23:13:53] Exporting Device... +[23:13:53] 2025-05-02 23:13:53,205 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: Device exported successfully +[23:13:53] 2025-05-02 23:13:53,207 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - Device exported successfully +[23:13:53] Processing UDT: DigitalInstrument... +[23:13:53] Exporting DigitalInstrument... +[23:13:53] 2025-05-02 23:13:53,246 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: DigitalInstrument exported successfully +[23:13:53] 2025-05-02 23:13:53,248 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - DigitalInstrument exported successfully +[23:13:53] Processing UDT: FunctionButton... +[23:13:53] Exporting FunctionButton... +[23:13:53] 2025-05-02 23:13:53,282 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: FunctionButton exported successfully +[23:13:53] 2025-05-02 23:13:53,285 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - FunctionButton exported successfully +[23:13:53] Processing UDT: PID... +[23:13:53] Exporting PID... +[23:13:53] 2025-05-02 23:13:53,321 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: PID exported successfully +[23:13:53] 2025-05-02 23:13:53,343 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PID exported successfully +[23:13:53] Processing UDT: QCO Phase... +[23:13:53] Exporting QCO Phase... +[23:13:53] 2025-05-02 23:13:53,379 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: QCO Phase exported successfully +[23:13:53] 2025-05-02 23:13:53,380 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - QCO Phase exported successfully +[23:13:53] Processing UDT: QCO Spare... +[23:13:53] Exporting QCO Spare... +[23:13:53] 2025-05-02 23:13:53,412 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: QCO Spare exported successfully +[23:13:53] 2025-05-02 23:13:53,413 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - QCO Spare exported successfully +[23:13:53] Processing UDT: QCO Timer... +[23:13:53] Exporting QCO Timer... +[23:13:53] 2025-05-02 23:13:53,446 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: QCO Timer exported successfully +[23:13:53] 2025-05-02 23:13:53,448 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - QCO Timer exported successfully +[23:13:53] Processing UDT: QCO Timer_Array_1... +[23:13:53] Exporting QCO Timer_Array_1... +[23:13:53] 2025-05-02 23:13:53,481 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: QCO Timer_Array_1 exported successfully +[23:13:53] 2025-05-02 23:13:53,482 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - QCO Timer_Array_1 exported successfully +[23:13:53] Processing UDT: Recipe_Prod... +[23:13:53] Exporting Recipe_Prod... +[23:13:53] 2025-05-02 23:13:53,527 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: Recipe_Prod exported successfully +[23:13:53] 2025-05-02 23:13:53,528 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - Recipe_Prod exported successfully +[23:13:53] Processing UDT: ReportCIPSimpleData... +[23:13:53] Exporting ReportCIPSimpleData... +[23:13:53] 2025-05-02 23:13:53,561 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: ReportCIPSimpleData exported successfully +[23:13:53] 2025-05-02 23:13:53,563 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - ReportCIPSimpleData exported successfully +[23:13:53] Processing UDT: TADDR_PAR... +[23:13:53] Exporting TADDR_PAR... +[23:13:53] 2025-05-02 23:13:53,597 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: TADDR_PAR exported successfully +[23:13:53] 2025-05-02 23:13:53,599 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - TADDR_PAR exported successfully +[23:13:53] Processing UDT: TCON_PAR... +[23:13:53] Exporting TCON_PAR... +[23:13:53] 2025-05-02 23:13:53,633 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: TCON_PAR exported successfully +[23:13:53] 2025-05-02 23:13:53,635 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - TCON_PAR exported successfully +[23:13:53] Processing UDT: TCON_PAR_LF... +[23:13:53] Exporting TCON_PAR_LF... +[23:13:53] 2025-05-02 23:13:53,663 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: TCON_PAR_LF exported successfully +[23:13:53] 2025-05-02 23:13:53,664 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - TCON_PAR_LF exported successfully +[23:13:53] Processing UDT: Tipo di dati utente_1... +[23:13:53] Exporting Tipo di dati utente_1... +[23:13:53] 2025-05-02 23:13:53,695 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: Tipo di dati utente_1 exported successfully +[23:13:53] 2025-05-02 23:13:53,696 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - Tipo di dati utente_1 exported successfully +[23:13:53] Processing UDT: Tipo di dati utente_2... +[23:13:53] Exporting Tipo di dati utente_2... +[23:13:53] 2025-05-02 23:13:53,734 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: Tipo di dati utente_2 exported successfully +[23:13:53] 2025-05-02 23:13:53,735 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - Tipo di dati utente_2 exported successfully +[23:13:53] Processing UDT: ASLeds... +[23:13:53] Exporting ASLeds... +[23:13:53] 2025-05-02 23:13:53,744 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type ASLeds is know how protected, so ignore this +[23:13:53] 2025-05-02 23:13:53,745 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - ASLeds exported successfully +[23:13:53] Processing UDT: IFLeds... +[23:13:53] Exporting IFLeds... +[23:13:53] 2025-05-02 23:13:53,754 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type IFLeds is know how protected, so ignore this +[23:13:53] 2025-05-02 23:13:53,755 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - IFLeds exported successfully +[23:13:53] Processing UDT: SV_FB_State... +[23:13:53] Exporting SV_FB_State... +[23:13:53] 2025-05-02 23:13:53,763 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type SV_FB_State is know how protected, so ignore this +[23:13:53] 2025-05-02 23:13:53,764 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - SV_FB_State exported successfully +[23:13:53] Processing UDT: SV_State... +[23:13:53] Exporting SV_State... +[23:13:53] 2025-05-02 23:13:53,771 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type SV_State is know how protected, so ignore this +[23:13:53] 2025-05-02 23:13:53,773 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - SV_State exported successfully +[23:13:53] UDT Export Summary: Exported=24, Skipped/Errors=0 +[23:13:53] [PLC: PLC] Exporting PLC Tag Tables... +[23:13:53] Target: C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport\PLC\PlcTags +[23:13:53] Found 10 Tag Tables. +[23:13:53] Processing Tag Table: Memories... +[23:13:53] Exporting Memories... +[23:13:55] 2025-05-02 23:13:55,549 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Memories exported successfully +[23:13:55] 2025-05-02 23:13:55,569 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Memories exported successfully +[23:13:55] Processing Tag Table: Tabella delle variabili standard... +[23:13:55] Exporting Tabella delle variabili standard... +[23:13:55] 2025-05-02 23:13:55,711 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Tabella delle variabili standard exported successfully +[23:13:55] 2025-05-02 23:13:55,729 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Tabella delle variabili standard exported successfully +[23:13:55] Processing Tag Table: Timers_Counters... +[23:13:55] Exporting Timers_Counters... +[23:13:55] 2025-05-02 23:13:55,969 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Timers_Counters exported successfully +[23:13:55] 2025-05-02 23:13:55,978 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Timers_Counters exported successfully +[23:13:55] Processing Tag Table: Inputs... +[23:13:55] Exporting Inputs... +[23:13:56] 2025-05-02 23:13:56,166 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Inputs exported successfully +[23:13:56] 2025-05-02 23:13:56,177 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Inputs exported successfully +[23:13:56] Processing Tag Table: Outputs... +[23:13:56] Exporting Outputs... +[23:13:56] 2025-05-02 23:13:56,241 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Outputs exported successfully +[23:13:56] 2025-05-02 23:13:56,257 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Outputs exported successfully +[23:13:56] Processing Tag Table: Tabella delle variabili_1... +[23:13:56] Exporting Tabella delle variabili_1... +[23:13:56] 2025-05-02 23:13:56,280 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Tabella delle variabili_1 exported successfully +[23:13:56] 2025-05-02 23:13:56,282 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Tabella delle variabili_1 exported successfully +[23:13:56] Processing Tag Table: Tabella delle variabili_2... +[23:13:56] Exporting Tabella delle variabili_2... +[23:13:56] 2025-05-02 23:13:56,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Tabella delle variabili_2 exported successfully +[23:13:56] 2025-05-02 23:13:56,307 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Tabella delle variabili_2 exported successfully +[23:13:56] Processing Tag Table: OutputsFesto... +[23:13:56] Exporting OutputsFesto... +[23:13:56] 2025-05-02 23:13:56,399 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: OutputsFesto exported successfully +[23:13:56] 2025-05-02 23:13:56,423 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - OutputsFesto exported successfully +[23:13:56] Processing Tag Table: InputsMaster... +[23:13:56] Exporting InputsMaster... +[23:13:56] 2025-05-02 23:13:56,665 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: InputsMaster exported successfully +[23:13:56] 2025-05-02 23:13:56,690 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - InputsMaster exported successfully +[23:13:56] Processing Tag Table: OutputsMaster... +[23:13:56] Exporting OutputsMaster... +[23:13:56] 2025-05-02 23:13:56,931 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: OutputsMaster exported successfully +[23:13:56] 2025-05-02 23:13:56,937 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - OutputsMaster exported successfully +[23:13:56] Tag Table Export Summary: Exported=10, Skipped/Errors=0 +[23:13:56] --- Finished processing PLC: PLC --- +[23:13:56] Export process completed. +[23:13:56] Closing TIA Portal... +[23:13:56] 2025-05-02 23:13:56,939 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal ClosePortal - Close TIA Portal +[23:13:57] TIA Portal closed. +[23:13:57] Script finished. +[23:14:11] ERROR: 2025-05-02 23:12:15,216 [1] ERROR Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - +[23:14:11] Siemens.TiaPortal.OpennessContracts.OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.OB'. +[23:14:11] Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.OB'. +[23:14:11] The programming language 'ProDiag_OB' is not supported during import and export. +[23:14:11] 2025-05-02 23:13:08,667 [1] ERROR Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - +[23:14:11] Siemens.TiaPortal.OpennessContracts.OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.FB'. +[23:14:11] Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.FB'. +[23:14:11] The programming language 'ProDiag' is not supported during import and export. +[23:14:11] Ejecución completada diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..21e4a40 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,15 @@ +flask +flask-sock +lxml +pandas +google-cloud-translate +openai +ollama +langid +openpyxl +beautifulsoup4 +requests +mammoth +html2text +pypandoc +# siemens-tia-scripting # Requiere instalación especial de TIA Portal Openness \ No newline at end of file