From ffabf6b2b0fd6be9858e5ecb3e097ca0f6cdf840 Mon Sep 17 00:00:00 2001 From: Miguel Date: Mon, 19 May 2025 18:21:28 +0200 Subject: [PATCH] Add functionality to open current working directory in file explorer - Implemented a new button in the UI to open the current working directory in the file explorer. - Added event listener for the new button that triggers an API call to open the directory. - Included validation to ensure a group is selected and the working directory is set before attempting to open the explorer. - Created a new JSON description file for the CSharpCodeMerger script group. --- app.py | 49 +- .../CSharpCodeMerger/description.json | 6 + .../script_groups/EmailCrono/description.json | 2 +- backend/script_groups/EmailCrono/log_x1.txt | 34 +- .../EmailCrono/script_config.json | 4 +- .../script_groups/EmailCrono/work_dir.json | 6 +- .../IO_adaptation/description.json | 2 +- .../script_groups/ImportHTML/description.json | 4 +- .../ObtainIOFromProjectTia/description.json | 4 +- .../ObtainIOFromProjectTia/log_x1.txt | 3314 ++++++++--------- .../ObtainIOFromProjectTia/script_config.json | 2 +- .../scripts_description.json | 4 +- .../ObtainIOFromProjectTia/work_dir.json | 3 +- .../S7_DB_Utils/description.json | 2 +- .../S7_DB_Utils/log_x7_value_updater.txt | 26 +- .../XML Parser to SCL/description.json | 2 +- .../scripts_description.json | 2 +- .../example_group/description.json | 2 +- data/log.txt | 1675 ++++++++- static/js/scripts.js | 42 + templates/index.html | 3 + 21 files changed, 3095 insertions(+), 2093 deletions(-) create mode 100644 backend/script_groups/CSharpCodeMerger/description.json diff --git a/app.py b/app.py index bd8a5ea..1717daa 100644 --- a/app.py +++ b/app.py @@ -5,6 +5,7 @@ import os import json # Added import from datetime import datetime import time # Added for shutdown delay +import sys # Added for platform detection import subprocess # Add this to the imports at the top # --- Imports for System Tray Icon --- @@ -109,7 +110,10 @@ def execute_script(): @app.route("/") def index(): script_groups = config_manager.get_script_groups() - return render_template("index.html", script_groups=script_groups) + # Para ordenar una lista de diccionarios, necesitamos especificar una clave. + # Asumimos que cada diccionario tiene una clave 'name' por la cual ordenar. + sorted_script_groups = sorted(script_groups, key=lambda group: group['name']) + return render_template("index.html", script_groups=sorted_script_groups) @app.route("/api/config/", methods=["GET", "POST"]) @@ -391,6 +395,49 @@ def open_miniconda_console(): ) +@app.route("/api/open-explorer", methods=["POST"]) +def open_explorer_route(): + data = request.json + frontend_path = data.get("path") + group = data.get("group") + + if not group: + return jsonify({"status": "error", "message": "Grupo no proporcionado."}), 400 + if not frontend_path: + return jsonify({"status": "error", "message": "Ruta no proporcionada."}), 400 + + # Obtener el directorio de trabajo configurado y normalizado para el grupo + configured_work_dir_raw = config_manager.get_work_dir(group) + if not configured_work_dir_raw: + return jsonify({"status": "error", "message": f"No hay directorio de trabajo configurado para el grupo '{group}'."}), 404 + + configured_work_dir_abs = os.path.abspath(configured_work_dir_raw) + frontend_path_abs = os.path.abspath(frontend_path) + + # Validar que la ruta del frontend coincide con la ruta configurada + if configured_work_dir_abs != frontend_path_abs: + print(f"Intento de acceso no válido: Grupo '{group}', Frontend Path '{frontend_path_abs}', Configured Path '{configured_work_dir_abs}'") + return jsonify({"status": "error", "message": "La ruta proporcionada no coincide con el directorio de trabajo seguro para este grupo."}), 403 + + # Validar que la ruta (ahora sabemos que es la configurada) realmente existe + if not os.path.isdir(configured_work_dir_abs): + return jsonify({"status": "error", "message": f"El directorio de trabajo configurado '{configured_work_dir_abs}' no es un directorio válido o no existe."}), 400 + + try: + if sys.platform == "win32": + os.startfile(configured_work_dir_abs) + elif sys.platform == "darwin": # macOS + subprocess.Popen(["open", configured_work_dir_abs]) + else: # linux variants + subprocess.Popen(["xdg-open", configured_work_dir_abs]) + + return jsonify({"status": "success", "message": f"Abriendo '{configured_work_dir_abs}' en el explorador."}) + except Exception as e: + error_msg = f"Error al abrir el explorador en '{configured_work_dir_abs}': {str(e)}" + print(error_msg) + return jsonify({"status": "error", "message": error_msg}), 500 + + # --- System Tray Icon Functions --- diff --git a/backend/script_groups/CSharpCodeMerger/description.json b/backend/script_groups/CSharpCodeMerger/description.json new file mode 100644 index 0000000..c78a63b --- /dev/null +++ b/backend/script_groups/CSharpCodeMerger/description.json @@ -0,0 +1,6 @@ +{ + "name": "Code : 01 : CSharpCodeMerger", + "description": "Sin descripción", + "version": "1.0", + "author": "Unknown" +} \ No newline at end of file diff --git a/backend/script_groups/EmailCrono/description.json b/backend/script_groups/EmailCrono/description.json index b6f7dae..07140f7 100644 --- a/backend/script_groups/EmailCrono/description.json +++ b/backend/script_groups/EmailCrono/description.json @@ -1,5 +1,5 @@ { - "name": "Desempaquetado de Emails EML", + "name": "Emails : Desempaquetado de Emails EML", "description": "This script processes email files (.eml) into a chronological narrative in Markdown format, optimized for processing with Large Language Models (LLMs). It extracts essential information from emails while removing unnecessary metadata, creating a clean, temporal narrative that can be easily analyzed. ", "version": "1.0", "author": "Miguel" diff --git a/backend/script_groups/EmailCrono/log_x1.txt b/backend/script_groups/EmailCrono/log_x1.txt index b8d5154..e9d1f72 100644 --- a/backend/script_groups/EmailCrono/log_x1.txt +++ b/backend/script_groups/EmailCrono/log_x1.txt @@ -1,33 +1,39 @@ --- Log de Ejecución: x1.py --- Grupo: EmailCrono -Directorio de Trabajo: C:\Trabajo\SIDEL\10 - E5.007095 - Modifica O&U - SAE463\Reporte\Email -Inicio: 2025-05-09 16:58:28 -Fin: 2025-05-09 16:58:29 -Duración: 0:00:00.434600 +Directorio de Trabajo: C:\Trabajo\SIDEL\12 - SAE052 - Syrup Update & GSD Update\Reporte\Emails +Inicio: 2025-05-18 16:00:44 +Fin: 2025-05-18 16:00:44 +Duración: 0:00:00.445734 Estado: SUCCESS (Código de Salida: 0) --- SALIDA ESTÁNDAR (STDOUT) --- -Working directory: C:\Trabajo\SIDEL\10 - E5.007095 - Modifica O&U - SAE463\Reporte\Email -Input directory: C:\Trabajo\SIDEL\10 - E5.007095 - Modifica O&U - SAE463\Reporte\Email -Output directory: C:/Users/migue/OneDrive/Miguel/Obsidean/Trabajo/VM/04-SIDEL/10 - E5.007095 - Modifica O&U - SAE463 -Cronologia file: C:/Users/migue/OneDrive/Miguel/Obsidean/Trabajo/VM/04-SIDEL/10 - E5.007095 - Modifica O&U - SAE463\cronologia.md -Attachments directory: C:\Trabajo\SIDEL\10 - E5.007095 - Modifica O&U - SAE463\Reporte\Email\adjuntos +Working directory: C:\Trabajo\SIDEL\12 - SAE052 - Syrup Update & GSD Update\Reporte\Emails +Input directory: C:\Trabajo\SIDEL\12 - SAE052 - Syrup Update & GSD Update\Reporte\Emails +Output directory: C:/Users/migue/OneDrive/Miguel/Obsidean/Trabajo/VM/04-SIDEL/12 - SAE052 - Syrup Update & GSD Update +Cronologia file: C:/Users/migue/OneDrive/Miguel/Obsidean/Trabajo/VM/04-SIDEL/12 - SAE052 - Syrup Update & GSD Update\cronologia.md +Attachments directory: C:\Trabajo\SIDEL\12 - SAE052 - Syrup Update & GSD Update\Reporte\Emails\adjuntos Beautify rules file: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\EmailCrono\config\beautify_rules.json -Found 1 .eml files +Found 2 .eml files Loaded 0 existing messages -Processing C:\Trabajo\SIDEL\10 - E5.007095 - Modifica O&U - SAE463\Reporte\Email\R_ {EXT} E5.006894 - Modifica O&U - SAE463 New Analyzer.eml +Processing C:\Trabajo\SIDEL\12 - SAE052 - Syrup Update & GSD Update\Reporte\Emails\I_ Backup SAE052.eml +Aplicando reglas de prioridad 1 +Aplicando reglas de prioridad 2 +Aplicando reglas de prioridad 3 +Aplicando reglas de prioridad 4 + +Processing C:\Trabajo\SIDEL\12 - SAE052 - Syrup Update & GSD Update\Reporte\Emails\Parametri Modificati SAE052.eml Aplicando reglas de prioridad 1 Aplicando reglas de prioridad 2 Aplicando reglas de prioridad 3 Aplicando reglas de prioridad 4 Estadísticas de procesamiento: -- Total mensajes encontrados: 1 -- Mensajes únicos añadidos: 1 +- Total mensajes encontrados: 2 +- Mensajes únicos añadidos: 2 - Mensajes duplicados ignorados: 0 -Writing 1 messages to C:/Users/migue/OneDrive/Miguel/Obsidean/Trabajo/VM/04-SIDEL/10 - E5.007095 - Modifica O&U - SAE463\cronologia.md +Writing 2 messages to C:/Users/migue/OneDrive/Miguel/Obsidean/Trabajo/VM/04-SIDEL/12 - SAE052 - Syrup Update & GSD Update\cronologia.md --- ERRORES (STDERR) --- Ninguno diff --git a/backend/script_groups/EmailCrono/script_config.json b/backend/script_groups/EmailCrono/script_config.json index 4bb356e..1924b7a 100644 --- a/backend/script_groups/EmailCrono/script_config.json +++ b/backend/script_groups/EmailCrono/script_config.json @@ -8,7 +8,7 @@ "cronologia_file": "cronologia.md" }, "level3": { - "output_directory": "C:/Users/migue/OneDrive/Miguel/Obsidean/Trabajo/VM/04-SIDEL/10 - E5.007095 - Modifica O&U - SAE463" + "output_directory": "C:/Users/migue/OneDrive/Miguel/Obsidean/Trabajo/VM/04-SIDEL/12 - SAE052 - Syrup Update & GSD Update" }, - "working_directory": "C:\\Trabajo\\SIDEL\\10 - E5.007095 - Modifica O&U - SAE463\\Reporte\\Email" + "working_directory": "C:\\Trabajo\\SIDEL\\12 - SAE052 - Syrup Update & GSD Update\\Reporte\\Emails" } \ No newline at end of file diff --git a/backend/script_groups/EmailCrono/work_dir.json b/backend/script_groups/EmailCrono/work_dir.json index 5e7fc04..fe0281d 100644 --- a/backend/script_groups/EmailCrono/work_dir.json +++ b/backend/script_groups/EmailCrono/work_dir.json @@ -1,6 +1,7 @@ { - "path": "C:\\Trabajo\\SIDEL\\10 - E5.007095 - Modifica O&U - SAE463\\Reporte\\Email", + "path": "C:\\Trabajo\\SIDEL\\12 - SAE052 - Syrup Update & GSD Update\\Reporte\\Emails", "history": [ + "C:\\Trabajo\\SIDEL\\12 - SAE052 - Syrup Update & GSD Update\\Reporte\\Emails", "C:\\Trabajo\\SIDEL\\10 - E5.007095 - Modifica O&U - SAE463\\Reporte\\Email", "C:\\Trabajo\\SIDEL\\08 - Masselli TEST\\Reporte\\EMAILs", "C:\\Trabajo\\SIDEL\\EMAILs\\I_ E5.007727 _ Evo On - SFSRFH300172 + SFSRFH300109 - ANDIA LACTEOS", @@ -9,7 +10,6 @@ "C:\\Trabajo\\VM\\30 - 9.3941- Kosme - Portogallo (Modifica + Linea)\\Reporte\\Emails", "C:\\Users\\migue\\OneDrive\\Miguel\\Obsidean\\Trabajo\\VM\\30 - 9.3941- Kosme - Portogallo (Modifica + Linea)\\Emails", "C:\\Trabajo\\VM\\40 - 93040 - HENKEL - NEXT2 Problem\\Reporte\\Emails\\Trial", - "C:\\Trabajo\\VM\\40 - 93040 - HENKEL - NEXT2 Problem\\Reporte\\Emails", - "C:\\Trabajo\\VM\\40 - 93040 - HENKEL - NEXT2 Problem\\Reporte\\Emails\\Error de tablas" + "C:\\Trabajo\\VM\\40 - 93040 - HENKEL - NEXT2 Problem\\Reporte\\Emails" ] } \ No newline at end of file diff --git a/backend/script_groups/IO_adaptation/description.json b/backend/script_groups/IO_adaptation/description.json index 8f48def..e2acafd 100644 --- a/backend/script_groups/IO_adaptation/description.json +++ b/backend/script_groups/IO_adaptation/description.json @@ -1,5 +1,5 @@ { - "name": "Scripts para adaptar IO de Hardware S7 a IO Master en Tia Portal", + "name": "Siemens-Tia : 01 : Scripts para adaptar IO de Hardware S7 a IO Master en Tia Portal", "description": "Este conjunto de scripts está diseñado para ayudar a los usuarios a adaptar el IO de Hardware S7 a un IO Master en Tia Portal. Incluye scripts para la creación de un nuevo proyecto, la importación de un proyecto existente y la adaptación del IO de Hardware S7 a un IO Master.", "version": "1.0", "author": "Miguel" diff --git a/backend/script_groups/ImportHTML/description.json b/backend/script_groups/ImportHTML/description.json index d991533..2b34566 100644 --- a/backend/script_groups/ImportHTML/description.json +++ b/backend/script_groups/ImportHTML/description.json @@ -1,6 +1,6 @@ { - "name": "Importación de Archivos HTML", + "name": "Obsidean : 01 : Importación de Archivos HTML", "description": "Este script procesa archivos HTML en un directorio y los convierte en un único archivo Markdown, extrayendo las imágenes a una carpeta de adjuntos y manteniendo los enlaces. También genera un índice al principio del archivo.", "version": "1.0", "author": "Miguel" -} +} \ No newline at end of file diff --git a/backend/script_groups/ObtainIOFromProjectTia/description.json b/backend/script_groups/ObtainIOFromProjectTia/description.json index c2d7146..df8da82 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/description.json +++ b/backend/script_groups/ObtainIOFromProjectTia/description.json @@ -1,6 +1,6 @@ { - "name": "Exportador de objetos de Tia Portal y procesador de CAx", - "description": "Este conjunto de scripts exporta desde Tia Portal los objetos en fomarto XML y los objetos CAx. Luego se puede generar documentacion desde estos CAx de la periferia IO del PLC exportado.", + "name": "Siemens-Tia : 02 : Exportador de objetos de Tia Portal en formato XML", + "description": "Este conjunto de scripts exporta desde Tia Portal los objetos en fomarto XML.", "version": "1.0", "author": "Miguel" } \ No newline at end of file diff --git a/backend/script_groups/ObtainIOFromProjectTia/log_x1.txt b/backend/script_groups/ObtainIOFromProjectTia/log_x1.txt index 12b0ea4..b959402 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/log_x1.txt +++ b/backend/script_groups/ObtainIOFromProjectTia/log_x1.txt @@ -1,1871 +1,1507 @@ --- Log de Ejecución: x1.py --- Grupo: ObtainIOFromProjectTia -Directorio de Trabajo: C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport -Inicio: 2025-05-05 12:37:26 -Fin: 2025-05-05 12:39:04 -Duración: 0:01:38.052083 +Directorio de Trabajo: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML +Inicio: 2025-05-19 18:04:31 +Fin: 2025-05-19 18:20:13 +Duración: 0:15:42.075469 Estado: SUCCESS (Código de Salida: 0) --- SALIDA ESTÁNDAR (STDOUT) --- --- TIA Portal Data Exporter (Blocks, UDTs, Tags) --- -Selected Project: C:/Trabajo/SIDEL/06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)/InLavoro/PLC/SAE196_c0.2/SAE196_c0.2.ap18 -Using Export Directory (Working Directory): C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport +Selected Project: C:/Trabajo/SIDEL/09 - SAE452 - Diet as Regular - San Giovanni in Bosco/Reporte/SourceDoc/Migration/SAE452/SAE452.ap18 +Using Export Directory (Working Directory): C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML Connecting to TIA Portal V18.0... -2025-05-05 12:37:30,500 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Global OpenPortal - Start TIA Portal, please acknowledge the security dialog. -2025-05-05 12:37:30,514 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Global OpenPortal - With user interface +2025-05-19 18:13:11,141 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Global OpenPortal - Start TIA Portal, please acknowledge the security dialog. +2025-05-19 18:13:11,190 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Global OpenPortal - With user interface Connected to TIA Portal. -2025-05-05 12:37:50,831 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal GetProcessId - Process id: 32060 -Portal Process ID: 32060 -Opening project: SAE196_c0.2.ap18... -2025-05-05 12:37:51,133 [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 +2025-05-19 18:14:01,844 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal GetProcessId - Process id: 25044 +Portal Process ID: 25044 +Opening project: SAE452.ap18... +2025-05-19 18:14:02,666 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal OpenProject - Open project... C:/Trabajo/SIDEL/09 - SAE452 - Diet as Regular - San Giovanni in Bosco/Reporte/SourceDoc/Migration/SAE452/SAE452.ap18 Project opened successfully. -2025-05-05 12:38:10,950 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Project GetPlcs - Found plc PLC with parent name S71500/ET200MP station_1 +2025-05-19 18:16:36,068 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Project GetPlcs - Found plc CPU 315F-2 PN/DP with parent name _SSAE0452 Found 1 PLC(s). Starting export process... ---- Processing PLC: PLC --- +--- Processing PLC: CPU 315F-2 PN/DP --- -[PLC: PLC] Exporting Program Blocks... - XML Target: C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport\PLC\ProgramBlocks_XML - SCL Target: C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport\PLC\ProgramBlocks_SCL - Found 380 program blocks. - Processing block: _CYCL_EXC... - Exporting _CYCL_EXC as XML... -2025-05-05 12:38:20,682 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: _CYCL_EXC exported successfully -2025-05-05 12:38:20,693 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - _CYCL_EXC exported successfully - Processing block: COMPLETE RESTART... - Exporting COMPLETE RESTART as XML... -2025-05-05 12:38:21,165 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: COMPLETE RESTART exported successfully -2025-05-05 12:38:21,166 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - COMPLETE RESTART exported successfully - Processing block: I/O_FLT1... - Exporting I/O_FLT1 as XML... -2025-05-05 12:38:21,226 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: I/O_FLT1 exported successfully -2025-05-05 12:38:21,227 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - I/O_FLT1 exported successfully - Processing block: MOD_ERR... - Exporting MOD_ERR as XML... -2025-05-05 12:38:21,267 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MOD_ERR exported successfully -2025-05-05 12:38:21,268 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MOD_ERR exported successfully - Processing block: ProDiagOB... - Exporting ProDiagOB as XML... - ERROR exporting block ProDiagOB: OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.OB'. - - - -Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.OB'. - - - -The programming language 'ProDiag_OB' is not supported during import and export. - Processing block: Programming error... - Exporting Programming error as XML... -2025-05-05 12:38:21,451 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Programming error exported successfully -2025-05-05 12:38:21,452 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Programming error exported successfully - Processing block: RACK_FLT... - Exporting RACK_FLT as XML... -2025-05-05 12:38:21,599 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RACK_FLT exported successfully -2025-05-05 12:38:21,601 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RACK_FLT exported successfully - Processing block: Time error interrupt... - Exporting Time error interrupt as XML... -2025-05-05 12:38:21,640 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Time error interrupt exported successfully -2025-05-05 12:38:21,641 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Time error interrupt exported successfully - Processing block: Baialage... - Exporting Baialage as XML... -2025-05-05 12:38:21,862 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Baialage exported successfully -2025-05-05 12:38:21,864 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Baialage exported successfully - Processing block: BlenderCtrl__Main... - Exporting BlenderCtrl__Main as XML... -2025-05-05 12:38:23,336 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl__Main exported successfully -2025-05-05 12:38:23,337 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl__Main exported successfully - Processing block: BlenderCtrl_CIPModeInit... - Exporting BlenderCtrl_CIPModeInit as XML... -2025-05-05 12:38:23,371 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_CIPModeInit exported successfully -2025-05-05 12:38:23,383 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_CIPModeInit exported successfully - Processing block: BlenderCtrl_ProdModeInit... - Exporting BlenderCtrl_ProdModeInit as XML... -2025-05-05 12:38:23,430 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_ProdModeInit exported successfully -2025-05-05 12:38:23,432 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_ProdModeInit exported successfully - Processing block: BlenderCtrl_ResetSPWord... - Exporting BlenderCtrl_ResetSPWord as XML... -2025-05-05 12:38:23,506 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_ResetSPWord exported successfully -2025-05-05 12:38:23,508 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_ResetSPWord exported successfully - Processing block: BlenderCtrl_UpdatePWord... - Exporting BlenderCtrl_UpdatePWord as XML... -2025-05-05 12:38:23,629 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_UpdatePWord exported successfully -2025-05-05 12:38:23,631 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_UpdatePWord exported successfully - Processing block: BlenderPID_NextRecipe... - Exporting BlenderPID_NextRecipe as XML... -2025-05-05 12:38:23,676 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_NextRecipe exported successfully -2025-05-05 12:38:23,677 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_NextRecipe exported successfully - Processing block: BlenderRinse... - Exporting BlenderRinse as XML... -2025-05-05 12:38:23,818 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRinse exported successfully -2025-05-05 12:38:23,819 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRinse exported successfully - Processing block: BlenderRinse_Done... - Exporting BlenderRinse_Done as XML... -2025-05-05 12:38:23,863 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRinse_Done exported successfully -2025-05-05 12:38:23,864 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRinse_Done exported successfully - Processing block: BlenderRun_ProdTime... - Exporting BlenderRun_ProdTime as XML... -2025-05-05 12:38:23,925 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_ProdTime exported successfully -2025-05-05 12:38:23,926 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_ProdTime exported successfully - Processing block: BlenderRun_Stopping... - Exporting BlenderRun_Stopping as XML... -2025-05-05 12:38:24,001 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_Stopping exported successfully -2025-05-05 12:38:24,002 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_Stopping exported successfully - Processing block: Blocco_1... - Exporting Blocco_1 as XML... -2025-05-05 12:38:24,027 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blocco_1 exported successfully -2025-05-05 12:38:24,028 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blocco_1 exported successfully - Processing block: Block_compare... - Exporting Block_compare as XML... -2025-05-05 12:38:24,165 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Block_compare exported successfully -2025-05-05 12:38:24,179 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Block_compare exported successfully - Processing block: Block_move... - Exporting Block_move as XML... -2025-05-05 12:38:24,240 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Block_move exported successfully -2025-05-05 12:38:24,241 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Block_move exported successfully - Processing block: CarboWaterLine_Seq... - Exporting CarboWaterLine_Seq as XML... -2025-05-05 12:38:24,438 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CarboWaterLine_Seq exported successfully -2025-05-05 12:38:24,439 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CarboWaterLine_Seq exported successfully - Processing block: Cetrifugal_Head... - Exporting Cetrifugal_Head as XML... -2025-05-05 12:38:25,020 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Cetrifugal_Head exported successfully -2025-05-05 12:38:25,021 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Cetrifugal_Head exported successfully - Exporting Cetrifugal_Head as SCL... -2025-05-05 12:38:26,303 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Cetrifugal_Head external source successfully generated - Processing block: CIP CVQ... - Exporting CIP CVQ as XML... -2025-05-05 12:38:26,339 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIP CVQ exported successfully -2025-05-05 12:38:26,340 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIP CVQ exported successfully - Exporting CIP CVQ as SCL... -2025-05-05 12:38:26,360 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIP CVQ external source successfully generated - Processing block: CIP FlipFlop... - Exporting CIP FlipFlop as XML... -2025-05-05 12:38:26,440 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIP FlipFlop exported successfully -2025-05-05 12:38:26,441 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIP FlipFlop exported successfully - Processing block: CIPLocal_ProgInizialize... - Exporting CIPLocal_ProgInizialize as XML... -2025-05-05 12:38:26,469 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_ProgInizialize exported successfully -2025-05-05 12:38:26,470 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_ProgInizialize exported successfully - Processing block: CIPLocal_WaitEvent_Ctrl... - Exporting CIPLocal_WaitEvent_Ctrl as XML... -2025-05-05 12:38:26,548 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_WaitEvent_Ctrl exported successfully -2025-05-05 12:38:26,550 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_WaitEvent_Ctrl exported successfully - Processing block: CIPMain... - Exporting CIPMain as XML... -2025-05-05 12:38:26,610 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPMain exported successfully -2025-05-05 12:38:26,611 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPMain exported successfully - Processing block: CIPMain_Flood... - Exporting CIPMain_Flood as XML... -2025-05-05 12:38:26,689 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPMain_Flood exported successfully -2025-05-05 12:38:26,689 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPMain_Flood exported successfully - Processing block: CIPMain_Total Drain... - Exporting CIPMain_Total Drain as XML... -2025-05-05 12:38:26,767 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPMain_Total Drain exported successfully -2025-05-05 12:38:26,771 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPMain_Total Drain exported successfully - Processing block: Clock Signal... - Exporting Clock Signal as XML... -2025-05-05 12:38:26,842 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Clock Signal exported successfully -2025-05-05 12:38:26,843 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Clock Signal exported successfully - Processing block: CO2 Solubility... - Exporting CO2 Solubility as XML... -2025-05-05 12:38:27,135 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2 Solubility exported successfully -2025-05-05 12:38:27,135 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2 Solubility exported successfully - Exporting CO2 Solubility as SCL... -2025-05-05 12:38:27,160 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2 Solubility external source successfully generated - Processing block: CO2EqPress... - Exporting CO2EqPress as XML... -2025-05-05 12:38:27,192 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2EqPress exported successfully -2025-05-05 12:38:27,193 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2EqPress exported successfully - Exporting CO2EqPress as SCL... -2025-05-05 12:38:27,219 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2EqPress external source successfully generated - Processing block: CO2InjPressure... - Exporting CO2InjPressure as XML... -2025-05-05 12:38:27,251 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2InjPressure exported successfully -2025-05-05 12:38:27,252 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2InjPressure exported successfully - Exporting CO2InjPressure as SCL... -2025-05-05 12:38:27,279 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2InjPressure external source successfully generated - Processing block: CTRLCoolingSystem... - Exporting CTRLCoolingSystem as XML... -2025-05-05 12:38:27,333 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CTRLCoolingSystem exported successfully -2025-05-05 12:38:27,334 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CTRLCoolingSystem exported successfully - Processing block: DeairCO2TempComp... - Exporting DeairCO2TempComp as XML... -2025-05-05 12:38:27,362 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DeairCO2TempComp exported successfully -2025-05-05 12:38:27,363 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DeairCO2TempComp exported successfully - Exporting DeairCO2TempComp as SCL... -2025-05-05 12:38:27,387 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block DeairCO2TempComp external source successfully generated - Processing block: DeaireationValve... - Exporting DeaireationValve as XML... -2025-05-05 12:38:27,430 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DeaireationValve exported successfully -2025-05-05 12:38:27,431 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DeaireationValve exported successfully - Exporting DeaireationValve as SCL... -2025-05-05 12:38:27,453 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block DeaireationValve external source successfully generated - Processing block: Deaireator StartUp_Seq... - Exporting Deaireator StartUp_Seq as XML... -2025-05-05 12:38:27,586 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Deaireator StartUp_Seq exported successfully -2025-05-05 12:38:27,587 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Deaireator StartUp_Seq exported successfully - Processing block: DeltaP... - Exporting DeltaP as XML... -2025-05-05 12:38:27,633 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DeltaP exported successfully -2025-05-05 12:38:27,634 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DeltaP exported successfully - Exporting DeltaP as SCL... -2025-05-05 12:38:27,654 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block DeltaP external source successfully generated - Processing block: FeedForward... - Exporting FeedForward as XML... -2025-05-05 12:38:27,690 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FeedForward exported successfully -2025-05-05 12:38:27,691 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FeedForward exported successfully - Exporting FeedForward as SCL... -2025-05-05 12:38:27,711 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FeedForward external source successfully generated - Processing block: Flow_To_Press_Loss... - Exporting Flow_To_Press_Loss as XML... -2025-05-05 12:38:27,753 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Flow_To_Press_Loss exported successfully -2025-05-05 12:38:27,754 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Flow_To_Press_Loss exported successfully - Exporting Flow_To_Press_Loss as SCL... -2025-05-05 12:38:27,774 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Flow_To_Press_Loss external source successfully generated - Processing block: Freq_To_mmH2O... - Exporting Freq_To_mmH2O as XML... -2025-05-05 12:38:27,832 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Freq_To_mmH2O exported successfully -2025-05-05 12:38:27,833 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Freq_To_mmH2O exported successfully - Exporting Freq_To_mmH2O as SCL... -2025-05-05 12:38:27,853 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Freq_To_mmH2O external source successfully generated - Processing block: FrictionLoss... - Exporting FrictionLoss as XML... -2025-05-05 12:38:27,877 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FrictionLoss exported successfully -2025-05-05 12:38:27,879 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FrictionLoss exported successfully - Exporting FrictionLoss as SCL... -2025-05-05 12:38:27,903 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FrictionLoss external source successfully generated - Processing block: FW_DRand... - Exporting FW_DRand as XML... -2025-05-05 12:38:27,929 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FW_DRand exported successfully -2025-05-05 12:38:27,930 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FW_DRand exported successfully - Processing block: GetProdBrixCO2_Anal_Inpt... - Exporting GetProdBrixCO2_Anal_Inpt as XML... -2025-05-05 12:38:27,965 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GetProdBrixCO2_Anal_Inpt exported successfully -2025-05-05 12:38:27,966 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GetProdBrixCO2_Anal_Inpt exported successfully - Processing block: Interlocking_Panel_1... - Exporting Interlocking_Panel_1 as XML... -2025-05-05 12:38:28,184 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking_Panel_1 exported successfully -2025-05-05 12:38:28,184 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking_Panel_1 exported successfully - Processing block: ITC Communic CIPRoom... - Exporting ITC Communic CIPRoom as XML... -2025-05-05 12:38:28,261 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic CIPRoom exported successfully -2025-05-05 12:38:28,262 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic CIPRoom exported successfully - Processing block: ITC Communic Filler... - Exporting ITC Communic Filler as XML... -2025-05-05 12:38:28,341 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic Filler exported successfully -2025-05-05 12:38:28,342 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic Filler exported successfully - Processing block: ITC Communic MainRoutine... - Exporting ITC Communic MainRoutine as XML... -2025-05-05 12:38:28,386 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic MainRoutine exported successfully -2025-05-05 12:38:28,387 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic MainRoutine exported successfully - Processing block: ITC Communic ProdRoom... - Exporting ITC Communic ProdRoom as XML... -2025-05-05 12:38:28,447 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic ProdRoom exported successfully -2025-05-05 12:38:28,448 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic ProdRoom exported successfully - Processing block: ITC DataIn... - Exporting ITC DataIn as XML... -2025-05-05 12:38:28,477 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC DataIn exported successfully -2025-05-05 12:38:28,478 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC DataIn exported successfully - Processing block: ITC DataOut... - Exporting ITC DataOut as XML... -2025-05-05 12:38:28,499 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC DataOut exported successfully -2025-05-05 12:38:28,500 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC DataOut exported successfully - Processing block: ITC Exchange MainRoutine... - Exporting ITC Exchange MainRoutine as XML... -2025-05-05 12:38:28,524 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Exchange MainRoutine exported successfully -2025-05-05 12:38:28,525 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Exchange MainRoutine exported successfully - Processing block: ITC MainRoutine... - Exporting ITC MainRoutine as XML... -2025-05-05 12:38:28,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC MainRoutine exported successfully -2025-05-05 12:38:28,552 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC MainRoutine exported successfully - Processing block: LIMIT_I... - Exporting LIMIT_I as XML... -2025-05-05 12:38:28,583 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LIMIT_I exported successfully -2025-05-05 12:38:28,584 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LIMIT_I exported successfully - Processing block: LIMIT_R... - Exporting LIMIT_R as XML... -2025-05-05 12:38:28,632 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LIMIT_R exported successfully -2025-05-05 12:38:28,633 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LIMIT_R exported successfully - Processing block: Maselli_PA_Control... - Exporting Maselli_PA_Control as XML... -2025-05-05 12:38:28,693 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Control exported successfully -2025-05-05 12:38:28,694 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Control exported successfully - Processing block: Maselli_PA_Ctrl_Transfer... - Exporting Maselli_PA_Ctrl_Transfer as XML... -2025-05-05 12:38:28,725 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Ctrl_Transfer exported successfully -2025-05-05 12:38:28,739 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Ctrl_Transfer exported successfully - Processing block: Maselli_PA_Ctrl_Write... - Exporting Maselli_PA_Ctrl_Write as XML... -2025-05-05 12:38:28,788 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Ctrl_Write exported successfully -2025-05-05 12:38:28,788 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Ctrl_Write exported successfully - Processing block: MFMAnalogValues_Totalize... - Exporting MFMAnalogValues_Totalize as XML... -2025-05-05 12:38:28,865 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MFMAnalogValues_Totalize exported successfully -2025-05-05 12:38:28,866 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MFMAnalogValues_Totalize exported successfully - Processing block: mmH2O_TO_Freq... - Exporting mmH2O_TO_Freq as XML... -2025-05-05 12:38:28,920 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mmH2O_TO_Freq exported successfully -2025-05-05 12:38:28,921 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mmH2O_TO_Freq exported successfully - Exporting mmH2O_TO_Freq as SCL... -2025-05-05 12:38:28,943 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block mmH2O_TO_Freq external source successfully generated - Processing block: ModValveFault... - Exporting ModValveFault as XML... -2025-05-05 12:38:28,987 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ModValveFault exported successfully -2025-05-05 12:38:28,988 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ModValveFault exported successfully - Processing block: mPDS_SYR_PA_Control... - Exporting mPDS_SYR_PA_Control as XML... -2025-05-05 12:38:29,041 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Control exported successfully -2025-05-05 12:38:29,042 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Control exported successfully - Processing block: ONS_R... - Exporting ONS_R as XML... -2025-05-05 12:38:29,066 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ONS_R exported successfully -2025-05-05 12:38:29,067 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ONS_R exported successfully - Processing block: Prod Tank RunOut_Seq... - Exporting Prod Tank RunOut_Seq as XML... -2025-05-05 12:38:29,129 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank RunOut_Seq exported successfully -2025-05-05 12:38:29,130 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank RunOut_Seq exported successfully - Processing block: ProductLiterInTank... - Exporting ProductLiterInTank as XML... -2025-05-05 12:38:29,155 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductLiterInTank exported successfully -2025-05-05 12:38:29,155 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductLiterInTank exported successfully - Exporting ProductLiterInTank as SCL... -2025-05-05 12:38:29,175 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProductLiterInTank external source successfully generated - Processing block: ProductPipeDrain_Seq... - Exporting ProductPipeDrain_Seq as XML... -2025-05-05 12:38:29,216 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeDrain_Seq exported successfully -2025-05-05 12:38:29,217 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeDrain_Seq exported successfully - Processing block: ProductPipeRunOut_Seq... - Exporting ProductPipeRunOut_Seq as XML... -2025-05-05 12:38:29,286 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeRunOut_Seq exported successfully -2025-05-05 12:38:29,287 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeRunOut_Seq exported successfully - Processing block: ProductQuality... - Exporting ProductQuality as XML... -2025-05-05 12:38:29,345 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductQuality exported successfully -2025-05-05 12:38:29,346 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductQuality exported successfully - Processing block: SEL_I... - Exporting SEL_I as XML... -2025-05-05 12:38:29,376 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SEL_I exported successfully -2025-05-05 12:38:29,378 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SEL_I exported successfully - Processing block: SEL_R... - Exporting SEL_R as XML... -2025-05-05 12:38:29,405 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SEL_R exported successfully -2025-05-05 12:38:29,406 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SEL_R exported successfully - Processing block: SelCheckBrixSource... - Exporting SelCheckBrixSource as XML... -2025-05-05 12:38:29,501 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SelCheckBrixSource exported successfully -2025-05-05 12:38:29,503 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SelCheckBrixSource exported successfully - Processing block: SLIM_Block... - Exporting SLIM_Block as XML... -2025-05-05 12:38:29,533 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SLIM_Block exported successfully -2025-05-05 12:38:29,534 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SLIM_Block exported successfully - Processing block: SpeedAdjust... - Exporting SpeedAdjust as XML... -2025-05-05 12:38:29,595 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SpeedAdjust exported successfully -2025-05-05 12:38:29,597 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SpeedAdjust exported successfully - Exporting SpeedAdjust as SCL... -2025-05-05 12:38:29,622 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SpeedAdjust external source successfully generated - Processing block: Syrup Line MFM Prep_Seq... - Exporting Syrup Line MFM Prep_Seq as XML... -2025-05-05 12:38:29,690 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup Line MFM Prep_Seq exported successfully -2025-05-05 12:38:29,690 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup Line MFM Prep_Seq exported successfully - Processing block: Syrup MFM StartUp_Seq... - Exporting Syrup MFM StartUp_Seq as XML... -2025-05-05 12:38:29,730 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup MFM StartUp_Seq exported successfully -2025-05-05 12:38:29,731 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup MFM StartUp_Seq exported successfully - Processing block: SyrupDensity... - Exporting SyrupDensity as XML... -2025-05-05 12:38:29,757 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrupDensity exported successfully -2025-05-05 12:38:29,758 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrupDensity exported successfully - Exporting SyrupDensity as SCL... -2025-05-05 12:38:29,784 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SyrupDensity external source successfully generated - Processing block: SyrupRoomCtrl... - Exporting SyrupRoomCtrl as XML... -2025-05-05 12:38:29,813 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrupRoomCtrl exported successfully -2025-05-05 12:38:29,814 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrupRoomCtrl exported successfully - Processing block: WaterDensity... - Exporting WaterDensity as XML... -2025-05-05 12:38:29,842 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: WaterDensity exported successfully -2025-05-05 12:38:29,844 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - WaterDensity exported successfully - Exporting WaterDensity as SCL... -2025-05-05 12:38:29,867 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block WaterDensity external source successfully generated - Processing block: WritePeripheral... - Exporting WritePeripheral as XML... -2025-05-05 12:38:29,898 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: WritePeripheral exported successfully -2025-05-05 12:38:29,899 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - WritePeripheral exported successfully - Processing block: CIPRecipeManagement_Data... - Exporting CIPRecipeManagement_Data as XML... -2025-05-05 12:38:30,029 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipeManagement_Data exported successfully -2025-05-05 12:38:30,030 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipeManagement_Data exported successfully - Processing block: Co2_Counters_DB... - Exporting Co2_Counters_DB as XML... -2025-05-05 12:38:30,070 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Co2_Counters_DB exported successfully -2025-05-05 12:38:30,071 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Co2_Counters_DB exported successfully - Processing block: Default_SupervisionDB... - Exporting Default_SupervisionDB as XML... -2025-05-05 12:38:30,119 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Default_SupervisionDB exported successfully -2025-05-05 12:38:30,120 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Default_SupervisionDB exported successfully - Processing block: ITC Communic CIP DI... - Exporting ITC Communic CIP DI as XML... -2025-05-05 12:38:30,203 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic CIP DI exported successfully -2025-05-05 12:38:30,204 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic CIP DI exported successfully - Processing block: ITC Communic Filler DI... - Exporting ITC Communic Filler DI as XML... -2025-05-05 12:38:30,247 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic Filler DI exported successfully -2025-05-05 12:38:30,248 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic Filler DI exported successfully - Processing block: ITC Communic Mixer DI... - Exporting ITC Communic Mixer DI as XML... -2025-05-05 12:38:30,296 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic Mixer DI exported successfully -2025-05-05 12:38:30,298 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic Mixer DI exported successfully - Processing block: ITC Communic Product Room DI... - Exporting ITC Communic Product Room DI as XML... -2025-05-05 12:38:30,353 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic Product Room DI exported successfully -2025-05-05 12:38:30,355 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic Product Room DI exported successfully - Processing block: Key Read & Write Data... - Exporting Key Read & Write Data as XML... -2025-05-05 12:38:30,382 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Key Read & Write Data exported successfully -2025-05-05 12:38:30,384 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Key Read & Write Data exported successfully - Processing block: mPPM303StartUpRamp... - Exporting mPPM303StartUpRamp as XML... -2025-05-05 12:38:30,415 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPPM303StartUpRamp exported successfully -2025-05-05 12:38:30,416 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPPM303StartUpRamp exported successfully - Processing block: PID_RMM304_Data... - Exporting PID_RMM304_Data as XML... -2025-05-05 12:38:30,459 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM304_Data exported successfully -2025-05-05 12:38:30,460 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM304_Data exported successfully - Processing block: PID_RVN302_Data... - Exporting PID_RVN302_Data as XML... -2025-05-05 12:38:30,494 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVN302_Data exported successfully -2025-05-05 12:38:30,495 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVN302_Data exported successfully - Processing block: PID_RVS318_Data... - Exporting PID_RVS318_Data as XML... -2025-05-05 12:38:30,522 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVS318_Data exported successfully -2025-05-05 12:38:30,523 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVS318_Data exported successfully - Processing block: ProdBrixRecovery_DB... - Exporting ProdBrixRecovery_DB as XML... -2025-05-05 12:38:30,545 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdBrixRecovery_DB exported successfully -2025-05-05 12:38:30,545 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdBrixRecovery_DB exported successfully - Processing block: Prod Tank Drain_Seq... - Exporting Prod Tank Drain_Seq as XML... -2025-05-05 12:38:30,632 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank Drain_Seq exported successfully -2025-05-05 12:38:30,633 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank Drain_Seq exported successfully - Processing block: _StepMove... - Exporting _StepMove as XML... -2025-05-05 12:38:30,671 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: _StepMove exported successfully -2025-05-05 12:38:30,672 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - _StepMove exported successfully - Processing block: _StepMove_Test... - Exporting _StepMove_Test as XML... -2025-05-05 12:38:30,710 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: _StepMove_Test exported successfully -2025-05-05 12:38:30,710 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - _StepMove_Test exported successfully - Processing block: RecipeManagement_Data... - Exporting RecipeManagement_Data as XML... -2025-05-05 12:38:30,734 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement_Data exported successfully -2025-05-05 12:38:30,734 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement_Data exported successfully - Processing block: Blender_Procedure Data... - Exporting Blender_Procedure Data as XML... -2025-05-05 12:38:30,775 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Procedure Data exported successfully -2025-05-05 12:38:30,776 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Procedure Data exported successfully - Processing block: BlenderPID__Main_Data... - Exporting BlenderPID__Main_Data as XML... -2025-05-05 12:38:30,836 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID__Main_Data exported successfully -2025-05-05 12:38:30,837 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID__Main_Data exported successfully - Processing block: BlenderRun_MeasFil_Data... - Exporting BlenderRun_MeasFil_Data as XML... -2025-05-05 12:38:30,865 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_MeasFil_Data exported successfully -2025-05-05 12:38:30,866 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_MeasFil_Data exported successfully - Processing block: BrixTracking_Data... - Exporting BrixTracking_Data as XML... -2025-05-05 12:38:30,899 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_Data exported successfully -2025-05-05 12:38:30,901 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_Data exported successfully - Processing block: CO2Tracking_Data... - Exporting CO2Tracking_Data as XML... -2025-05-05 12:38:30,936 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_Data exported successfully -2025-05-05 12:38:30,937 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_Data exported successfully - Processing block: FirstProduction_Data... - Exporting FirstProduction_Data as XML... -2025-05-05 12:38:30,964 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FirstProduction_Data exported successfully -2025-05-05 12:38:30,965 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FirstProduction_Data exported successfully - Processing block: Input_Data... - Exporting Input_Data as XML... -2025-05-05 12:38:31,022 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_Data exported successfully -2025-05-05 12:38:31,023 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_Data exported successfully - Processing block: ISOonTCP_or_TCP_Protocol_DB... - Exporting ISOonTCP_or_TCP_Protocol_DB as XML... -2025-05-05 12:38:31,050 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ISOonTCP_or_TCP_Protocol_DB exported successfully -2025-05-05 12:38:31,051 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ISOonTCP_or_TCP_Protocol_DB exported successfully - Processing block: MFM_Analog_Value_Data... - Exporting MFM_Analog_Value_Data as XML... -2025-05-05 12:38:31,083 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MFM_Analog_Value_Data exported successfully -2025-05-05 12:38:31,084 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MFM_Analog_Value_Data exported successfully - Processing block: PID MAIN Data... - Exporting PID MAIN Data as XML... -2025-05-05 12:38:31,165 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID MAIN Data exported successfully -2025-05-05 12:38:31,166 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID MAIN Data exported successfully - Processing block: PID_Filling_Head_Data... - Exporting PID_Filling_Head_Data as XML... -2025-05-05 12:38:31,193 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head_Data exported successfully -2025-05-05 12:38:31,194 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head_Data exported successfully - Processing block: PID_RMM301_Data... - Exporting PID_RMM301_Data as XML... -2025-05-05 12:38:31,218 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM301_Data exported successfully -2025-05-05 12:38:31,219 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM301_Data exported successfully - Processing block: PID_RMM303_Data... - Exporting PID_RMM303_Data as XML... -2025-05-05 12:38:31,247 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM303_Data exported successfully -2025-05-05 12:38:31,248 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM303_Data exported successfully - Processing block: PID_RMP302_Data... - Exporting PID_RMP302_Data as XML... -2025-05-05 12:38:31,280 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMP302_Data exported successfully -2025-05-05 12:38:31,281 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMP302_Data exported successfully - Processing block: PID_RVM301_Data... - Exporting PID_RVM301_Data as XML... -2025-05-05 12:38:31,312 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM301_Data exported successfully -2025-05-05 12:38:31,313 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM301_Data exported successfully - Processing block: PID_RVM319_Data... - Exporting PID_RVM319_Data as XML... -2025-05-05 12:38:31,343 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM319_Data exported successfully -2025-05-05 12:38:31,344 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM319_Data exported successfully - Processing block: PID_RVP303_Data... - Exporting PID_RVP303_Data as XML... -2025-05-05 12:38:31,376 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVP303_Data exported successfully -2025-05-05 12:38:31,378 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVP303_Data exported successfully - Processing block: Sel_Check_Brix_Data... - Exporting Sel_Check_Brix_Data as XML... -2025-05-05 12:38:31,403 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Sel_Check_Brix_Data exported successfully -2025-05-05 12:38:31,404 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Sel_Check_Brix_Data exported successfully - Processing block: Signal_Gen_Data... - Exporting Signal_Gen_Data as XML... -2025-05-05 12:38:31,430 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Signal_Gen_Data exported successfully -2025-05-05 12:38:31,431 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Signal_Gen_Data exported successfully - Processing block: System_Run_Out_Data... - Exporting System_Run_Out_Data as XML... -2025-05-05 12:38:31,471 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_Run_Out_Data exported successfully -2025-05-05 12:38:31,472 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_Run_Out_Data exported successfully - Processing block: SubCarb_DB... - Exporting SubCarb_DB as XML... -2025-05-05 12:38:31,501 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SubCarb_DB exported successfully -2025-05-05 12:38:31,502 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SubCarb_DB exported successfully - Processing block: CYC_INT5... - Exporting CYC_INT5 as XML... -2025-05-05 12:38:31,596 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CYC_INT5 exported successfully -2025-05-05 12:38:31,597 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CYC_INT5 exported successfully - Processing block: BlenderCtrl_All Auto... - Exporting BlenderCtrl_All Auto as XML... -2025-05-05 12:38:31,675 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_All Auto exported successfully -2025-05-05 12:38:31,676 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_All Auto exported successfully - Processing block: BlenderCtrl_InitErrors... - Exporting BlenderCtrl_InitErrors as XML... -2025-05-05 12:38:31,734 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_InitErrors exported successfully -2025-05-05 12:38:31,736 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_InitErrors exported successfully - Exporting BlenderCtrl_InitErrors as SCL... -2025-05-05 12:38:31,765 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderCtrl_InitErrors external source successfully generated - Processing block: BlenderCtrl_ManualActive... - Exporting BlenderCtrl_ManualActive as XML... -2025-05-05 12:38:31,820 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_ManualActive exported successfully -2025-05-05 12:38:31,821 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_ManualActive exported successfully - Processing block: BlenderCtrl_MFM Command... - Exporting BlenderCtrl_MFM Command as XML... -2025-05-05 12:38:31,877 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_MFM Command exported successfully -2025-05-05 12:38:31,878 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_MFM Command exported successfully - Exporting BlenderCtrl_MFM Command as SCL... -2025-05-05 12:38:31,908 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderCtrl_MFM Command external source successfully generated - Processing block: BlenderPID_FlowMeterErro... - Exporting BlenderPID_FlowMeterErro as XML... -2025-05-05 12:38:31,955 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_FlowMeterErro exported successfully -2025-05-05 12:38:31,956 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_FlowMeterErro exported successfully - Exporting BlenderPID_FlowMeterErro as SCL... -2025-05-05 12:38:31,983 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_FlowMeterErro external source successfully generated - Processing block: BlenderPID_PIDResInteg... - Exporting BlenderPID_PIDResInteg as XML... -2025-05-05 12:38:32,021 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDResInteg exported successfully -2025-05-05 12:38:32,022 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDResInteg exported successfully - Exporting BlenderPID_PIDResInteg as SCL... -2025-05-05 12:38:32,050 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDResInteg external source successfully generated - Processing block: BlenderPIDCtrl_PresRelea... - Exporting BlenderPIDCtrl_PresRelea as XML... -2025-05-05 12:38:32,092 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_PresRelea exported successfully -2025-05-05 12:38:32,093 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_PresRelea exported successfully - Exporting BlenderPIDCtrl_PresRelea as SCL... -2025-05-05 12:38:32,121 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPIDCtrl_PresRelea external source successfully generated - Processing block: BlenderPIDCtrl_SaveValve... - Exporting BlenderPIDCtrl_SaveValve as XML... -2025-05-05 12:38:32,189 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_SaveValve exported successfully -2025-05-05 12:38:32,190 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_SaveValve exported successfully - Exporting BlenderPIDCtrl_SaveValve as SCL... -2025-05-05 12:38:32,214 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPIDCtrl_SaveValve external source successfully generated - Processing block: BlenderRun__Control... - Exporting BlenderRun__Control as XML... -2025-05-05 12:38:32,411 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun__Control exported successfully -2025-05-05 12:38:32,426 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun__Control exported successfully - Processing block: BlenderRun_SelectConstan... - Exporting BlenderRun_SelectConstan as XML... -2025-05-05 12:38:32,519 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_SelectConstan exported successfully -2025-05-05 12:38:32,521 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_SelectConstan exported successfully - Exporting BlenderRun_SelectConstan as SCL... -2025-05-05 12:38:32,565 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderRun_SelectConstan external source successfully generated - Processing block: BlendFill StartUp_Seq... - Exporting BlendFill StartUp_Seq as XML... -2025-05-05 12:38:32,703 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlendFill StartUp_Seq exported successfully -2025-05-05 12:38:32,707 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlendFill StartUp_Seq exported successfully - Processing block: CIP_SimpleProgr_Init... - Exporting CIP_SimpleProgr_Init as XML... -2025-05-05 12:38:33,280 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIP_SimpleProgr_Init exported successfully -2025-05-05 12:38:33,281 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIP_SimpleProgr_Init exported successfully - Exporting CIP_SimpleProgr_Init as SCL... -2025-05-05 12:38:33,373 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIP_SimpleProgr_Init external source successfully generated - Processing block: CIPLocal... - Exporting CIPLocal as XML... -2025-05-05 12:38:33,514 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal exported successfully -2025-05-05 12:38:33,515 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal exported successfully - Processing block: CIPLocal_ExecSimpleCIP... - Exporting CIPLocal_ExecSimpleCIP as XML... -2025-05-05 12:38:33,600 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_ExecSimpleCIP exported successfully -2025-05-05 12:38:33,601 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_ExecSimpleCIP exported successfully - Exporting CIPLocal_ExecSimpleCIP as SCL... -2025-05-05 12:38:33,634 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIPLocal_ExecSimpleCIP external source successfully generated - Processing block: CIPLocal_ExecStep... - Exporting CIPLocal_ExecStep as XML... -2025-05-05 12:38:33,712 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_ExecStep exported successfully -2025-05-05 12:38:33,714 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_ExecStep exported successfully - Exporting CIPLocal_ExecStep as SCL... -2025-05-05 12:38:33,748 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIPLocal_ExecStep external source successfully generated - Processing block: CIPLocal_ProgStepDown... - Exporting CIPLocal_ProgStepDown as XML... -2025-05-05 12:38:33,790 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_ProgStepDown exported successfully -2025-05-05 12:38:33,790 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_ProgStepDown exported successfully - Exporting CIPLocal_ProgStepDown as SCL... -2025-05-05 12:38:33,815 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIPLocal_ProgStepDown external source successfully generated - Processing block: CIPLocal_ProgStepUp... - Exporting CIPLocal_ProgStepUp as XML... -2025-05-05 12:38:33,851 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPLocal_ProgStepUp exported successfully -2025-05-05 12:38:33,852 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPLocal_ProgStepUp exported successfully - Exporting CIPLocal_ProgStepUp as SCL... -2025-05-05 12:38:33,879 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CIPLocal_ProgStepUp external source successfully generated - Processing block: CIPReportManager... - Exporting CIPReportManager as XML... -2025-05-05 12:38:34,045 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPReportManager exported successfully -2025-05-05 12:38:34,077 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPReportManager exported successfully - Processing block: CPU_DP Global Diag... - Exporting CPU_DP Global Diag as XML... -2025-05-05 12:38:34,181 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CPU_DP Global Diag exported successfully -2025-05-05 12:38:34,182 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CPU_DP Global Diag exported successfully - Processing block: CVQ_1p7_8_Perc... - Exporting CVQ_1p7_8_Perc as XML... -2025-05-05 12:38:34,242 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CVQ_1p7_8_Perc exported successfully -2025-05-05 12:38:34,243 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CVQ_1p7_8_Perc exported successfully - Exporting CVQ_1p7_8_Perc as SCL... -2025-05-05 12:38:34,272 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CVQ_1p7_8_Perc external source successfully generated - Processing block: DELETE... - Exporting DELETE as XML... -2025-05-05 12:38:34,332 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DELETE exported successfully -2025-05-05 12:38:34,334 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DELETE exported successfully - Processing block: EQ_STRNG... - Exporting EQ_STRNG as XML... -2025-05-05 12:38:34,386 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: EQ_STRNG exported successfully -2025-05-05 12:38:34,387 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - EQ_STRNG exported successfully - Processing block: FillerControl... - Exporting FillerControl as XML... -2025-05-05 12:38:34,556 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FillerControl exported successfully -2025-05-05 12:38:34,557 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FillerControl exported successfully - Processing block: FillerControl_DataSend... - Exporting FillerControl_DataSend as XML... -2025-05-05 12:38:34,634 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FillerControl_DataSend exported successfully -2025-05-05 12:38:34,635 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FillerControl_DataSend exported successfully - Exporting FillerControl_DataSend as SCL... -2025-05-05 12:38:34,680 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FillerControl_DataSend external source successfully generated - Processing block: FillingTime... - Exporting FillingTime as XML... -2025-05-05 12:38:34,740 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FillingTime exported successfully -2025-05-05 12:38:34,742 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FillingTime exported successfully - Exporting FillingTime as SCL... -2025-05-05 12:38:34,774 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FillingTime external source successfully generated - Processing block: Input_CheckFlowMetersSta... - Exporting Input_CheckFlowMetersSta as XML... -2025-05-05 12:38:34,884 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_CheckFlowMetersSta exported successfully -2025-05-05 12:38:34,897 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_CheckFlowMetersSta exported successfully - Exporting Input_CheckFlowMetersSta as SCL... -2025-05-05 12:38:34,940 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Input_CheckFlowMetersSta external source successfully generated - Processing block: Input_DigitalCtrl... - Exporting Input_DigitalCtrl as XML... -2025-05-05 12:38:35,004 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_DigitalCtrl exported successfully -2025-05-05 12:38:35,006 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_DigitalCtrl exported successfully - Processing block: Input_DigitalScanner... - Exporting Input_DigitalScanner as XML... -2025-05-05 12:38:35,051 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_DigitalScanner exported successfully -2025-05-05 12:38:35,052 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_DigitalScanner exported successfully - Processing block: Instrument_Scanner... - Exporting Instrument_Scanner as XML... -2025-05-05 12:38:35,084 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Instrument_Scanner exported successfully -2025-05-05 12:38:35,086 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Instrument_Scanner exported successfully - Processing block: Interlocking_Panel... - Exporting Interlocking_Panel as XML... -2025-05-05 12:38:35,206 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking_Panel exported successfully -2025-05-05 12:38:35,207 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking_Panel exported successfully - Processing block: Maselli_PA_Ctrl_Read... - Exporting Maselli_PA_Ctrl_Read as XML... -2025-05-05 12:38:35,262 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Ctrl_Read exported successfully -2025-05-05 12:38:35,263 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Ctrl_Read exported successfully - Processing block: MaxCarboCO2 Vol... - Exporting MaxCarboCO2 Vol as XML... -2025-05-05 12:38:35,299 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MaxCarboCO2 Vol exported successfully -2025-05-05 12:38:35,301 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MaxCarboCO2 Vol exported successfully - Exporting MaxCarboCO2 Vol as SCL... -2025-05-05 12:38:35,332 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block MaxCarboCO2 Vol external source successfully generated - Processing block: MessageScroll... - Exporting MessageScroll as XML... -2025-05-05 12:38:35,367 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MessageScroll exported successfully -2025-05-05 12:38:35,369 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MessageScroll exported successfully - Processing block: mPDS_SYR_PA_Ctrl_Read... - Exporting mPDS_SYR_PA_Ctrl_Read as XML... -2025-05-05 12:38:35,483 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Ctrl_Read exported successfully -2025-05-05 12:38:35,499 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Ctrl_Read exported successfully - Processing block: Output_CO2InjPress... - Exporting Output_CO2InjPress as XML... -2025-05-05 12:38:35,574 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Output_CO2InjPress exported successfully -2025-05-05 12:38:35,576 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Output_CO2InjPress exported successfully - Processing block: Pneumatic Valve Fault... - Exporting Pneumatic Valve Fault as XML... -2025-05-05 12:38:35,615 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Pneumatic Valve Fault exported successfully -2025-05-05 12:38:35,616 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Pneumatic Valve Fault exported successfully - Processing block: PPM O2... - Exporting PPM O2 as XML... -2025-05-05 12:38:35,654 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPM O2 exported successfully -2025-05-05 12:38:35,655 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPM O2 exported successfully - Exporting PPM O2 as SCL... -2025-05-05 12:38:35,678 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block PPM O2 external source successfully generated - Processing block: PPM303_VFC_Ctrl... - Exporting PPM303_VFC_Ctrl as XML... -2025-05-05 12:38:35,727 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPM303_VFC_Ctrl exported successfully -2025-05-05 12:38:35,729 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPM303_VFC_Ctrl exported successfully - Processing block: PPM305_VFC_Ctrl... - Exporting PPM305_VFC_Ctrl as XML... -2025-05-05 12:38:35,788 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPM305_VFC_Ctrl exported successfully -2025-05-05 12:38:35,789 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPM305_VFC_Ctrl exported successfully - Processing block: PPM307_VFC_Ctrl... - Exporting PPM307_VFC_Ctrl as XML... -2025-05-05 12:38:35,868 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPM307_VFC_Ctrl exported successfully -2025-05-05 12:38:35,869 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPM307_VFC_Ctrl exported successfully - Processing block: PPN301_VFC_Ctrl... - Exporting PPN301_VFC_Ctrl as XML... -2025-05-05 12:38:35,927 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPN301_VFC_Ctrl exported successfully -2025-05-05 12:38:35,928 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPN301_VFC_Ctrl exported successfully - Processing block: PPP302_VFC_Ctrl... - Exporting PPP302_VFC_Ctrl as XML... -2025-05-05 12:38:35,991 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPP302_VFC_Ctrl exported successfully -2025-05-05 12:38:35,992 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPP302_VFC_Ctrl exported successfully - Processing block: ProdBrixRecovery_BrixCal... - Exporting ProdBrixRecovery_BrixCal as XML... -2025-05-05 12:38:36,054 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdBrixRecovery_BrixCal exported successfully -2025-05-05 12:38:36,055 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdBrixRecovery_BrixCal exported successfully - Exporting ProdBrixRecovery_BrixCal as SCL... -2025-05-05 12:38:36,089 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProdBrixRecovery_BrixCal external source successfully generated - Processing block: ProdReportManager... - Exporting ProdReportManager as XML... -2025-05-05 12:38:36,224 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdReportManager exported successfully -2025-05-05 12:38:36,240 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdReportManager exported successfully - Processing block: ProductQuality_Messages... - Exporting ProductQuality_Messages as XML... -2025-05-05 12:38:36,304 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductQuality_Messages exported successfully -2025-05-05 12:38:36,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductQuality_Messages exported successfully - Exporting ProductQuality_Messages as SCL... -2025-05-05 12:38:36,349 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProductQuality_Messages external source successfully generated - Processing block: Profibus Network... - Exporting Profibus Network as XML... -2025-05-05 12:38:36,507 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Profibus Network exported successfully -2025-05-05 12:38:36,510 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Profibus Network exported successfully - Processing block: QCO Monitor... - Exporting QCO Monitor as XML... -2025-05-05 12:38:36,679 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: QCO Monitor exported successfully -2025-05-05 12:38:36,680 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - QCO Monitor exported successfully - Processing block: ReadAnalogIn... - Exporting ReadAnalogIn as XML... -2025-05-05 12:38:36,743 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ReadAnalogIn exported successfully -2025-05-05 12:38:36,744 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ReadAnalogIn exported successfully - Processing block: RecipeCalculation... - Exporting RecipeCalculation as XML... -2025-05-05 12:38:36,802 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeCalculation exported successfully -2025-05-05 12:38:36,803 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeCalculation exported successfully - Exporting RecipeCalculation as SCL... -2025-05-05 12:38:36,841 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block RecipeCalculation external source successfully generated - Processing block: REPLACE_Mod... - Exporting REPLACE_Mod as XML... -2025-05-05 12:38:36,880 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: REPLACE_Mod exported successfully -2025-05-05 12:38:36,881 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - REPLACE_Mod exported successfully - Processing block: SyrBrix_SyrupCorrPerc... - Exporting SyrBrix_SyrupCorrPerc as XML... -2025-05-05 12:38:36,926 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrBrix_SyrupCorrPerc exported successfully -2025-05-05 12:38:36,928 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrBrix_SyrupCorrPerc exported successfully - Exporting SyrBrix_SyrupCorrPerc as SCL... -2025-05-05 12:38:36,955 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SyrBrix_SyrupCorrPerc external source successfully generated - Processing block: Syrup Rinse QCO_Seq... - Exporting Syrup Rinse QCO_Seq as XML... -2025-05-05 12:38:37,009 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup Rinse QCO_Seq exported successfully -2025-05-05 12:38:37,011 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup Rinse QCO_Seq exported successfully - Processing block: SyrupRoomCtrl_UpdateVal... - Exporting SyrupRoomCtrl_UpdateVal as XML... -2025-05-05 12:38:37,049 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrupRoomCtrl_UpdateVal exported successfully -2025-05-05 12:38:37,051 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrupRoomCtrl_UpdateVal exported successfully - Exporting SyrupRoomCtrl_UpdateVal as SCL... -2025-05-05 12:38:37,080 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SyrupRoomCtrl_UpdateVal external source successfully generated - Processing block: T_Timer... - Exporting T_Timer as XML... -2025-05-05 12:38:37,112 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: T_Timer exported successfully -2025-05-05 12:38:37,114 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - T_Timer exported successfully - Processing block: TankLevelToHeight... - Exporting TankLevelToHeight as XML... -2025-05-05 12:38:37,164 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: TankLevelToHeight exported successfully -2025-05-05 12:38:37,166 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - TankLevelToHeight exported successfully - Exporting TankLevelToHeight as SCL... -2025-05-05 12:38:37,192 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block TankLevelToHeight external source successfully generated - Processing block: VacuumCtrl... - Exporting VacuumCtrl as XML... -2025-05-05 12:38:37,242 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: VacuumCtrl exported successfully -2025-05-05 12:38:37,242 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - VacuumCtrl exported successfully - Processing block: ValveFlow... - Exporting ValveFlow as XML... -2025-05-05 12:38:37,286 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ValveFlow exported successfully -2025-05-05 12:38:37,288 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ValveFlow exported successfully - Exporting ValveFlow as SCL... -2025-05-05 12:38:37,319 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ValveFlow external source successfully generated - Processing block: BlenderPID__Main... - Exporting BlenderPID__Main as XML... -2025-05-05 12:38:37,567 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID__Main exported successfully -2025-05-05 12:38:37,568 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID__Main exported successfully - Exporting BlenderPID__Main as SCL... -2025-05-05 12:38:37,645 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID__Main external source successfully generated - Processing block: BlenderPID_BlendingFault... - Exporting BlenderPID_BlendingFault as XML... -2025-05-05 12:38:37,741 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_BlendingFault exported successfully -2025-05-05 12:38:37,742 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_BlendingFault exported successfully - Exporting BlenderPID_BlendingFault as SCL... -2025-05-05 12:38:37,777 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_BlendingFault external source successfully generated - Processing block: BlenderPID_PIDFFCalc... - Exporting BlenderPID_PIDFFCalc as XML... -2025-05-05 12:38:37,881 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDFFCalc exported successfully -2025-05-05 12:38:37,882 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDFFCalc exported successfully - Exporting BlenderPID_PIDFFCalc as SCL... -2025-05-05 12:38:37,935 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDFFCalc external source successfully generated - Processing block: BlenderPID_PIDInitParam... - Exporting BlenderPID_PIDInitParam as XML... -2025-05-05 12:38:38,038 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDInitParam exported successfully -2025-05-05 12:38:38,054 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDInitParam exported successfully - Exporting BlenderPID_PIDInitParam as SCL... -2025-05-05 12:38:38,113 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDInitParam external source successfully generated - Processing block: BlenderPID_PIDSPCalc... - Exporting BlenderPID_PIDSPCalc as XML... -2025-05-05 12:38:38,270 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDSPCalc exported successfully -2025-05-05 12:38:38,271 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDSPCalc exported successfully - Exporting BlenderPID_PIDSPCalc as SCL... -2025-05-05 12:38:38,364 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDSPCalc external source successfully generated - Processing block: BlenderPIDCtrl_Monitor... - Exporting BlenderPIDCtrl_Monitor as XML... -2025-05-05 12:38:38,440 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_Monitor exported successfully -2025-05-05 12:38:38,441 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_Monitor exported successfully - Processing block: BlenderPIDCtrl_ReadAnIn... - Exporting BlenderPIDCtrl_ReadAnIn as XML... -2025-05-05 12:38:38,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_ReadAnIn exported successfully -2025-05-05 12:38:38,553 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_ReadAnIn exported successfully - Processing block: BlenderPIDCtrl_SaveInteg... - Exporting BlenderPIDCtrl_SaveInteg as XML... -2025-05-05 12:38:38,675 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_SaveInteg exported successfully -2025-05-05 12:38:38,676 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_SaveInteg exported successfully - Exporting BlenderPIDCtrl_SaveInteg as SCL... -2025-05-05 12:38:38,723 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPIDCtrl_SaveInteg external source successfully generated - Processing block: BlenderRun_MeasFilSpeed... - Exporting BlenderRun_MeasFilSpeed as XML... -2025-05-05 12:38:38,837 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_MeasFilSpeed exported successfully -2025-05-05 12:38:38,838 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_MeasFilSpeed exported successfully - Processing block: BrixTracking_ProdSamples... - Exporting BrixTracking_ProdSamples as XML... -2025-05-05 12:38:38,888 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_ProdSamples exported successfully -2025-05-05 12:38:38,890 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_ProdSamples exported successfully - Exporting BrixTracking_ProdSamples as SCL... -2025-05-05 12:38:38,918 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BrixTracking_ProdSamples external source successfully generated - Processing block: BrixTracking_SampleTime... - Exporting BrixTracking_SampleTime as XML... -2025-05-05 12:38:38,992 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_SampleTime exported successfully -2025-05-05 12:38:38,995 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_SampleTime exported successfully - Exporting BrixTracking_SampleTime as SCL... -2025-05-05 12:38:39,055 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BrixTracking_SampleTime external source successfully generated - Processing block: CIPRecipeManagement... - Exporting CIPRecipeManagement as XML... -2025-05-05 12:38:39,183 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipeManagement exported successfully -2025-05-05 12:38:39,183 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipeManagement exported successfully - Processing block: Co2_Counters... - Exporting Co2_Counters as XML... -2025-05-05 12:38:39,292 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Co2_Counters exported successfully -2025-05-05 12:38:39,309 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Co2_Counters exported successfully - Processing block: CO2Tracking... - Exporting CO2Tracking as XML... -2025-05-05 12:38:39,432 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking exported successfully -2025-05-05 12:38:39,433 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking exported successfully - Processing block: CO2Tracking_ProdSamples... - Exporting CO2Tracking_ProdSamples as XML... -2025-05-05 12:38:39,472 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_ProdSamples exported successfully -2025-05-05 12:38:39,475 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_ProdSamples exported successfully - Exporting CO2Tracking_ProdSamples as SCL... -2025-05-05 12:38:39,513 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2Tracking_ProdSamples external source successfully generated - Processing block: CO2Tracking_SampleTime... - Exporting CO2Tracking_SampleTime as XML... -2025-05-05 12:38:39,600 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_SampleTime exported successfully -2025-05-05 12:38:39,602 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_SampleTime exported successfully - Exporting CO2Tracking_SampleTime as SCL... -2025-05-05 12:38:39,647 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2Tracking_SampleTime external source successfully generated - Processing block: Default_SupervisionFB... - Exporting Default_SupervisionFB as XML... - ERROR exporting block Default_SupervisionFB: OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.FB'. - - - -Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.FB'. - - - -The programming language 'ProDiag' is not supported during import and export. - Processing block: Delay... - Exporting Delay as XML... -2025-05-05 12:38:39,817 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Delay exported successfully -2025-05-05 12:38:39,818 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Delay exported successfully - Exporting Delay as SCL... -2025-05-05 12:38:39,876 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Delay external source successfully generated - Processing block: Input... - Exporting Input as XML... -2025-05-05 12:38:40,457 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input exported successfully -2025-05-05 12:38:40,459 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input exported successfully - Processing block: Integral... - Exporting Integral as XML... -2025-05-05 12:38:40,518 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Integral exported successfully -2025-05-05 12:38:40,519 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Integral exported successfully - Exporting Integral as SCL... -2025-05-05 12:38:40,566 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Integral external source successfully generated - Processing block: Key Read & Write... - Exporting Key Read & Write as XML... -2025-05-05 12:38:40,888 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Key Read & Write exported successfully -2025-05-05 12:38:40,891 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Key Read & Write exported successfully - Processing block: LowPassFilter... - Exporting LowPassFilter as XML... -2025-05-05 12:38:40,945 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LowPassFilter exported successfully -2025-05-05 12:38:40,946 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LowPassFilter exported successfully - Exporting LowPassFilter as SCL... -2025-05-05 12:38:40,998 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block LowPassFilter external source successfully generated - Processing block: MFMAnalogValues... - Exporting MFMAnalogValues as XML... -2025-05-05 12:38:41,169 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MFMAnalogValues exported successfully -2025-05-05 12:38:41,169 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MFMAnalogValues exported successfully - Exporting MFMAnalogValues as SCL... -2025-05-05 12:38:41,246 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block MFMAnalogValues external source successfully generated - Processing block: MSE Slope... - Exporting MSE Slope as XML... -2025-05-05 12:38:41,292 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MSE Slope exported successfully -2025-05-05 12:38:41,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MSE Slope exported successfully - Exporting MSE Slope as SCL... -2025-05-05 12:38:41,348 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block MSE Slope external source successfully generated - Processing block: PID_Filling_Head_Calc... - Exporting PID_Filling_Head_Calc as XML... -2025-05-05 12:38:41,429 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head_Calc exported successfully -2025-05-05 12:38:41,432 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head_Calc exported successfully - Exporting PID_Filling_Head_Calc as SCL... -2025-05-05 12:38:41,490 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block PID_Filling_Head_Calc external source successfully generated - Processing block: PID_RMM301... - Exporting PID_RMM301 as XML... -2025-05-05 12:38:41,597 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM301 exported successfully -2025-05-05 12:38:41,613 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM301 exported successfully - Processing block: PID_RMM303... - Exporting PID_RMM303 as XML... -2025-05-05 12:38:41,703 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM303 exported successfully -2025-05-05 12:38:41,704 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM303 exported successfully - Processing block: PID_RMM304... - Exporting PID_RMM304 as XML... -2025-05-05 12:38:41,767 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM304 exported successfully -2025-05-05 12:38:41,768 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM304 exported successfully - Processing block: PID_RMP302... - Exporting PID_RMP302 as XML... -2025-05-05 12:38:41,835 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMP302 exported successfully -2025-05-05 12:38:41,836 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMP302 exported successfully - Processing block: PID_RVM301... - Exporting PID_RVM301 as XML... -2025-05-05 12:38:41,938 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM301 exported successfully -2025-05-05 12:38:41,939 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM301 exported successfully - Processing block: PID_RVM319_PRD... - Exporting PID_RVM319_PRD as XML... -2025-05-05 12:38:42,018 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM319_PRD exported successfully -2025-05-05 12:38:42,019 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM319_PRD exported successfully - Processing block: PID_RVN302... - Exporting PID_RVN302 as XML... -2025-05-05 12:38:42,126 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVN302 exported successfully -2025-05-05 12:38:42,128 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVN302 exported successfully - Processing block: PID_RVP303... - Exporting PID_RVP303 as XML... -2025-05-05 12:38:42,219 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVP303 exported successfully -2025-05-05 12:38:42,221 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVP303 exported successfully - Processing block: PID_RVS318... - Exporting PID_RVS318 as XML... -2025-05-05 12:38:42,275 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVS318 exported successfully -2025-05-05 12:38:42,276 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVS318 exported successfully - Processing block: PIDControl... - Exporting PIDControl as XML... -2025-05-05 12:38:42,345 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PIDControl exported successfully -2025-05-05 12:38:42,347 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PIDControl exported successfully - Processing block: Procedure... - Exporting Procedure as XML... -2025-05-05 12:38:42,485 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Procedure exported successfully -2025-05-05 12:38:42,501 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Procedure exported successfully - Processing block: ProcedureBlendFill StartUp... - Exporting ProcedureBlendFill StartUp as XML... -2025-05-05 12:38:42,637 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureBlendFill StartUp exported successfully -2025-05-05 12:38:42,638 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureBlendFill StartUp exported successfully - Processing block: ProcedureBrixTracking... - Exporting ProcedureBrixTracking as XML... -2025-05-05 12:38:42,740 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureBrixTracking exported successfully -2025-05-05 12:38:42,741 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureBrixTracking exported successfully - Processing block: ProcedureCarboWaterLine... - Exporting ProcedureCarboWaterLine as XML... -2025-05-05 12:38:42,828 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureCarboWaterLine exported successfully -2025-05-05 12:38:42,830 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureCarboWaterLine exported successfully - Processing block: ProcedureDeaireator StartUp... - Exporting ProcedureDeaireator StartUp as XML... -2025-05-05 12:38:42,918 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureDeaireator StartUp exported successfully -2025-05-05 12:38:42,920 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureDeaireator StartUp exported successfully - Processing block: ProcedureFirstProduction... - Exporting ProcedureFirstProduction as XML... -2025-05-05 12:38:43,060 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureFirstProduction exported successfully -2025-05-05 12:38:43,061 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureFirstProduction exported successfully - Processing block: ProcedureProdBrixRecovery... - Exporting ProcedureProdBrixRecovery as XML... -2025-05-05 12:38:43,139 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureProdBrixRecovery exported successfully -2025-05-05 12:38:43,140 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureProdBrixRecovery exported successfully - Processing block: ProcedureProdTankDrain... - Exporting ProcedureProdTankDrain as XML... -2025-05-05 12:38:43,234 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureProdTankDrain exported successfully -2025-05-05 12:38:43,235 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureProdTankDrain exported successfully - Processing block: ProcedureProdTankRunOut... - Exporting ProcedureProdTankRunOut as XML... -2025-05-05 12:38:43,358 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureProdTankRunOut exported successfully -2025-05-05 12:38:43,373 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureProdTankRunOut exported successfully - Processing block: ProcedureSyrup RunOut... - Exporting ProcedureSyrup RunOut as XML... -2025-05-05 12:38:43,514 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureSyrup RunOut exported successfully -2025-05-05 12:38:43,515 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureSyrup RunOut exported successfully - Processing block: ProcedureSyrupLineMFMPrep... - Exporting ProcedureSyrupLineMFMPrep as XML... -2025-05-05 12:38:43,670 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureSyrupLineMFMPrep exported successfully -2025-05-05 12:38:43,671 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureSyrupLineMFMPrep exported successfully - Processing block: ProcedureSyrupMFMStartUp... - Exporting ProcedureSyrupMFMStartUp as XML... -2025-05-05 12:38:43,737 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProcedureSyrupMFMStartUp exported successfully -2025-05-05 12:38:43,765 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProcedureSyrupMFMStartUp exported successfully - Processing block: ProductAvailable... - Exporting ProductAvailable as XML... -2025-05-05 12:38:43,841 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductAvailable exported successfully -2025-05-05 12:38:43,843 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductAvailable exported successfully - Exporting ProductAvailable as SCL... -2025-05-05 12:38:43,885 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProductAvailable external source successfully generated - Processing block: ProductPipeDrain... - Exporting ProductPipeDrain as XML... -2025-05-05 12:38:43,982 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeDrain exported successfully -2025-05-05 12:38:43,983 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeDrain exported successfully - Processing block: ProductPipeRunOut... - Exporting ProductPipeRunOut as XML... -2025-05-05 12:38:44,105 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeRunOut exported successfully -2025-05-05 12:38:44,121 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeRunOut exported successfully - Processing block: Signal Gen... - Exporting Signal Gen as XML... -2025-05-05 12:38:44,182 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Signal Gen exported successfully -2025-05-05 12:38:44,183 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Signal Gen exported successfully - Exporting Signal Gen as SCL... -2025-05-05 12:38:44,218 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Signal Gen external source successfully generated - Processing block: SlewLimit... - Exporting SlewLimit as XML... -2025-05-05 12:38:44,256 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SlewLimit exported successfully -2025-05-05 12:38:44,257 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SlewLimit exported successfully - Exporting SlewLimit as SCL... -2025-05-05 12:38:44,301 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SlewLimit external source successfully generated - Processing block: Statistical_Analisys... - Exporting Statistical_Analisys as XML... -2025-05-05 12:38:44,349 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Statistical_Analisys exported successfully -2025-05-05 12:38:44,352 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Statistical_Analisys exported successfully - Exporting Statistical_Analisys as SCL... -2025-05-05 12:38:44,404 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Statistical_Analisys external source successfully generated - Processing block: SubCarb... - Exporting SubCarb as XML... -2025-05-05 12:38:44,585 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SubCarb exported successfully -2025-05-05 12:38:44,587 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SubCarb exported successfully - Processing block: SyrBrix Autocorrection... - Exporting SyrBrix Autocorrection as XML... -2025-05-05 12:38:44,769 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrBrix Autocorrection exported successfully -2025-05-05 12:38:44,770 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrBrix Autocorrection exported successfully - Processing block: System_Run_Out... - Exporting System_Run_Out as XML... -2025-05-05 12:38:45,052 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_Run_Out exported successfully -2025-05-05 12:38:45,053 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_Run_Out exported successfully - Processing block: Blender_Constants... - Exporting Blender_Constants as XML... -2025-05-05 12:38:45,093 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Constants exported successfully -2025-05-05 12:38:45,095 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Constants exported successfully - Processing block: Blender_Variables... - Exporting Blender_Variables as XML... -2025-05-05 12:38:45,206 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Variables exported successfully -2025-05-05 12:38:45,207 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Variables exported successfully - Processing block: Blender_Variables_Pers... - Exporting Blender_Variables_Pers as XML... -2025-05-05 12:38:45,264 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Variables_Pers exported successfully -2025-05-05 12:38:45,266 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Variables_Pers exported successfully - Processing block: Blocco_dati_Test... - Exporting Blocco_dati_Test as XML... -2025-05-05 12:38:45,315 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blocco_dati_Test exported successfully -2025-05-05 12:38:45,316 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blocco_dati_Test exported successfully - Processing block: CIP_Program_Variables... - Exporting CIP_Program_Variables as XML... -2025-05-05 12:38:45,424 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIP_Program_Variables exported successfully -2025-05-05 12:38:45,440 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIP_Program_Variables exported successfully - Processing block: CIPRecipe#01... - Exporting CIPRecipe#01 as XML... -2025-05-05 12:38:45,503 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#01 exported successfully -2025-05-05 12:38:45,505 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#01 exported successfully - Processing block: CIPRecipe#02... - Exporting CIPRecipe#02 as XML... -2025-05-05 12:38:45,567 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#02 exported successfully -2025-05-05 12:38:45,568 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#02 exported successfully - Processing block: CIPRecipe#03... - Exporting CIPRecipe#03 as XML... -2025-05-05 12:38:45,604 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#03 exported successfully -2025-05-05 12:38:45,604 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#03 exported successfully - Processing block: CIPRecipe#04... - Exporting CIPRecipe#04 as XML... -2025-05-05 12:38:45,636 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#04 exported successfully -2025-05-05 12:38:45,637 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#04 exported successfully - Processing block: CIPRecipe#05... - Exporting CIPRecipe#05 as XML... -2025-05-05 12:38:45,675 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#05 exported successfully -2025-05-05 12:38:45,677 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#05 exported successfully - Processing block: CIPRecipe#06... - Exporting CIPRecipe#06 as XML... -2025-05-05 12:38:45,724 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#06 exported successfully -2025-05-05 12:38:45,726 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#06 exported successfully - Processing block: CIPRecipe#07... - Exporting CIPRecipe#07 as XML... -2025-05-05 12:38:45,771 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#07 exported successfully -2025-05-05 12:38:45,772 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#07 exported successfully - Processing block: CIPRecipe#08... - Exporting CIPRecipe#08 as XML... -2025-05-05 12:38:45,816 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#08 exported successfully -2025-05-05 12:38:45,818 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#08 exported successfully - Processing block: CIPRecipe#09... - Exporting CIPRecipe#09 as XML... -2025-05-05 12:38:45,852 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#09 exported successfully -2025-05-05 12:38:45,853 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#09 exported successfully - Processing block: CIPRecipe#10... - Exporting CIPRecipe#10 as XML... -2025-05-05 12:38:45,885 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#10 exported successfully -2025-05-05 12:38:45,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#10 exported successfully - Processing block: CIPRecipe#11... - Exporting CIPRecipe#11 as XML... -2025-05-05 12:38:45,954 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#11 exported successfully -2025-05-05 12:38:45,956 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#11 exported successfully - Processing block: CIPRecipe#12... - Exporting CIPRecipe#12 as XML... -2025-05-05 12:38:46,017 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#12 exported successfully -2025-05-05 12:38:46,018 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#12 exported successfully - Processing block: CIPRecipe#13... - Exporting CIPRecipe#13 as XML... -2025-05-05 12:38:46,077 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#13 exported successfully -2025-05-05 12:38:46,078 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#13 exported successfully - Processing block: CIPRecipe#14... - Exporting CIPRecipe#14 as XML... -2025-05-05 12:38:46,140 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#14 exported successfully -2025-05-05 12:38:46,141 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#14 exported successfully - Processing block: CIPRecipe#15... - Exporting CIPRecipe#15 as XML... -2025-05-05 12:38:46,175 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#15 exported successfully -2025-05-05 12:38:46,176 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#15 exported successfully - Processing block: CIPRecipe#16... - Exporting CIPRecipe#16 as XML... -2025-05-05 12:38:46,222 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#16 exported successfully -2025-05-05 12:38:46,224 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#16 exported successfully - Processing block: CIPRecipe#17... - Exporting CIPRecipe#17 as XML... -2025-05-05 12:38:46,281 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#17 exported successfully -2025-05-05 12:38:46,282 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#17 exported successfully - Processing block: CIPRecipe#18... - Exporting CIPRecipe#18 as XML... -2025-05-05 12:38:46,327 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#18 exported successfully -2025-05-05 12:38:46,328 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#18 exported successfully - Processing block: CIPRecipe#19... - Exporting CIPRecipe#19 as XML... -2025-05-05 12:38:46,390 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#19 exported successfully -2025-05-05 12:38:46,392 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#19 exported successfully - Processing block: CIPRecipe#20... - Exporting CIPRecipe#20 as XML... -2025-05-05 12:38:46,433 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#20 exported successfully -2025-05-05 12:38:46,434 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#20 exported successfully - Processing block: CIPRecipe#21... - Exporting CIPRecipe#21 as XML... -2025-05-05 12:38:46,501 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#21 exported successfully -2025-05-05 12:38:46,503 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#21 exported successfully - Processing block: CIPRecipe#22... - Exporting CIPRecipe#22 as XML... -2025-05-05 12:38:46,544 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#22 exported successfully -2025-05-05 12:38:46,545 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#22 exported successfully - Processing block: CIPRecipe#23... - Exporting CIPRecipe#23 as XML... -2025-05-05 12:38:46,601 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#23 exported successfully -2025-05-05 12:38:46,603 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#23 exported successfully - Processing block: CIPRecipe#24... - Exporting CIPRecipe#24 as XML... -2025-05-05 12:38:46,645 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#24 exported successfully -2025-05-05 12:38:46,647 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#24 exported successfully - Processing block: CIPRecipe#25... - Exporting CIPRecipe#25 as XML... -2025-05-05 12:38:46,682 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#25 exported successfully -2025-05-05 12:38:46,683 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#25 exported successfully - Processing block: CIPRecipe#26... - Exporting CIPRecipe#26 as XML... -2025-05-05 12:38:46,733 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#26 exported successfully -2025-05-05 12:38:46,735 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#26 exported successfully - Processing block: CIPRecipe#27... - Exporting CIPRecipe#27 as XML... -2025-05-05 12:38:46,773 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#27 exported successfully -2025-05-05 12:38:46,774 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#27 exported successfully - Processing block: CIPRecipe#28... - Exporting CIPRecipe#28 as XML... -2025-05-05 12:38:46,812 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#28 exported successfully -2025-05-05 12:38:46,826 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#28 exported successfully - Processing block: CIPRecipe#29... - Exporting CIPRecipe#29 as XML... -2025-05-05 12:38:46,865 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#29 exported successfully -2025-05-05 12:38:46,867 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#29 exported successfully - Processing block: CIPRecipe#30... - Exporting CIPRecipe#30 as XML... -2025-05-05 12:38:46,919 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#30 exported successfully -2025-05-05 12:38:46,921 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#30 exported successfully - Processing block: CIPReportDB... - Exporting CIPReportDB as XML... -2025-05-05 12:38:46,965 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPReportDB exported successfully -2025-05-05 12:38:46,966 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPReportDB exported successfully - Processing block: Filler_Head_Variables... - Exporting Filler_Head_Variables as XML... -2025-05-05 12:38:46,997 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Filler_Head_Variables exported successfully -2025-05-05 12:38:46,999 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Filler_Head_Variables exported successfully - Processing block: GLOBAL_DIAG_DB... - Exporting GLOBAL_DIAG_DB as XML... -2025-05-05 12:38:47,039 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GLOBAL_DIAG_DB exported successfully -2025-05-05 12:38:47,040 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GLOBAL_DIAG_DB exported successfully - Processing block: HMI CPU_DP Diag... - Exporting HMI CPU_DP Diag as XML... -2025-05-05 12:38:47,084 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI CPU_DP Diag exported successfully -2025-05-05 12:38:47,086 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI CPU_DP Diag exported successfully - Processing block: HMI Key User... - Exporting HMI Key User as XML... -2025-05-05 12:38:47,141 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI Key User exported successfully -2025-05-05 12:38:47,142 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI Key User exported successfully - Processing block: HMI_Alarms... - Exporting HMI_Alarms as XML... -2025-05-05 12:38:47,190 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Alarms exported successfully -2025-05-05 12:38:47,205 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Alarms exported successfully - Processing block: HMI_Digital... - Exporting HMI_Digital as XML... -2025-05-05 12:38:47,239 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Digital exported successfully -2025-05-05 12:38:47,241 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Digital exported successfully - Processing block: HMI_Instrument... - Exporting HMI_Instrument as XML... -2025-05-05 12:38:47,290 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Instrument exported successfully -2025-05-05 12:38:47,292 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Instrument exported successfully - Processing block: HMI_IO_Showing... - Exporting HMI_IO_Showing as XML... -2025-05-05 12:38:47,362 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_IO_Showing exported successfully -2025-05-05 12:38:47,364 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_IO_Showing exported successfully - Processing block: HMI_Local_CIP_Variables... - Exporting HMI_Local_CIP_Variables as XML... -2025-05-05 12:38:47,417 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Local_CIP_Variables exported successfully -2025-05-05 12:38:47,419 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Local_CIP_Variables exported successfully - Processing block: HMI_PID... - Exporting HMI_PID as XML... -2025-05-05 12:38:47,471 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_PID exported successfully -2025-05-05 12:38:47,473 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_PID exported successfully - Processing block: HMI_Recipe_Edit... - Exporting HMI_Recipe_Edit as XML... -2025-05-05 12:38:47,547 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Recipe_Edit exported successfully -2025-05-05 12:38:47,548 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Recipe_Edit exported successfully - Processing block: HMI_Recipe_Name... - Exporting HMI_Recipe_Name as XML... -2025-05-05 12:38:47,593 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Recipe_Name exported successfully -2025-05-05 12:38:47,594 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Recipe_Name exported successfully - Processing block: HMI_Refrige_IO_Showing... - Exporting HMI_Refrige_IO_Showing as XML... -2025-05-05 12:38:47,635 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Refrige_IO_Showing exported successfully -2025-05-05 12:38:47,636 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Refrige_IO_Showing exported successfully - Processing block: HMI_Service... - Exporting HMI_Service as XML... -2025-05-05 12:38:47,701 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Service exported successfully -2025-05-05 12:38:47,705 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Service exported successfully - Processing block: HMI_Variables_Cmd... - Exporting HMI_Variables_Cmd as XML... -2025-05-05 12:38:47,782 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Variables_Cmd exported successfully -2025-05-05 12:38:47,784 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Variables_Cmd exported successfully - Processing block: HMI_Variables_Status... - Exporting HMI_Variables_Status as XML... -2025-05-05 12:38:47,829 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Variables_Status exported successfully -2025-05-05 12:38:47,831 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Variables_Status exported successfully - Processing block: Interlocking_Variables... - Exporting Interlocking_Variables as XML... -2025-05-05 12:38:47,921 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking_Variables exported successfully -2025-05-05 12:38:47,922 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking_Variables exported successfully - Processing block: ITC Communic MainData... - Exporting ITC Communic MainData as XML... -2025-05-05 12:38:48,031 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ITC Communic MainData exported successfully -2025-05-05 12:38:48,032 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ITC Communic MainData exported successfully - Processing block: Machine_Co2_Cons... - Exporting Machine_Co2_Cons as XML... -2025-05-05 12:38:48,092 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Machine_Co2_Cons exported successfully -2025-05-05 12:38:48,093 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Machine_Co2_Cons exported successfully - Processing block: Maselli_PA_Data... - Exporting Maselli_PA_Data as XML... -2025-05-05 12:38:48,125 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Data exported successfully -2025-05-05 12:38:48,127 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Data exported successfully - Processing block: PID_Variables... - Exporting PID_Variables as XML... -2025-05-05 12:38:48,164 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Variables exported successfully -2025-05-05 12:38:48,165 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Variables exported successfully - Processing block: Pneumatic Valve Fault DB... - Exporting Pneumatic Valve Fault DB as XML... -2025-05-05 12:38:48,217 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Pneumatic Valve Fault DB exported successfully -2025-05-05 12:38:48,218 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Pneumatic Valve Fault DB exported successfully - Processing block: Procedure_Variables... - Exporting Procedure_Variables as XML... -2025-05-05 12:38:48,256 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Procedure_Variables exported successfully -2025-05-05 12:38:48,258 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Procedure_Variables exported successfully - Processing block: ProdReportDB... - Exporting ProdReportDB as XML... -2025-05-05 12:38:48,297 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdReportDB exported successfully -2025-05-05 12:38:48,298 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdReportDB exported successfully - Processing block: Profibus_Variables... - Exporting Profibus_Variables as XML... -2025-05-05 12:38:48,344 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Profibus_Variables exported successfully -2025-05-05 12:38:48,345 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Profibus_Variables exported successfully - Processing block: QCO Timing DB... - Exporting QCO Timing DB as XML... -2025-05-05 12:38:48,385 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: QCO Timing DB exported successfully -2025-05-05 12:38:48,387 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - QCO Timing DB exported successfully - Processing block: ReadAnalogIn_Fault_DB... - Exporting ReadAnalogIn_Fault_DB as XML... -2025-05-05 12:38:48,452 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ReadAnalogIn_Fault_DB exported successfully -2025-05-05 12:38:48,454 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ReadAnalogIn_Fault_DB exported successfully - Processing block: Recipe #02... - Exporting Recipe #02 as XML... -2025-05-05 12:38:48,503 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #02 exported successfully -2025-05-05 12:38:48,504 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #02 exported successfully - Processing block: Recipe #05... - Exporting Recipe #05 as XML... -2025-05-05 12:38:48,547 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #05 exported successfully -2025-05-05 12:38:48,550 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #05 exported successfully - Processing block: Recipe #06... - Exporting Recipe #06 as XML... -2025-05-05 12:38:48,589 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #06 exported successfully -2025-05-05 12:38:48,590 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #06 exported successfully - Processing block: Recipe #07... - Exporting Recipe #07 as XML... -2025-05-05 12:38:48,627 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #07 exported successfully -2025-05-05 12:38:48,629 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #07 exported successfully - Processing block: Recipe #08... - Exporting Recipe #08 as XML... -2025-05-05 12:38:48,673 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #08 exported successfully -2025-05-05 12:38:48,674 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #08 exported successfully - Processing block: Recipe #26... - Exporting Recipe #26 as XML... -2025-05-05 12:38:48,716 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #26 exported successfully -2025-05-05 12:38:48,717 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #26 exported successfully - Processing block: RecipeEditDataSave... - Exporting RecipeEditDataSave as XML... -2025-05-05 12:38:48,747 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeEditDataSave exported successfully -2025-05-05 12:38:48,748 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeEditDataSave exported successfully - Processing block: SLIM_Variables... - Exporting SLIM_Variables as XML... -2025-05-05 12:38:48,814 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SLIM_Variables exported successfully -2025-05-05 12:38:48,816 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SLIM_Variables exported successfully - Processing block: System_RunOut_Variables... - Exporting System_RunOut_Variables as XML... -2025-05-05 12:38:48,862 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_RunOut_Variables exported successfully -2025-05-05 12:38:48,862 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_RunOut_Variables exported successfully - Processing block: BlenderCtrl_MachineInit... - Exporting BlenderCtrl_MachineInit as XML... -2025-05-05 12:38:49,323 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderCtrl_MachineInit exported successfully -2025-05-05 12:38:49,337 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderCtrl_MachineInit exported successfully - Processing block: Pneumatic Valve Ctrl... - Exporting Pneumatic Valve Ctrl as XML... -2025-05-05 12:38:49,851 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Pneumatic Valve Ctrl exported successfully -2025-05-05 12:38:49,866 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Pneumatic Valve Ctrl exported successfully - Processing block: PumpsControl... - Exporting PumpsControl as XML... -2025-05-05 12:38:50,110 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PumpsControl exported successfully -2025-05-05 12:38:50,111 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PumpsControl exported successfully - Processing block: Safeties... - Exporting Safeties as XML... -2025-05-05 12:38:50,621 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Safeties exported successfully -2025-05-05 12:38:50,638 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Safeties exported successfully - Processing block: HMI_Device... - Exporting HMI_Device as XML... -2025-05-05 12:38:50,717 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Device exported successfully -2025-05-05 12:38:50,718 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Device exported successfully - Processing block: Prod Tank PressCtrl... - Exporting Prod Tank PressCtrl as XML... -2025-05-05 12:38:50,839 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank PressCtrl exported successfully -2025-05-05 12:38:50,840 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank PressCtrl exported successfully - Processing block: BlenderPIDCtrl__Loop... - Exporting BlenderPIDCtrl__Loop as XML... -2025-05-05 12:38:50,932 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl__Loop exported successfully -2025-05-05 12:38:50,932 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl__Loop exported successfully - Processing block: PID_Filling_Head... - Exporting PID_Filling_Head as XML... -2025-05-05 12:38:51,089 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head exported successfully -2025-05-05 12:38:51,090 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head exported successfully - Processing block: TankLevel... - Exporting TankLevel as XML... -2025-05-05 12:38:51,289 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: TankLevel exported successfully -2025-05-05 12:38:51,290 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - TankLevel exported successfully - Processing block: BlenderPID_ActualRecipe... - Exporting BlenderPID_ActualRecipe as XML... -2025-05-05 12:38:51,375 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_ActualRecipe exported successfully -2025-05-05 12:38:51,376 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_ActualRecipe exported successfully - Exporting BlenderPID_ActualRecipe as SCL... -2025-05-05 12:38:51,426 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_ActualRecipe external source successfully generated - Processing block: RecipeManagement - Prod... - Exporting RecipeManagement - Prod as XML... -2025-05-05 12:38:51,632 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement - Prod exported successfully -2025-05-05 12:38:51,646 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement - Prod exported successfully - Processing block: Recipe #47... - Exporting Recipe #47 as XML... -2025-05-05 12:38:51,707 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #47 exported successfully -2025-05-05 12:38:51,709 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #47 exported successfully - Processing block: Recipe #44... - Exporting Recipe #44 as XML... -2025-05-05 12:38:51,771 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #44 exported successfully -2025-05-05 12:38:51,772 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #44 exported successfully - Processing block: Recipe #40... - Exporting Recipe #40 as XML... -2025-05-05 12:38:51,809 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #40 exported successfully -2025-05-05 12:38:51,810 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #40 exported successfully - Processing block: Output... - Exporting Output as XML... -2025-05-05 12:38:52,381 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Output exported successfully -2025-05-05 12:38:52,395 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Output exported successfully - Processing block: Recipe #03... - Exporting Recipe #03 as XML... -2025-05-05 12:38:52,459 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #03 exported successfully -2025-05-05 12:38:52,460 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #03 exported successfully - Processing block: Recipe #04... - Exporting Recipe #04 as XML... -2025-05-05 12:38:52,521 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #04 exported successfully -2025-05-05 12:38:52,523 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #04 exported successfully - Processing block: Recipe #09... - Exporting Recipe #09 as XML... -2025-05-05 12:38:52,583 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #09 exported successfully -2025-05-05 12:38:52,584 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #09 exported successfully - Processing block: Recipe #10... - Exporting Recipe #10 as XML... -2025-05-05 12:38:52,618 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #10 exported successfully -2025-05-05 12:38:52,619 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #10 exported successfully - Processing block: Recipe #11... - Exporting Recipe #11 as XML... -2025-05-05 12:38:52,657 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #11 exported successfully -2025-05-05 12:38:52,658 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #11 exported successfully - Processing block: Recipe #12... - Exporting Recipe #12 as XML... -2025-05-05 12:38:52,706 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #12 exported successfully -2025-05-05 12:38:52,708 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #12 exported successfully - Processing block: Recipe #13... - Exporting Recipe #13 as XML... -2025-05-05 12:38:52,778 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #13 exported successfully -2025-05-05 12:38:52,780 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #13 exported successfully - Processing block: Recipe #14... - Exporting Recipe #14 as XML... -2025-05-05 12:38:52,831 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #14 exported successfully -2025-05-05 12:38:52,832 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #14 exported successfully - Processing block: Recipe #15... - Exporting Recipe #15 as XML... -2025-05-05 12:38:52,864 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #15 exported successfully -2025-05-05 12:38:52,865 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #15 exported successfully - Processing block: Recipe #16... - Exporting Recipe #16 as XML... -2025-05-05 12:38:52,898 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #16 exported successfully -2025-05-05 12:38:52,900 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #16 exported successfully - Processing block: Recipe #17... - Exporting Recipe #17 as XML... -2025-05-05 12:38:52,939 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #17 exported successfully -2025-05-05 12:38:52,940 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #17 exported successfully - Processing block: Recipe #22... - Exporting Recipe #22 as XML... -2025-05-05 12:38:52,984 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #22 exported successfully -2025-05-05 12:38:52,986 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #22 exported successfully - Processing block: Recipe #23... - Exporting Recipe #23 as XML... -2025-05-05 12:38:53,018 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #23 exported successfully -2025-05-05 12:38:53,033 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #23 exported successfully - Processing block: Recipe #24... - Exporting Recipe #24 as XML... -2025-05-05 12:38:53,071 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #24 exported successfully -2025-05-05 12:38:53,072 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #24 exported successfully - Processing block: HMI_Blender_Parameters... - Exporting HMI_Blender_Parameters as XML... -2025-05-05 12:38:53,121 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Blender_Parameters exported successfully -2025-05-05 12:38:53,122 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Blender_Parameters exported successfully - Processing block: Recipe #27... - Exporting Recipe #27 as XML... -2025-05-05 12:38:53,159 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #27 exported successfully -2025-05-05 12:38:53,161 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #27 exported successfully - Processing block: Recipe #33... - Exporting Recipe #33 as XML... -2025-05-05 12:38:53,219 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #33 exported successfully -2025-05-05 12:38:53,221 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #33 exported successfully - Processing block: Recipe #34... - Exporting Recipe #34 as XML... -2025-05-05 12:38:53,267 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #34 exported successfully -2025-05-05 12:38:53,268 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #34 exported successfully - Processing block: Recipe #19... - Exporting Recipe #19 as XML... -2025-05-05 12:38:53,313 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #19 exported successfully -2025-05-05 12:38:53,316 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #19 exported successfully - Processing block: Recipe #20... - Exporting Recipe #20 as XML... -2025-05-05 12:38:53,345 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #20 exported successfully -2025-05-05 12:38:53,350 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #20 exported successfully - Processing block: Recipe #30... - Exporting Recipe #30 as XML... -2025-05-05 12:38:53,387 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #30 exported successfully -2025-05-05 12:38:53,388 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #30 exported successfully - Processing block: Recipe #38... - Exporting Recipe #38 as XML... -2025-05-05 12:38:53,425 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #38 exported successfully -2025-05-05 12:38:53,427 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #38 exported successfully - Processing block: Recipe #21... - Exporting Recipe #21 as XML... -2025-05-05 12:38:53,470 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #21 exported successfully -2025-05-05 12:38:53,473 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #21 exported successfully - Processing block: Recipe #25... - Exporting Recipe #25 as XML... -2025-05-05 12:38:53,521 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #25 exported successfully -2025-05-05 12:38:53,522 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #25 exported successfully - Processing block: Recipe #01... - Exporting Recipe #01 as XML... -2025-05-05 12:38:53,565 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #01 exported successfully -2025-05-05 12:38:53,566 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #01 exported successfully - Processing block: BlenderPIDCtrl_WriteAnOu... - Exporting BlenderPIDCtrl_WriteAnOu as XML... -2025-05-05 12:38:53,715 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_WriteAnOu exported successfully -2025-05-05 12:38:53,732 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_WriteAnOu exported successfully - Processing block: Recipe #28... - Exporting Recipe #28 as XML... -2025-05-05 12:38:53,767 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #28 exported successfully -2025-05-05 12:38:53,768 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #28 exported successfully - Processing block: Recipe #29... - Exporting Recipe #29 as XML... -2025-05-05 12:38:53,810 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #29 exported successfully -2025-05-05 12:38:53,812 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #29 exported successfully - Processing block: Recipe #31... - Exporting Recipe #31 as XML... -2025-05-05 12:38:53,866 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #31 exported successfully -2025-05-05 12:38:53,867 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #31 exported successfully - Processing block: Recipe #32... - Exporting Recipe #32 as XML... -2025-05-05 12:38:53,904 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #32 exported successfully -2025-05-05 12:38:53,918 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #32 exported successfully - Processing block: Recipe #35... - Exporting Recipe #35 as XML... -2025-05-05 12:38:53,951 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #35 exported successfully -2025-05-05 12:38:53,953 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #35 exported successfully - Processing block: Recipe #36... - Exporting Recipe #36 as XML... -2025-05-05 12:38:53,996 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #36 exported successfully -2025-05-05 12:38:53,998 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #36 exported successfully - Processing block: Recipe #37... - Exporting Recipe #37 as XML... -2025-05-05 12:38:54,041 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #37 exported successfully -2025-05-05 12:38:54,043 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #37 exported successfully - Processing block: Recipe #39... - Exporting Recipe #39 as XML... -2025-05-05 12:38:54,074 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #39 exported successfully -2025-05-05 12:38:54,075 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #39 exported successfully - Processing block: Recipe #41... - Exporting Recipe #41 as XML... -2025-05-05 12:38:54,114 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #41 exported successfully -2025-05-05 12:38:54,115 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #41 exported successfully - Processing block: Recipe #42... - Exporting Recipe #42 as XML... -2025-05-05 12:38:54,167 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #42 exported successfully -2025-05-05 12:38:54,169 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #42 exported successfully - Processing block: Recipe #43... - Exporting Recipe #43 as XML... -2025-05-05 12:38:54,207 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #43 exported successfully -2025-05-05 12:38:54,209 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #43 exported successfully - Processing block: Recipe #45... - Exporting Recipe #45 as XML... -2025-05-05 12:38:54,243 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #45 exported successfully -2025-05-05 12:38:54,245 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #45 exported successfully - Processing block: Recipe #46... - Exporting Recipe #46 as XML... -2025-05-05 12:38:54,288 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #46 exported successfully -2025-05-05 12:38:54,290 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #46 exported successfully - Processing block: Recipe #48... - Exporting Recipe #48 as XML... -2025-05-05 12:38:54,324 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #48 exported successfully -2025-05-05 12:38:54,325 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #48 exported successfully - Processing block: Recipe #49... - Exporting Recipe #49 as XML... -2025-05-05 12:38:54,359 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #49 exported successfully -2025-05-05 12:38:54,360 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #49 exported successfully - Processing block: Recipe #18... - Exporting Recipe #18 as XML... -2025-05-05 12:38:54,395 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #18 exported successfully -2025-05-05 12:38:54,396 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #18 exported successfully - Processing block: Recipe #50... - Exporting Recipe #50 as XML... -2025-05-05 12:38:54,427 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #50 exported successfully -2025-05-05 12:38:54,429 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #50 exported successfully +[PLC: CPU 315F-2 PN/DP] Exporting Program Blocks... + XML Target: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML\CPU 315F-2 PN/DP\ProgramBlocks_XML + SCL Target: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML\CPU 315F-2 PN/DP\ProgramBlocks_SCL + Found 410 program blocks. Processing block: ISOonTCP_or_TCP_Protocol... Exporting ISOonTCP_or_TCP_Protocol as XML... -2025-05-05 12:38:54,549 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ISOonTCP_or_TCP_Protocol exported successfully -2025-05-05 12:38:54,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ISOonTCP_or_TCP_Protocol exported successfully - Processing block: mPDS_PA_Control... - Exporting mPDS_PA_Control as XML... -2025-05-05 12:38:54,686 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Control exported successfully -2025-05-05 12:38:54,688 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Control exported successfully - Processing block: mPDS_PA_Ctrl_Parameters... - Exporting mPDS_PA_Ctrl_Parameters as XML... -2025-05-05 12:38:54,751 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Ctrl_Parameters exported successfully -2025-05-05 12:38:54,752 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Ctrl_Parameters exported successfully - Processing block: mPDS_PA_Ctrl_Read... - Exporting mPDS_PA_Ctrl_Read as XML... -2025-05-05 12:38:54,839 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Ctrl_Read exported successfully -2025-05-05 12:38:54,840 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Ctrl_Read exported successfully - Processing block: mPDS_PA_Ctrl_Transfer... - Exporting mPDS_PA_Ctrl_Transfer as XML... -2025-05-05 12:38:54,903 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Ctrl_Transfer exported successfully -2025-05-05 12:38:54,905 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Ctrl_Transfer exported successfully - Processing block: mPDS_PA_Ctrl_Write... - Exporting mPDS_PA_Ctrl_Write as XML... -2025-05-05 12:38:55,047 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Ctrl_Write exported successfully -2025-05-05 12:38:55,049 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Ctrl_Write exported successfully - Exporting mPDS_PA_Ctrl_Write as SCL... -2025-05-05 12:38:55,125 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block mPDS_PA_Ctrl_Write external source successfully generated - Processing block: Output_AnalogValueToHMI... - Exporting Output_AnalogValueToHMI as XML... -2025-05-05 12:38:55,256 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Output_AnalogValueToHMI exported successfully -2025-05-05 12:38:55,257 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Output_AnalogValueToHMI exported successfully - Exporting Output_AnalogValueToHMI as SCL... -2025-05-05 12:38:55,342 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Output_AnalogValueToHMI external source successfully generated - Processing block: mPDS_PA_Data... - Exporting mPDS_PA_Data as XML... -2025-05-05 12:38:55,395 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Data exported successfully -2025-05-05 12:38:55,397 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Data exported successfully - Processing block: mPDS_SYR_PA_Ctrl_Write... - Exporting mPDS_SYR_PA_Ctrl_Write as XML... -2025-05-05 12:38:55,482 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Ctrl_Write exported successfully -2025-05-05 12:38:55,484 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Ctrl_Write exported successfully - Exporting mPDS_SYR_PA_Ctrl_Write as SCL... -2025-05-05 12:38:55,546 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block mPDS_SYR_PA_Ctrl_Write external source successfully generated - Processing block: mPDS_SYR_PA_Ctrl_Trans... - Exporting mPDS_SYR_PA_Ctrl_Trans as XML... -2025-05-05 12:38:55,610 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Ctrl_Trans exported successfully -2025-05-05 12:38:55,611 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Ctrl_Trans exported successfully - Processing block: mPDS_SYR_PA_Ctrl_Param... - Exporting mPDS_SYR_PA_Ctrl_Param as XML... -2025-05-05 12:38:55,683 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Ctrl_Param exported successfully -2025-05-05 12:38:55,684 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Ctrl_Param exported successfully +2025-05-19 18:17:01,967 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ISOonTCP_or_TCP_Protocol exported successfully +2025-05-19 18:17:02,142 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ISOonTCP_or_TCP_Protocol exported successfully + Processing block: PIDControl... + Exporting PIDControl as XML... +2025-05-19 18:17:10,478 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PIDControl exported successfully +2025-05-19 18:17:10,831 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PIDControl exported successfully + Processing block: DETAIL_DP_DIAG... + Exporting DETAIL_DP_DIAG as XML... +2025-05-19 18:17:11,094 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DETAIL_DP_DIAG exported successfully +2025-05-19 18:17:11,110 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DETAIL_DP_DIAG exported successfully + Processing block: Net Dosing Sys Prof... + Exporting Net Dosing Sys Prof as XML... +2025-05-19 18:17:12,103 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net Dosing Sys Prof exported successfully +2025-05-19 18:17:12,117 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net Dosing Sys Prof exported successfully + Processing block: ICS Profibus Comm... + Exporting ICS Profibus Comm as XML... +2025-05-19 18:17:17,458 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ICS Profibus Comm exported successfully +2025-05-19 18:17:17,462 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ICS Profibus Comm exported successfully + Processing block: GNS DriveDiag... + Exporting GNS DriveDiag as XML... +2025-05-19 18:17:18,722 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS DriveDiag exported successfully +2025-05-19 18:17:18,727 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS DriveDiag exported successfully + Processing block: HMI_Blender_Parameters... + Exporting HMI_Blender_Parameters as XML... +2025-05-19 18:17:19,017 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Blender_Parameters exported successfully +2025-05-19 18:17:19,022 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Blender_Parameters exported successfully + Processing block: HMI Drive... + Exporting HMI Drive as XML... +2025-05-19 18:17:19,391 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI Drive exported successfully +2025-05-19 18:17:19,397 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI Drive exported successfully + Processing block: GNS DriveDiagMain... + Exporting GNS DriveDiagMain as XML... +2025-05-19 18:17:22,991 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS DriveDiagMain exported successfully +2025-05-19 18:17:22,995 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS DriveDiagMain exported successfully + Processing block: Integral... + Exporting Integral as XML... +2025-05-19 18:17:25,571 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Integral exported successfully +2025-05-19 18:17:25,575 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Integral exported successfully + Exporting Integral as SCL... +2025-05-19 18:17:26,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Integral external source successfully generated + Processing block: LowPassFilter... + Exporting LowPassFilter as XML... +2025-05-19 18:17:27,542 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LowPassFilter exported successfully +2025-05-19 18:17:27,557 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LowPassFilter exported successfully + Exporting LowPassFilter as SCL... +2025-05-19 18:17:27,785 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block LowPassFilter external source successfully generated + Processing block: SlewLimit... + Exporting SlewLimit as XML... +2025-05-19 18:17:27,922 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SlewLimit exported successfully +2025-05-19 18:17:27,939 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SlewLimit exported successfully + Exporting SlewLimit as SCL... +2025-05-19 18:17:28,034 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SlewLimit external source successfully generated + Processing block: MSE Slope... + Exporting MSE Slope as XML... +2025-05-19 18:17:28,184 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MSE Slope exported successfully +2025-05-19 18:17:28,187 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MSE Slope exported successfully + Exporting MSE Slope as SCL... +2025-05-19 18:17:28,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block MSE Slope external source successfully generated + Processing block: Statistical_Analisys... + Exporting Statistical_Analisys as XML... +2025-05-19 18:17:29,405 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Statistical_Analisys exported successfully +2025-05-19 18:17:29,412 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Statistical_Analisys exported successfully + Exporting Statistical_Analisys as SCL... +2025-05-19 18:17:29,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Statistical_Analisys external source successfully generated + Processing block: Blender_Variables... + Compiling block Blender_Variables... +2025-05-19 18:17:29,572 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block Blender_Variables. Result: +2025-05-19 18:17:45,705 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:17:45,707 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > Blender_Variables (DB971) > Interface > Syntax error: The specified value "nan" is invalid. +2025-05-19 18:17:45,709 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 3; warnings: 1) + WARNING: Block Blender_Variables inconsistent after compile. Skipping. + Processing block: BrixTracking_ProdSamples... + Exporting BrixTracking_ProdSamples as XML... +2025-05-19 18:17:46,350 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_ProdSamples exported successfully +2025-05-19 18:17:46,354 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_ProdSamples exported successfully + Exporting BrixTracking_ProdSamples as SCL... +2025-05-19 18:17:46,504 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BrixTracking_ProdSamples external source successfully generated + Processing block: Procedure_Variables... + Exporting Procedure_Variables as XML... +2025-05-19 18:17:46,692 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Procedure_Variables exported successfully +2025-05-19 18:17:46,698 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Procedure_Variables exported successfully + Processing block: Blender_Constants... + Exporting Blender_Constants as XML... +2025-05-19 18:17:46,846 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Constants exported successfully +2025-05-19 18:17:46,850 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Constants exported successfully + Processing block: BrixTracking_SampleTime... + Exporting BrixTracking_SampleTime as XML... +2025-05-19 18:17:47,156 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_SampleTime exported successfully +2025-05-19 18:17:47,159 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_SampleTime exported successfully + Exporting BrixTracking_SampleTime as SCL... +2025-05-19 18:17:47,314 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BrixTracking_SampleTime external source successfully generated + Processing block: Delay... + Exporting Delay as XML... +2025-05-19 18:17:47,437 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Delay exported successfully +2025-05-19 18:17:47,451 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Delay exported successfully + Exporting Delay as SCL... +2025-05-19 18:17:47,560 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Delay external source successfully generated + Processing block: CO2Tracking_ProdSamples... + Exporting CO2Tracking_ProdSamples as XML... +2025-05-19 18:17:47,762 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_ProdSamples exported successfully +2025-05-19 18:17:47,766 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_ProdSamples exported successfully + Exporting CO2Tracking_ProdSamples as SCL... +2025-05-19 18:17:47,902 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2Tracking_ProdSamples external source successfully generated + Processing block: CO2Tracking_SampleTime... + Exporting CO2Tracking_SampleTime as XML... +2025-05-19 18:17:48,074 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_SampleTime exported successfully +2025-05-19 18:17:50,241 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_SampleTime exported successfully + Exporting CO2Tracking_SampleTime as SCL... +2025-05-19 18:17:50,530 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2Tracking_SampleTime external source successfully generated + Processing block: Interlocking_Variables... + Exporting Interlocking_Variables as XML... +2025-05-19 18:17:50,854 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking_Variables exported successfully +2025-05-19 18:17:50,858 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking_Variables exported successfully + Processing block: System_RunOut_Variables... + Exporting System_RunOut_Variables as XML... +2025-05-19 18:17:51,029 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_RunOut_Variables exported successfully +2025-05-19 18:17:51,038 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_RunOut_Variables exported successfully + Processing block: CIP_Program_Variables... + Exporting CIP_Program_Variables as XML... +2025-05-19 18:17:51,662 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIP_Program_Variables exported successfully +2025-05-19 18:17:51,903 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIP_Program_Variables exported successfully + Processing block: Filler_Head_Variables... + Exporting Filler_Head_Variables as XML... +2025-05-19 18:17:52,085 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Filler_Head_Variables exported successfully +2025-05-19 18:17:52,088 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Filler_Head_Variables exported successfully + Processing block: Filling_Time_Tranfer_DB... + Exporting Filling_Time_Tranfer_DB as XML... +2025-05-19 18:17:52,211 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Filling_Time_Tranfer_DB exported successfully +2025-05-19 18:17:52,214 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Filling_Time_Tranfer_DB exported successfully + Processing block: Blender_Variables_Pers... + Exporting Blender_Variables_Pers as XML... +2025-05-19 18:17:52,428 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Variables_Pers exported successfully +2025-05-19 18:17:52,444 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Variables_Pers exported successfully + Processing block: HMI_Alarms... + Exporting HMI_Alarms as XML... +2025-05-19 18:17:52,699 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Alarms exported successfully +2025-05-19 18:17:52,703 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Alarms exported successfully + Processing block: HMI_Local_CIP_Variables... + Exporting HMI_Local_CIP_Variables as XML... +2025-05-19 18:17:52,940 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Local_CIP_Variables exported successfully +2025-05-19 18:17:52,944 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Local_CIP_Variables exported successfully + Processing block: HMI_Service... + Exporting HMI_Service as XML... +2025-05-19 18:17:53,591 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Service exported successfully +2025-05-19 18:17:53,595 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Service exported successfully + Processing block: HMI_Variables_Cmd... + Exporting HMI_Variables_Cmd as XML... +2025-05-19 18:17:53,747 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Variables_Cmd exported successfully +2025-05-19 18:17:53,752 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Variables_Cmd exported successfully + Processing block: HMI_Variables_Status... + Exporting HMI_Variables_Status as XML... +2025-05-19 18:17:53,932 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Variables_Status exported successfully +2025-05-19 18:17:53,936 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Variables_Status exported successfully + Processing block: HMI_Device... + Exporting HMI_Device as XML... +2025-05-19 18:17:54,149 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Device exported successfully +2025-05-19 18:17:54,154 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Device exported successfully + Processing block: HMI_Instrument... + Exporting HMI_Instrument as XML... +2025-05-19 18:17:54,398 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Instrument exported successfully +2025-05-19 18:17:54,402 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Instrument exported successfully + Processing block: HMI_Digital... + Exporting HMI_Digital as XML... +2025-05-19 18:17:54,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Digital exported successfully +2025-05-19 18:17:54,555 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Digital exported successfully + Processing block: HMI_PID... + Compiling block HMI_PID... +2025-05-19 18:17:54,567 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block HMI_PID. Result: +2025-05-19 18:17:57,940 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:17:57,942 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > HMI_PID (DB1013) > Interface > Syntax error: The specified value "nan" is invalid. +2025-05-19 18:17:57,943 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 2; warnings: 1) + WARNING: Block HMI_PID inconsistent after compile. Skipping. + Processing block: HMI_ICS... + Exporting HMI_ICS as XML... +2025-05-19 18:17:58,089 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_ICS exported successfully +2025-05-19 18:17:58,104 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_ICS exported successfully + Processing block: HMI_Device_AVS... + Exporting HMI_Device_AVS as XML... +2025-05-19 18:17:58,212 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Device_AVS exported successfully +2025-05-19 18:17:58,227 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Device_AVS exported successfully + Processing block: Profibus_Variables... + Exporting Profibus_Variables as XML... +2025-05-19 18:17:58,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Profibus_Variables exported successfully +2025-05-19 18:17:58,321 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Profibus_Variables exported successfully + Processing block: Input_CheckFlowMetersSta... + Exporting Input_CheckFlowMetersSta as XML... +2025-05-19 18:17:58,528 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_CheckFlowMetersSta exported successfully +2025-05-19 18:17:58,542 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_CheckFlowMetersSta exported successfully + Exporting Input_CheckFlowMetersSta as SCL... +2025-05-19 18:17:58,651 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Input_CheckFlowMetersSta external source successfully generated + Processing block: Input_DigitalScanner... + Exporting Input_DigitalScanner as XML... +2025-05-19 18:17:58,739 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_DigitalScanner exported successfully +2025-05-19 18:17:58,744 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_DigitalScanner exported successfully + Processing block: ProductLiterInTank... + Exporting ProductLiterInTank as XML... +2025-05-19 18:17:58,847 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductLiterInTank exported successfully +2025-05-19 18:17:58,852 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductLiterInTank exported successfully + Exporting ProductLiterInTank as SCL... +2025-05-19 18:17:58,950 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProductLiterInTank external source successfully generated + Processing block: ProductAvailable... + Exporting ProductAvailable as XML... +2025-05-19 18:17:59,191 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductAvailable exported successfully +2025-05-19 18:17:59,222 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductAvailable exported successfully + Exporting ProductAvailable as SCL... +2025-05-19 18:17:59,375 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProductAvailable external source successfully generated + Processing block: T_Timer... + Exporting T_Timer as XML... +2025-05-19 18:17:59,454 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: T_Timer exported successfully +2025-05-19 18:17:59,457 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - T_Timer exported successfully + Processing block: SEL_I... + Exporting SEL_I as XML... +2025-05-19 18:17:59,547 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SEL_I exported successfully +2025-05-19 18:17:59,550 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SEL_I exported successfully + Processing block: _StepMove... + Exporting _StepMove as XML... +2025-05-19 18:17:59,684 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: _StepMove exported successfully +2025-05-19 18:17:59,704 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - _StepMove exported successfully + Processing block: ProductPipeDrain_Seq... + Exporting ProductPipeDrain_Seq as XML... +2025-05-19 18:17:59,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeDrain_Seq exported successfully +2025-05-19 18:17:59,888 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeDrain_Seq exported successfully + Processing block: ProductPipeDrain... + Exporting ProductPipeDrain as XML... +2025-05-19 18:18:00,086 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeDrain exported successfully +2025-05-19 18:18:00,103 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeDrain exported successfully + Processing block: ProductPipeRunOut_Seq... + Exporting ProductPipeRunOut_Seq as XML... +2025-05-19 18:18:00,433 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeRunOut_Seq exported successfully +2025-05-19 18:18:00,519 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeRunOut_Seq exported successfully + Processing block: SEL_R... + Exporting SEL_R as XML... +2025-05-19 18:18:00,651 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SEL_R exported successfully +2025-05-19 18:18:00,669 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SEL_R exported successfully + Processing block: ProductPipeRunOut... + Exporting ProductPipeRunOut as XML... +2025-05-19 18:18:00,959 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeRunOut exported successfully +2025-05-19 18:18:00,975 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeRunOut exported successfully + Processing block: LIMIT_I... + Exporting LIMIT_I as XML... +2025-05-19 18:18:01,126 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LIMIT_I exported successfully +2025-05-19 18:18:01,131 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LIMIT_I exported successfully + Processing block: System_Run_Out... + Exporting System_Run_Out as XML... +2025-05-19 18:18:02,868 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_Run_Out exported successfully +2025-05-19 18:18:02,873 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_Run_Out exported successfully + Processing block: System_Run_Out_Data... + Exporting System_Run_Out_Data as XML... +2025-05-19 18:18:03,054 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_Run_Out_Data exported successfully +2025-05-19 18:18:03,071 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_Run_Out_Data exported successfully + Processing block: Buffer_Tank_Flooding_DB... + Exporting Buffer_Tank_Flooding_DB as XML... +2025-05-19 18:18:03,273 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Buffer_Tank_Flooding_DB exported successfully +2025-05-19 18:18:03,290 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Buffer_Tank_Flooding_DB exported successfully + Processing block: CarboWaterLine_Seq... + Exporting CarboWaterLine_Seq as XML... +2025-05-19 18:18:03,863 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CarboWaterLine_Seq exported successfully +2025-05-19 18:18:03,869 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CarboWaterLine_Seq exported successfully + Processing block: CarboWaterLine... + Exporting CarboWaterLine as XML... +2025-05-19 18:18:04,203 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CarboWaterLine exported successfully +2025-05-19 18:18:04,208 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CarboWaterLine exported successfully + Processing block: Deaireator StartUp_Seq... + Exporting Deaireator StartUp_Seq as XML... +2025-05-19 18:18:05,060 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Deaireator StartUp_Seq exported successfully +2025-05-19 18:18:05,074 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Deaireator StartUp_Seq exported successfully + Processing block: Deaireator StartUp... + Exporting Deaireator StartUp as XML... +2025-05-19 18:18:05,445 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Deaireator StartUp exported successfully +2025-05-19 18:18:05,449 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Deaireator StartUp exported successfully + Processing block: ProdBrixRecovery_BrixCal... + Exporting ProdBrixRecovery_BrixCal as XML... +2025-05-19 18:18:05,706 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdBrixRecovery_BrixCal exported successfully +2025-05-19 18:18:05,711 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdBrixRecovery_BrixCal exported successfully + Exporting ProdBrixRecovery_BrixCal as SCL... +2025-05-19 18:18:05,941 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProdBrixRecovery_BrixCal external source successfully generated + Processing block: ProdBrixRecovery... + Exporting ProdBrixRecovery as XML... +2025-05-19 18:18:06,171 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdBrixRecovery exported successfully +2025-05-19 18:18:06,174 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdBrixRecovery exported successfully + Processing block: Prod Tank Drain_Seq... + Exporting Prod Tank Drain_Seq as XML... +2025-05-19 18:18:06,680 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank Drain_Seq exported successfully +2025-05-19 18:18:06,684 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank Drain_Seq exported successfully + Processing block: Prod Tank Drain... + Exporting Prod Tank Drain as XML... +2025-05-19 18:18:07,084 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank Drain exported successfully +2025-05-19 18:18:07,100 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank Drain exported successfully + Processing block: Prod Tank RunOut_Seq... + Exporting Prod Tank RunOut_Seq as XML... +2025-05-19 18:18:07,393 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank RunOut_Seq exported successfully +2025-05-19 18:18:07,396 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank RunOut_Seq exported successfully + Processing block: Prod Tank RunOut... + Exporting Prod Tank RunOut as XML... +2025-05-19 18:18:07,732 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank RunOut exported successfully +2025-05-19 18:18:07,748 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank RunOut exported successfully Processing block: mPDS_SYR_PA_Data... Exporting mPDS_SYR_PA_Data as XML... -2025-05-05 12:38:55,745 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Data exported successfully -2025-05-05 12:38:55,746 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Data exported successfully - Processing block: GNS PLCdia MainRoutine... - Exporting GNS PLCdia MainRoutine as XML... -2025-05-05 12:38:55,835 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS PLCdia MainRoutine exported successfully -2025-05-05 12:38:55,836 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS PLCdia MainRoutine exported successfully - Processing block: GNS PLCdia Profinet... - Exporting GNS PLCdia Profinet as XML... -2025-05-05 12:38:55,933 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS PLCdia Profinet exported successfully -2025-05-05 12:38:55,934 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS PLCdia Profinet exported successfully - Processing block: GNS PLCdia Profibus... - Exporting GNS PLCdia Profibus as XML... -2025-05-05 12:38:56,074 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS PLCdia Profibus exported successfully -2025-05-05 12:38:56,075 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS PLCdia Profibus exported successfully - Processing block: GNS PLCdia ProfibusData... - Exporting GNS PLCdia ProfibusData as XML... -2025-05-05 12:38:56,158 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS PLCdia ProfibusData exported successfully -2025-05-05 12:38:56,159 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS PLCdia ProfibusData exported successfully - Processing block: GNS PLCdia ProfinetData... - Exporting GNS PLCdia ProfinetData as XML... -2025-05-05 12:38:56,230 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS PLCdia ProfinetData exported successfully -2025-05-05 12:38:56,231 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS PLCdia ProfinetData exported successfully - Program Blocks Export Summary: Exported=378, Skipped/Errors=2 +2025-05-19 18:18:07,856 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Data exported successfully +2025-05-19 18:18:07,872 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Data exported successfully + Processing block: SyrBrix_SyrupCorrPerc... + Exporting SyrBrix_SyrupCorrPerc as XML... +2025-05-19 18:18:08,012 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrBrix_SyrupCorrPerc exported successfully +2025-05-19 18:18:08,016 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrBrix_SyrupCorrPerc exported successfully + Exporting SyrBrix_SyrupCorrPerc as SCL... +2025-05-19 18:18:08,195 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SyrBrix_SyrupCorrPerc external source successfully generated + Processing block: SyrBrix Autocorrection... + Exporting SyrBrix Autocorrection as XML... +2025-05-19 18:18:08,582 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrBrix Autocorrection exported successfully +2025-05-19 18:18:08,584 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrBrix Autocorrection exported successfully + Processing block: Syrup Line MFM Prep_Seq... + Exporting Syrup Line MFM Prep_Seq as XML... +2025-05-19 18:18:08,908 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup Line MFM Prep_Seq exported successfully +2025-05-19 18:18:08,911 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup Line MFM Prep_Seq exported successfully + Processing block: Syrup Line MFM Prep... + Exporting Syrup Line MFM Prep as XML... +2025-05-19 18:18:09,469 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup Line MFM Prep exported successfully +2025-05-19 18:18:09,473 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup Line MFM Prep exported successfully + Processing block: Syrup MFM StartUp_Seq... + Exporting Syrup MFM StartUp_Seq as XML... +2025-05-19 18:18:09,685 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup MFM StartUp_Seq exported successfully +2025-05-19 18:18:09,688 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup MFM StartUp_Seq exported successfully + Processing block: Syrup MFM StartUp... + Exporting Syrup MFM StartUp as XML... +2025-05-19 18:18:09,871 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup MFM StartUp exported successfully +2025-05-19 18:18:09,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup MFM StartUp exported successfully + Processing block: Syrup RunOut... + Exporting Syrup RunOut as XML... +2025-05-19 18:18:10,191 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup RunOut exported successfully +2025-05-19 18:18:10,197 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup RunOut exported successfully + Processing block: mPPM303StartUpRamp... + Exporting mPPM303StartUpRamp as XML... +2025-05-19 18:18:10,361 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPPM303StartUpRamp exported successfully +2025-05-19 18:18:10,365 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPPM303StartUpRamp exported successfully + Processing block: BlendFill StartUp_Seq... + Exporting BlendFill StartUp_Seq as XML... +2025-05-19 18:18:11,152 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlendFill StartUp_Seq exported successfully +2025-05-19 18:18:11,156 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlendFill StartUp_Seq exported successfully + Processing block: BlendFill StartUp... + Exporting BlendFill StartUp as XML... +2025-05-19 18:18:11,665 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlendFill StartUp exported successfully +2025-05-19 18:18:11,680 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlendFill StartUp exported successfully + Processing block: SyrupLineRinse... + Exporting SyrupLineRinse as XML... +2025-05-19 18:18:12,026 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrupLineRinse exported successfully +2025-05-19 18:18:12,030 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrupLineRinse exported successfully + Processing block: QCO Timing DB... + Exporting QCO Timing DB as XML... +2025-05-19 18:18:12,257 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: QCO Timing DB exported successfully +2025-05-19 18:18:12,261 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - QCO Timing DB exported successfully + Processing block: QCO Monitor... + Exporting QCO Monitor as XML... +2025-05-19 18:18:12,613 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: QCO Monitor exported successfully +2025-05-19 18:18:12,628 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - QCO Monitor exported successfully + Processing block: Blender_ProcedureCall... + Exporting Blender_ProcedureCall as XML... +2025-05-19 18:18:12,797 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_ProcedureCall exported successfully +2025-05-19 18:18:12,800 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_ProcedureCall exported successfully + Processing block: Blender_Procedure Data... + Exporting Blender_Procedure Data as XML... +2025-05-19 18:18:12,904 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Procedure Data exported successfully +2025-05-19 18:18:12,907 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Procedure Data exported successfully + Processing block: Input_DigitalCtrl... + Exporting Input_DigitalCtrl as XML... +2025-05-19 18:18:13,092 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_DigitalCtrl exported successfully +2025-05-19 18:18:13,096 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_DigitalCtrl exported successfully + Processing block: ReadAnalogIn_Fault_DB... + Exporting ReadAnalogIn_Fault_DB as XML... +2025-05-19 18:18:13,233 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ReadAnalogIn_Fault_DB exported successfully +2025-05-19 18:18:13,248 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ReadAnalogIn_Fault_DB exported successfully + Processing block: ExtractPointerData... + Exporting ExtractPointerData as XML... +2025-05-19 18:18:13,495 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ExtractPointerData exported successfully +2025-05-19 18:18:13,498 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ExtractPointerData exported successfully + Exporting ExtractPointerData as SCL... +2025-05-19 18:18:13,619 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ExtractPointerData external source successfully generated + Processing block: ReadAnalogIn... + Exporting ReadAnalogIn as XML... +2025-05-19 18:18:13,831 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ReadAnalogIn exported successfully +2025-05-19 18:18:13,833 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ReadAnalogIn exported successfully + Processing block: Input... + Exporting Input as XML... +2025-05-19 18:18:18,848 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input exported successfully +2025-05-19 18:18:18,854 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input exported successfully + Processing block: SpeedAdjust... + Exporting SpeedAdjust as XML... +2025-05-19 18:18:19,045 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SpeedAdjust exported successfully +2025-05-19 18:18:19,049 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SpeedAdjust exported successfully + Exporting SpeedAdjust as SCL... +2025-05-19 18:18:19,195 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SpeedAdjust external source successfully generated + Processing block: BlenderRun_MeasFilSpeed... + Exporting BlenderRun_MeasFilSpeed as XML... +2025-05-19 18:18:19,710 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_MeasFilSpeed exported successfully +2025-05-19 18:18:19,732 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_MeasFilSpeed exported successfully + Processing block: SyrupDensity... + Compiling block SyrupDensity... +2025-05-19 18:18:19,745 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block SyrupDensity. Result: +2025-05-19 18:18:30,334 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:30,336 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > SyrupDensity (FC1907) > 1 > The function does not return a value. +2025-05-19 18:18:30,337 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) + WARNING: Block SyrupDensity inconsistent after compile. Skipping. + Processing block: DeltaP... + Compiling block DeltaP... +2025-05-19 18:18:30,350 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block DeltaP. Result: +2025-05-19 18:18:33,763 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:33,764 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > DeltaP (FC1921) > 1 > The function does not return a value. +2025-05-19 18:18:33,765 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) + WARNING: Block DeltaP inconsistent after compile. Skipping. + Processing block: FW_DRand... + Exporting FW_DRand as XML... +2025-05-19 18:18:33,897 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FW_DRand exported successfully +2025-05-19 18:18:33,901 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FW_DRand exported successfully + Processing block: CO2InjPressure... + Exporting CO2InjPressure as XML... +2025-05-19 18:18:34,007 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2InjPressure exported successfully +2025-05-19 18:18:34,011 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2InjPressure exported successfully + Exporting CO2InjPressure as SCL... +2025-05-19 18:18:34,108 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2InjPressure external source successfully generated + Processing block: ValveFlow... + Compiling block ValveFlow... +2025-05-19 18:18:34,117 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block ValveFlow. Result: +2025-05-19 18:18:35,685 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:35,687 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > ValveFlow (FC2043) > 1 > The function does not return a value. +2025-05-19 18:18:35,687 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) + WARNING: Block ValveFlow inconsistent after compile. Skipping. + Processing block: PID_Variables... + Exporting PID_Variables as XML... +2025-05-19 18:18:35,789 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Variables exported successfully +2025-05-19 18:18:35,791 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Variables exported successfully + Processing block: MFMAnalogValues... + Exporting MFMAnalogValues as XML... +2025-05-19 18:18:36,214 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MFMAnalogValues exported successfully +2025-05-19 18:18:36,221 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MFMAnalogValues exported successfully + Exporting MFMAnalogValues as SCL... +2025-05-19 18:18:36,520 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block MFMAnalogValues external source successfully generated + Processing block: Signal Gen... + Exporting Signal Gen as XML... +2025-05-19 18:18:36,719 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Signal Gen exported successfully +2025-05-19 18:18:36,722 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Signal Gen exported successfully + Exporting Signal Gen as SCL... +2025-05-19 18:18:36,828 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Signal Gen external source successfully generated + Processing block: CVQ_1p7_8_Perc... + Exporting CVQ_1p7_8_Perc as XML... +2025-05-19 18:18:36,937 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CVQ_1p7_8_Perc exported successfully +2025-05-19 18:18:36,952 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CVQ_1p7_8_Perc exported successfully + Exporting CVQ_1p7_8_Perc as SCL... +2025-05-19 18:18:37,044 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CVQ_1p7_8_Perc external source successfully generated + Processing block: FeedForward... + Exporting FeedForward as XML... +2025-05-19 18:18:37,187 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FeedForward exported successfully +2025-05-19 18:18:37,202 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FeedForward exported successfully + Exporting FeedForward as SCL... +2025-05-19 18:18:37,291 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FeedForward external source successfully generated + Processing block: FrictionLoss... + Exporting FrictionLoss as XML... +2025-05-19 18:18:37,372 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FrictionLoss exported successfully +2025-05-19 18:18:37,376 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FrictionLoss exported successfully + Exporting FrictionLoss as SCL... +2025-05-19 18:18:37,465 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FrictionLoss external source successfully generated + Processing block: BlenderPID_PIDFFCalc... + Exporting BlenderPID_PIDFFCalc as XML... +2025-05-19 18:18:37,825 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDFFCalc exported successfully +2025-05-19 18:18:37,828 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDFFCalc exported successfully + Exporting BlenderPID_PIDFFCalc as SCL... +2025-05-19 18:18:38,042 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDFFCalc external source successfully generated + Processing block: BlenderPID_BlendingFault... + Exporting BlenderPID_BlendingFault as XML... +2025-05-19 18:18:38,354 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_BlendingFault exported successfully +2025-05-19 18:18:38,356 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_BlendingFault exported successfully + Exporting BlenderPID_BlendingFault as SCL... +2025-05-19 18:18:38,461 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_BlendingFault external source successfully generated + Processing block: BlenderPIDCtrl_Monitor... + Exporting BlenderPIDCtrl_Monitor as XML... +2025-05-19 18:18:38,680 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_Monitor exported successfully +2025-05-19 18:18:38,691 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_Monitor exported successfully + Processing block: ONS_R... + Exporting ONS_R as XML... +2025-05-19 18:18:38,770 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ONS_R exported successfully +2025-05-19 18:18:38,774 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ONS_R exported successfully + Processing block: BlenderPIDCtrl_SaveInteg... + Exporting BlenderPIDCtrl_SaveInteg as XML... +2025-05-19 18:18:39,065 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_SaveInteg exported successfully +2025-05-19 18:18:39,068 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_SaveInteg exported successfully + Exporting BlenderPIDCtrl_SaveInteg as SCL... +2025-05-19 18:18:39,237 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPIDCtrl_SaveInteg external source successfully generated + Processing block: PID_RVM302... + Exporting PID_RVM302 as XML... +2025-05-19 18:18:39,413 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM302 exported successfully +2025-05-19 18:18:39,417 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM302 exported successfully + Processing block: PID_RVM302_Data... + Exporting PID_RVM302_Data as XML... +2025-05-19 18:18:39,504 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM302_Data exported successfully +2025-05-19 18:18:39,508 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM302_Data exported successfully + Processing block: PID_RMM301... + Exporting PID_RMM301 as XML... +2025-05-19 18:18:39,772 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM301 exported successfully +2025-05-19 18:18:39,776 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM301 exported successfully + Processing block: PID_RMM301_Data... + Exporting PID_RMM301_Data as XML... +2025-05-19 18:18:39,881 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM301_Data exported successfully +2025-05-19 18:18:39,885 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM301_Data exported successfully + Processing block: PID_RMP302... + Exporting PID_RMP302 as XML... +2025-05-19 18:18:40,051 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMP302 exported successfully +2025-05-19 18:18:40,069 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMP302 exported successfully + Processing block: PID_RMP302_Data... + Exporting PID_RMP302_Data as XML... +2025-05-19 18:18:40,158 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMP302_Data exported successfully +2025-05-19 18:18:40,162 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMP302_Data exported successfully + Processing block: PID_RMM303... + Exporting PID_RMM303 as XML... +2025-05-19 18:18:40,362 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM303 exported successfully +2025-05-19 18:18:40,366 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM303 exported successfully + Processing block: PID_RMM303_Data... + Exporting PID_RMM303_Data as XML... +2025-05-19 18:18:40,439 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM303_Data exported successfully +2025-05-19 18:18:40,443 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM303_Data exported successfully + Processing block: PID_RVM301... + Exporting PID_RVM301 as XML... +2025-05-19 18:18:40,639 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM301 exported successfully +2025-05-19 18:18:40,644 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM301 exported successfully + Processing block: PID_RVM301_Data... + Exporting PID_RVM301_Data as XML... +2025-05-19 18:18:40,748 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM301_Data exported successfully +2025-05-19 18:18:40,751 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM301_Data exported successfully + Processing block: LIMIT_R... + Exporting LIMIT_R as XML... +2025-05-19 18:18:40,876 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LIMIT_R exported successfully +2025-05-19 18:18:40,883 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LIMIT_R exported successfully + Processing block: FillerGasBlowOff... + Exporting FillerGasBlowOff as XML... +2025-05-19 18:18:41,062 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FillerGasBlowOff exported successfully +2025-05-19 18:18:41,075 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FillerGasBlowOff exported successfully + Exporting FillerGasBlowOff as SCL... +2025-05-19 18:18:41,200 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FillerGasBlowOff external source successfully generated + Processing block: PID_RVM304... + Exporting PID_RVM304 as XML... +2025-05-19 18:18:41,326 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM304 exported successfully +2025-05-19 18:18:41,329 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM304 exported successfully + Processing block: PID_RVM304_Data... + Exporting PID_RVM304_Data as XML... +2025-05-19 18:18:41,405 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM304_Data exported successfully +2025-05-19 18:18:41,408 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM304_Data exported successfully + Processing block: CIP CVQ... + Compiling block CIP CVQ... +2025-05-19 18:18:41,416 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block CIP CVQ. Result: +2025-05-19 18:18:43,277 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:43,279 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CIP CVQ (FC1905) > 4 > Invalid assignment. +2025-05-19 18:18:43,280 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CIP CVQ (FC1905) > 6 > Invalid assignment. +2025-05-19 18:18:43,281 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CIP CVQ (FC1905) > 8 > Invalid assignment. +2025-05-19 18:18:43,282 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CIP CVQ (FC1905) > 10 > Invalid assignment. +2025-05-19 18:18:43,283 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 4; warnings: 1) + WARNING: Block CIP CVQ inconsistent after compile. Skipping. + Processing block: PID_RVM319... + Exporting PID_RVM319 as XML... +2025-05-19 18:18:43,459 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM319 exported successfully +2025-05-19 18:18:43,473 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM319 exported successfully + Processing block: PID_RVM319_Data... + Exporting PID_RVM319_Data as XML... +2025-05-19 18:18:43,540 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM319_Data exported successfully +2025-05-19 18:18:43,543 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM319_Data exported successfully + Processing block: PID_RVS318... + Exporting PID_RVS318 as XML... +2025-05-19 18:18:43,704 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVS318 exported successfully +2025-05-19 18:18:43,706 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVS318 exported successfully + Processing block: PID_RVS318_Data... + Exporting PID_RVS318_Data as XML... +2025-05-19 18:18:43,780 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVS318_Data exported successfully +2025-05-19 18:18:43,784 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVS318_Data exported successfully + Processing block: EHS30X_16_Ctrl... + Compiling block EHS30X_16_Ctrl... +2025-05-19 18:18:43,796 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block EHS30X_16_Ctrl. Result: +2025-05-19 18:18:45,868 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:45,869 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > EHS30X_16_Ctrl (FC1790) > 27 > Data type 'DInt' cannot be converted implicitly into data type 'Real'. +2025-05-19 18:18:45,870 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > EHS30X_16_Ctrl (FC1790) > 32 > Data type 'DInt' cannot be converted implicitly into data type 'Real'. +2025-05-19 18:18:45,871 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > EHS30X_16_Ctrl (FC1790) > 36 > Data type 'DInt' cannot be converted implicitly into data type 'Real'. +2025-05-19 18:18:45,873 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 3; warnings: 1) + WARNING: Block EHS30X_16_Ctrl inconsistent after compile. Skipping. + Processing block: PID_EHS30X... + Exporting PID_EHS30X as XML... +2025-05-19 18:18:46,022 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_EHS30X exported successfully +2025-05-19 18:18:46,025 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_EHS30X exported successfully + Processing block: PID_EHS30X_Data... + Exporting PID_EHS30X_Data as XML... +2025-05-19 18:18:46,098 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_EHS30X_Data exported successfully +2025-05-19 18:18:46,102 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_EHS30X_Data exported successfully + Processing block: PID_RVP303... + Exporting PID_RVP303 as XML... +2025-05-19 18:18:46,253 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVP303 exported successfully +2025-05-19 18:18:46,255 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVP303 exported successfully + Processing block: PID_RVP303_Data... + Exporting PID_RVP303_Data as XML... +2025-05-19 18:18:46,346 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVP303_Data exported successfully +2025-05-19 18:18:46,349 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVP303_Data exported successfully + Processing block: PID_Filling_Head_Calc... + Exporting PID_Filling_Head_Calc as XML... +2025-05-19 18:18:46,535 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head_Calc exported successfully +2025-05-19 18:18:46,539 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head_Calc exported successfully + Exporting PID_Filling_Head_Calc as SCL... +2025-05-19 18:18:46,673 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block PID_Filling_Head_Calc external source successfully generated + Processing block: Filling_Time_Tranfer_Par... + Exporting Filling_Time_Tranfer_Par as XML... +2025-05-19 18:18:46,795 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Filling_Time_Tranfer_Par exported successfully +2025-05-19 18:18:46,800 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Filling_Time_Tranfer_Par exported successfully + Processing block: TankLevelToHeight... + Compiling block TankLevelToHeight... +2025-05-19 18:18:46,812 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block TankLevelToHeight. Result: +2025-05-19 18:18:48,541 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:48,542 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > TankLevelToHeight (FC1839) > 1 > The function does not return a value. +2025-05-19 18:18:48,543 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) + WARNING: Block TankLevelToHeight inconsistent after compile. Skipping. + Processing block: FillingTime... + Compiling block FillingTime... +2025-05-19 18:18:48,550 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block FillingTime. Result: +2025-05-19 18:18:49,864 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:49,865 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > FillingTime (FC1840) > 1 > The function does not return a value. +2025-05-19 18:18:49,866 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) + WARNING: Block FillingTime inconsistent after compile. Skipping. + Processing block: Freq_To_mmH2O... + Exporting Freq_To_mmH2O as XML... +2025-05-19 18:18:49,971 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Freq_To_mmH2O exported successfully +2025-05-19 18:18:49,974 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Freq_To_mmH2O exported successfully + Exporting Freq_To_mmH2O as SCL... +2025-05-19 18:18:50,038 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Freq_To_mmH2O external source successfully generated + Processing block: Cetrifugal_Head... + Exporting Cetrifugal_Head as XML... +2025-05-19 18:18:50,109 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Cetrifugal_Head exported successfully +2025-05-19 18:18:50,113 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Cetrifugal_Head exported successfully + Exporting Cetrifugal_Head as SCL... +2025-05-19 18:18:50,176 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Cetrifugal_Head external source successfully generated + Processing block: Flow_To_Press_Loss... + Exporting Flow_To_Press_Loss as XML... +2025-05-19 18:18:50,269 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Flow_To_Press_Loss exported successfully +2025-05-19 18:18:50,272 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Flow_To_Press_Loss exported successfully + Exporting Flow_To_Press_Loss as SCL... +2025-05-19 18:18:50,347 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Flow_To_Press_Loss external source successfully generated + Processing block: mmH2O_TO_Freq... + Exporting mmH2O_TO_Freq as XML... +2025-05-19 18:18:50,438 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mmH2O_TO_Freq exported successfully +2025-05-19 18:18:50,443 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mmH2O_TO_Freq exported successfully + Exporting mmH2O_TO_Freq as SCL... +2025-05-19 18:18:50,529 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block mmH2O_TO_Freq external source successfully generated + Processing block: PID_Filling_Head... + Exporting PID_Filling_Head as XML... +2025-05-19 18:18:51,335 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head exported successfully +2025-05-19 18:18:51,339 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head exported successfully + Processing block: PID_Filling_Head_Data... + Exporting PID_Filling_Head_Data as XML... +2025-05-19 18:18:51,414 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head_Data exported successfully +2025-05-19 18:18:51,417 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head_Data exported successfully + Processing block: PID_RVN302... + Exporting PID_RVN302 as XML... +2025-05-19 18:18:51,613 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVN302 exported successfully +2025-05-19 18:18:51,617 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVN302 exported successfully + Processing block: PID_RVN302_Data... + Exporting PID_RVN302_Data as XML... +2025-05-19 18:18:51,691 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVN302_Data exported successfully +2025-05-19 18:18:51,695 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVN302_Data exported successfully + Processing block: PID_RMM304... + Exporting PID_RMM304 as XML... +2025-05-19 18:18:51,847 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM304 exported successfully +2025-05-19 18:18:51,850 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM304 exported successfully + Processing block: PID_RMM304_Data... + Exporting PID_RMM304_Data as XML... +2025-05-19 18:18:51,924 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM304_Data exported successfully +2025-05-19 18:18:51,928 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM304_Data exported successfully + Processing block: PID_AVN30x... + Exporting PID_AVN30x as XML... +2025-05-19 18:18:52,216 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_AVN30x exported successfully +2025-05-19 18:18:52,219 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_AVN30x exported successfully + Processing block: PID_AVN30x_Data... + Exporting PID_AVN30x_Data as XML... +2025-05-19 18:18:52,303 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_AVN30x_Data exported successfully +2025-05-19 18:18:52,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_AVN30x_Data exported successfully + Processing block: BlenderPID_FlowMeterErro... + Exporting BlenderPID_FlowMeterErro as XML... +2025-05-19 18:18:52,430 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_FlowMeterErro exported successfully +2025-05-19 18:18:52,434 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_FlowMeterErro exported successfully + Exporting BlenderPID_FlowMeterErro as SCL... +2025-05-19 18:18:52,543 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_FlowMeterErro external source successfully generated + Processing block: BlenderPIDCtrl_PresRelea... + Exporting BlenderPIDCtrl_PresRelea as XML... +2025-05-19 18:18:52,637 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_PresRelea exported successfully +2025-05-19 18:18:52,641 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_PresRelea exported successfully + Exporting BlenderPIDCtrl_PresRelea as SCL... +2025-05-19 18:18:52,743 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPIDCtrl_PresRelea external source successfully generated + Processing block: BlenderPIDCtrl_SaveValve... + Compiling block BlenderPIDCtrl_SaveValve... +2025-05-19 18:18:52,753 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block BlenderPIDCtrl_SaveValve. Result: +2025-05-19 18:18:54,780 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:54,781 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > BlenderPIDCtrl_SaveValve (FC1918) > 7 > Data type 'Time' cannot be converted implicitly into data type 'S5Time'. +2025-05-19 18:18:54,782 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) + WARNING: Block BlenderPIDCtrl_SaveValve inconsistent after compile. Skipping. + Processing block: WritePeripheral... + Exporting WritePeripheral as XML... +2025-05-19 18:18:54,885 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: WritePeripheral exported successfully +2025-05-19 18:18:54,887 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - WritePeripheral exported successfully + Processing block: PROC Pump Pressure_to_Hz... + Compiling block PROC Pump Pressure_to_Hz... +2025-05-19 18:18:54,897 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block PROC Pump Pressure_to_Hz. Result: +2025-05-19 18:18:56,311 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:56,312 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > PROC Pump Pressure_to_Hz (FC1988) > 13 > Invalid assignment. +2025-05-19 18:18:56,313 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) + WARNING: Block PROC Pump Pressure_to_Hz inconsistent after compile. Skipping. + Processing block: PROC Pump Hz_to_Pressure... + Compiling block PROC Pump Hz_to_Pressure... +2025-05-19 18:18:56,347 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block PROC Pump Hz_to_Pressure. Result: +2025-05-19 18:18:57,875 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:57,878 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > PROC Pump Hz_to_Pressure (FC1989) > 12 > Invalid assignment. +2025-05-19 18:18:57,879 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > PROC Pump Hz_to_Pressure (FC1989) > 14 > Invalid assignment. +2025-05-19 18:18:57,880 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 2; warnings: 1) + WARNING: Block PROC Pump Hz_to_Pressure inconsistent after compile. Skipping. + Processing block: BlenderPIDCtrl_WriteAnOu... + Exporting BlenderPIDCtrl_WriteAnOu as XML... +2025-05-19 18:18:58,297 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_WriteAnOu exported successfully +2025-05-19 18:18:58,299 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_WriteAnOu exported successfully + Processing block: BlenderPIDCtrl__Loop... + Exporting BlenderPIDCtrl__Loop as XML... +2025-05-19 18:18:58,469 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl__Loop exported successfully +2025-05-19 18:18:58,473 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl__Loop exported successfully + Processing block: CO2EqPress... + Compiling block CO2EqPress... +2025-05-19 18:18:58,487 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block CO2EqPress. Result: +2025-05-19 18:18:59,904 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:18:59,906 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CO2EqPress (FC1908) > 1 > The function does not return a value. +2025-05-19 18:18:59,907 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) + WARNING: Block CO2EqPress inconsistent after compile. Skipping. + Processing block: DeairCO2TempComp... + Exporting DeairCO2TempComp as XML... +2025-05-19 18:19:00,009 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DeairCO2TempComp exported successfully +2025-05-19 18:19:00,012 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DeairCO2TempComp exported successfully + Exporting DeairCO2TempComp as SCL... +2025-05-19 18:19:00,119 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block DeairCO2TempComp external source successfully generated + Processing block: PPM O2... + Compiling block PPM O2... +2025-05-19 18:19:00,131 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block PPM O2. Result: +2025-05-19 18:19:01,521 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > Program blocks > PPM O2 (FC1910) > 4 > The sign or the accuracy of the value may be lost. +2025-05-19 18:19:01,523 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > Program blocks > PPM O2 (FC1910) > 5 > The sign or the accuracy of the value may be lost. +2025-05-19 18:19:01,525 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:19:01,526 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > PPM O2 (FC1910) > 7 > Invalid assignment. +2025-05-19 18:19:01,528 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 3) + WARNING: Block PPM O2 inconsistent after compile. Skipping. + Processing block: CO2 Solubility... + Compiling block CO2 Solubility... +2025-05-19 18:19:01,536 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block CO2 Solubility. Result: +2025-05-19 18:19:02,882 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > Program blocks > CO2 Solubility (FC1911) > 8 > The sign or the accuracy of the value may be lost. +2025-05-19 18:19:02,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:19:02,887 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CO2 Solubility (FC1911) > 8 > Invalid assignment. +2025-05-19 18:19:02,888 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 3) + WARNING: Block CO2 Solubility inconsistent after compile. Skipping. + Processing block: MaxCarboCO2 Vol... + Compiling block MaxCarboCO2 Vol... +2025-05-19 18:19:02,897 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block MaxCarboCO2 Vol. Result: +2025-05-19 18:19:04,297 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +2025-05-19 18:19:04,298 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > MaxCarboCO2 Vol (FC1912) > 13 > Invalid assignment. +2025-05-19 18:19:04,300 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > MaxCarboCO2 Vol (FC1912) > 15 > Invalid assignment. +2025-05-19 18:19:04,301 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 2; warnings: 1) + WARNING: Block MaxCarboCO2 Vol inconsistent after compile. Skipping. + Processing block: BlenderPID_PIDSPCalc... + Exporting BlenderPID_PIDSPCalc as XML... +2025-05-19 18:19:04,753 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDSPCalc exported successfully +2025-05-19 18:19:04,769 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDSPCalc exported successfully + Exporting BlenderPID_PIDSPCalc as SCL... +2025-05-19 18:19:05,035 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDSPCalc external source successfully generated + Processing block: BlenderPID_PIDInitParam... + Exporting BlenderPID_PIDInitParam as XML... +2025-05-19 18:19:05,267 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDInitParam exported successfully +2025-05-19 18:19:05,270 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDInitParam exported successfully + Exporting BlenderPID_PIDInitParam as SCL... +2025-05-19 18:19:05,436 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDInitParam external source successfully generated + Processing block: mPDS_PA_Data... + Exporting mPDS_PA_Data as XML... +2025-05-19 18:19:05,516 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Data exported successfully +2025-05-19 18:19:05,518 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Data exported successfully + Processing block: BlenderPID_ActualRecipe... + Exporting BlenderPID_ActualRecipe as XML... +2025-05-19 18:19:05,683 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_ActualRecipe exported successfully +2025-05-19 18:19:05,685 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_ActualRecipe exported successfully + Exporting BlenderPID_ActualRecipe as SCL... +2025-05-19 18:19:05,777 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_ActualRecipe external source successfully generated + Processing block: BlenderPID_NextRecipe... + Exporting BlenderPID_NextRecipe as XML... +2025-05-19 18:19:05,868 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_NextRecipe exported successfully +2025-05-19 18:19:05,870 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_NextRecipe exported successfully + Processing block: BlenderPID__Main... + Exporting BlenderPID__Main as XML... +2025-05-19 18:19:06,209 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID__Main exported successfully +2025-05-19 18:19:06,213 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID__Main exported successfully + Exporting BlenderPID__Main as SCL... +2025-05-19 18:19:06,486 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID__Main external source successfully generated + Processing block: RecipeEditDataSave... + Exporting RecipeEditDataSave as XML... +2025-05-19 18:19:06,584 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeEditDataSave exported successfully +2025-05-19 18:19:06,597 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeEditDataSave exported successfully + Processing block: HMI_Recipe_Edit... + Exporting HMI_Recipe_Edit as XML... +2025-05-19 18:19:06,675 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Recipe_Edit exported successfully +2025-05-19 18:19:06,677 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Recipe_Edit exported successfully + Processing block: HMI_Recipe_Name... + Exporting HMI_Recipe_Name as XML... +2025-05-19 18:19:06,757 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Recipe_Name exported successfully +2025-05-19 18:19:06,760 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Recipe_Name exported successfully + Processing block: RecipeManagement - Prod... + Exporting RecipeManagement - Prod as XML... +2025-05-19 18:19:07,076 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement - Prod exported successfully +2025-05-19 18:19:07,079 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement - Prod exported successfully + Processing block: RecipeManagement - CIP... + Exporting RecipeManagement - CIP as XML... +2025-05-19 18:19:07,274 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement - CIP exported successfully +2025-05-19 18:19:07,291 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement - CIP exported successfully + Processing block: BrixTracking... + Exporting BrixTracking as XML... +2025-05-19 18:19:07,527 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking exported successfully +2025-05-19 18:19:07,531 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking exported successfully + Processing block: FirstProduction... + Exporting FirstProduction as XML... +2025-05-19 18:19:08,226 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FirstProduction exported successfully +2025-05-19 18:19:08,240 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FirstProduction exported successfully + Processing block: CO2Tracking... + Exporting CO2Tracking as XML... +2025-05-19 18:19:08,520 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking exported successfully +2025-05-19 18:19:08,535 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking exported successfully + Processing block: Net SyrupRoom Eth... + Exporting Net SyrupRoom Eth as XML... +2025-05-19 18:19:08,661 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net SyrupRoom Eth exported successfully +2025-05-19 18:19:08,665 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net SyrupRoom Eth exported successfully + Processing block: Net CIP System Eth... + Exporting Net CIP System Eth as XML... +2025-05-19 18:19:08,786 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net CIP System Eth exported successfully +2025-05-19 18:19:08,789 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net CIP System Eth exported successfully + Processing block: Net Pasto Eth... + Exporting Net Pasto Eth as XML... +2025-05-19 18:19:08,922 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net Pasto Eth exported successfully +2025-05-19 18:19:08,937 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net Pasto Eth exported successfully + Processing block: Net Filler Eth... + Exporting Net Filler Eth as XML... +2025-05-19 18:19:09,063 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net Filler Eth exported successfully +2025-05-19 18:19:09,067 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net Filler Eth exported successfully + Processing block: Net BlendFill Eth... + Exporting Net BlendFill Eth as XML... +2025-05-19 18:19:09,183 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net BlendFill Eth exported successfully +2025-05-19 18:19:09,186 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net BlendFill Eth exported successfully + Processing block: Net Filler Sidel Eth... + Exporting Net Filler Sidel Eth as XML... +2025-05-19 18:19:09,308 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net Filler Sidel Eth exported successfully +2025-05-19 18:19:09,310 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net Filler Sidel Eth exported successfully + Processing block: Net ProdRoom Eth... + Exporting Net ProdRoom Eth as XML... +2025-05-19 18:19:09,431 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net ProdRoom Eth exported successfully +2025-05-19 18:19:09,435 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net ProdRoom Eth exported successfully + Processing block: Net Cip Sidel Eth... + Exporting Net Cip Sidel Eth as XML... +2025-05-19 18:19:09,554 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net Cip Sidel Eth exported successfully +2025-05-19 18:19:09,559 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net Cip Sidel Eth exported successfully + Processing block: Interlocking NET... + Exporting Interlocking NET as XML... +2025-05-19 18:19:09,910 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking NET exported successfully +2025-05-19 18:19:09,925 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking NET exported successfully + Processing block: FB2000... + Exporting FB2000 as XML... +2025-05-19 18:19:10,052 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FB2000 exported successfully +2025-05-19 18:19:10,056 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FB2000 exported successfully + Processing block: MTD NumBottleAftEndProd... + Exporting MTD NumBottleAftEndProd as XML... +2025-05-19 18:19:10,453 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MTD NumBottleAftEndProd exported successfully +2025-05-19 18:19:10,456 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MTD NumBottleAftEndProd exported successfully + Processing block: GLOBAL_DIAG_DB... + Exporting GLOBAL_DIAG_DB as XML... +2025-05-19 18:19:10,561 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GLOBAL_DIAG_DB exported successfully +2025-05-19 18:19:10,564 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GLOBAL_DIAG_DB exported successfully + Processing block: DETAIL_DP_DIAG_i... + Exporting DETAIL_DP_DIAG_i as XML... +2025-05-19 18:19:10,655 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DETAIL_DP_DIAG_i exported successfully +2025-05-19 18:19:10,659 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DETAIL_DP_DIAG_i exported successfully + Processing block: HMI CPU_DP Diag... + Exporting HMI CPU_DP Diag as XML... +2025-05-19 18:19:10,779 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI CPU_DP Diag exported successfully +2025-05-19 18:19:10,783 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI CPU_DP Diag exported successfully + Processing block: RecipeManagement_DataPrd... + Exporting RecipeManagement_DataPrd as XML... +2025-05-19 18:19:10,889 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement_DataPrd exported successfully +2025-05-19 18:19:10,892 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement_DataPrd exported successfully + Processing block: RecipeManagement_DataCIP... + Exporting RecipeManagement_DataCIP as XML... +2025-05-19 18:19:10,998 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement_DataCIP exported successfully +2025-05-19 18:19:11,002 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement_DataCIP exported successfully + Processing block: Recipe #01... + Exporting Recipe #01 as XML... +2025-05-19 18:19:11,090 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #01 exported successfully +2025-05-19 18:19:11,095 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #01 exported successfully + Processing block: Recipe #02... + Exporting Recipe #02 as XML... +2025-05-19 18:19:11,187 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #02 exported successfully +2025-05-19 18:19:11,190 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #02 exported successfully + Processing block: Recipe #03... + Exporting Recipe #03 as XML... +2025-05-19 18:19:11,358 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #03 exported successfully +2025-05-19 18:19:11,373 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #03 exported successfully + Processing block: Recipe #04... + Exporting Recipe #04 as XML... +2025-05-19 18:19:11,539 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #04 exported successfully +2025-05-19 18:19:11,543 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #04 exported successfully + Processing block: Recipe #05... + Exporting Recipe #05 as XML... +2025-05-19 18:19:11,914 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #05 exported successfully +2025-05-19 18:19:11,921 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #05 exported successfully + Processing block: Recipe #06... + Exporting Recipe #06 as XML... +2025-05-19 18:19:12,027 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #06 exported successfully +2025-05-19 18:19:12,032 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #06 exported successfully + Processing block: Recipe #07... + Exporting Recipe #07 as XML... +2025-05-19 18:19:12,150 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #07 exported successfully +2025-05-19 18:19:12,154 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #07 exported successfully + Processing block: Recipe #08... + Exporting Recipe #08 as XML... +2025-05-19 18:19:12,245 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #08 exported successfully +2025-05-19 18:19:12,248 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #08 exported successfully + Processing block: Recipe #09... + Exporting Recipe #09 as XML... +2025-05-19 18:19:12,344 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #09 exported successfully +2025-05-19 18:19:12,349 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #09 exported successfully + Processing block: Recipe #10... + Exporting Recipe #10 as XML... +2025-05-19 18:19:12,450 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #10 exported successfully +2025-05-19 18:19:12,458 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #10 exported successfully + Processing block: Recipe #11... + Exporting Recipe #11 as XML... +2025-05-19 18:19:12,547 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #11 exported successfully +2025-05-19 18:19:12,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #11 exported successfully + Processing block: Recipe #12... + Exporting Recipe #12 as XML... +2025-05-19 18:19:12,639 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #12 exported successfully +2025-05-19 18:19:12,642 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #12 exported successfully + Processing block: Recipe #13... + Exporting Recipe #13 as XML... +2025-05-19 18:19:12,729 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #13 exported successfully +2025-05-19 18:19:12,732 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #13 exported successfully + Processing block: Recipe #14... + Exporting Recipe #14 as XML... +2025-05-19 18:19:12,808 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #14 exported successfully +2025-05-19 18:19:12,812 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #14 exported successfully + Processing block: Recipe #15... + Exporting Recipe #15 as XML... +2025-05-19 18:19:12,892 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #15 exported successfully +2025-05-19 18:19:12,895 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #15 exported successfully + Processing block: Recipe #16... + Exporting Recipe #16 as XML... +2025-05-19 18:19:12,978 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #16 exported successfully +2025-05-19 18:19:12,982 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #16 exported successfully + Processing block: Recipe #17... + Exporting Recipe #17 as XML... +2025-05-19 18:19:13,072 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #17 exported successfully +2025-05-19 18:19:13,076 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #17 exported successfully + Processing block: Recipe #18... + Exporting Recipe #18 as XML... +2025-05-19 18:19:13,145 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #18 exported successfully +2025-05-19 18:19:13,148 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #18 exported successfully + Processing block: Recipe #19... + Exporting Recipe #19 as XML... +2025-05-19 18:19:13,212 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #19 exported successfully +2025-05-19 18:19:13,214 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #19 exported successfully + Processing block: Recipe #20... + Exporting Recipe #20 as XML... +2025-05-19 18:19:13,290 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #20 exported successfully +2025-05-19 18:19:13,293 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #20 exported successfully + Processing block: Recipe #21... + Exporting Recipe #21 as XML... +2025-05-19 18:19:13,399 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #21 exported successfully +2025-05-19 18:19:13,403 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #21 exported successfully + Processing block: Recipe #22... + Exporting Recipe #22 as XML... +2025-05-19 18:19:13,494 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #22 exported successfully +2025-05-19 18:19:13,498 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #22 exported successfully + Processing block: Recipe #23... + Exporting Recipe #23 as XML... +2025-05-19 18:19:13,647 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #23 exported successfully +2025-05-19 18:19:13,651 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #23 exported successfully + Processing block: Recipe #24... + Exporting Recipe #24 as XML... +2025-05-19 18:19:13,741 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #24 exported successfully +2025-05-19 18:19:13,744 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #24 exported successfully + Processing block: Recipe #25... + Exporting Recipe #25 as XML... +2025-05-19 18:19:13,849 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #25 exported successfully +2025-05-19 18:19:13,867 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #25 exported successfully + Processing block: Recipe #26... + Exporting Recipe #26 as XML... +2025-05-19 18:19:13,972 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #26 exported successfully +2025-05-19 18:19:13,988 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #26 exported successfully + Processing block: Recipe #27... + Exporting Recipe #27 as XML... +2025-05-19 18:19:14,096 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #27 exported successfully +2025-05-19 18:19:14,101 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #27 exported successfully + Processing block: Recipe #28... + Exporting Recipe #28 as XML... +2025-05-19 18:19:14,222 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #28 exported successfully +2025-05-19 18:19:14,227 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #28 exported successfully + Processing block: Recipe #29... + Exporting Recipe #29 as XML... +2025-05-19 18:19:14,334 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #29 exported successfully +2025-05-19 18:19:14,337 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #29 exported successfully + Processing block: Recipe #30... + Exporting Recipe #30 as XML... +2025-05-19 18:19:14,427 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #30 exported successfully +2025-05-19 18:19:14,430 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #30 exported successfully + Processing block: Recipe #31... + Exporting Recipe #31 as XML... +2025-05-19 18:19:14,546 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #31 exported successfully +2025-05-19 18:19:14,549 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #31 exported successfully + Processing block: Recipe #32... + Exporting Recipe #32 as XML... +2025-05-19 18:19:14,634 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #32 exported successfully +2025-05-19 18:19:14,638 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #32 exported successfully + Processing block: Recipe #33... + Exporting Recipe #33 as XML... +2025-05-19 18:19:14,732 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #33 exported successfully +2025-05-19 18:19:14,735 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #33 exported successfully + Processing block: Recipe #34... + Exporting Recipe #34 as XML... +2025-05-19 18:19:14,827 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #34 exported successfully +2025-05-19 18:19:14,831 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #34 exported successfully + Processing block: Recipe #35... + Exporting Recipe #35 as XML... +2025-05-19 18:19:14,936 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #35 exported successfully +2025-05-19 18:19:14,940 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #35 exported successfully + Processing block: Recipe #36... + Exporting Recipe #36 as XML... +2025-05-19 18:19:15,060 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #36 exported successfully +2025-05-19 18:19:15,064 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #36 exported successfully + Processing block: Recipe #37... + Exporting Recipe #37 as XML... +2025-05-19 18:19:15,169 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #37 exported successfully +2025-05-19 18:19:15,173 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #37 exported successfully + Processing block: Recipe #38... + Exporting Recipe #38 as XML... +2025-05-19 18:19:15,264 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #38 exported successfully +2025-05-19 18:19:15,268 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #38 exported successfully + Processing block: Recipe #39... + Exporting Recipe #39 as XML... +2025-05-19 18:19:15,362 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #39 exported successfully +2025-05-19 18:19:15,365 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #39 exported successfully + Processing block: Recipe #40... + Exporting Recipe #40 as XML... +2025-05-19 18:19:15,444 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #40 exported successfully +2025-05-19 18:19:15,448 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #40 exported successfully + Processing block: Recipe #41... + Exporting Recipe #41 as XML... +2025-05-19 18:19:15,545 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #41 exported successfully +2025-05-19 18:19:15,549 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #41 exported successfully + Processing block: Recipe #42... + Exporting Recipe #42 as XML... +2025-05-19 18:19:15,631 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #42 exported successfully +2025-05-19 18:19:15,635 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #42 exported successfully + Processing block: Recipe #43... + Exporting Recipe #43 as XML... +2025-05-19 18:19:15,717 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #43 exported successfully +2025-05-19 18:19:15,721 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #43 exported successfully + Processing block: Recipe #44... + Exporting Recipe #44 as XML... +2025-05-19 18:19:15,811 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #44 exported successfully +2025-05-19 18:19:15,813 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #44 exported successfully + Processing block: Recipe #45... + Exporting Recipe #45 as XML... +2025-05-19 18:19:15,903 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #45 exported successfully +2025-05-19 18:19:15,906 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #45 exported successfully + Processing block: Recipe #46... + Exporting Recipe #46 as XML... +2025-05-19 18:19:16,000 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #46 exported successfully +2025-05-19 18:19:16,008 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #46 exported successfully + Processing block: Recipe #47... + Exporting Recipe #47 as XML... +2025-05-19 18:19:16,151 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #47 exported successfully +2025-05-19 18:19:16,154 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #47 exported successfully + Processing block: Recipe #48... + Exporting Recipe #48 as XML... +2025-05-19 18:19:16,244 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #48 exported successfully +2025-05-19 18:19:16,247 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #48 exported successfully + Processing block: Recipe #49... + Exporting Recipe #49 as XML... +2025-05-19 18:19:16,339 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #49 exported successfully +2025-05-19 18:19:16,342 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #49 exported successfully + Processing block: Recipe #50... + Exporting Recipe #50 as XML... +2025-05-19 18:19:16,437 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #50 exported successfully +2025-05-19 18:19:16,440 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #50 exported successfully + Processing block: CIPRecipe#01... + Exporting CIPRecipe#01 as XML... +2025-05-19 18:19:16,542 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#01 exported successfully +2025-05-19 18:19:16,545 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#01 exported successfully + Processing block: CIPRecipe#02... + Exporting CIPRecipe#02 as XML... +2025-05-19 18:19:16,647 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#02 exported successfully +2025-05-19 18:19:16,652 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#02 exported successfully + Processing block: CIPRecipe#03... + Exporting CIPRecipe#03 as XML... +2025-05-19 18:19:16,747 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#03 exported successfully +2025-05-19 18:19:16,751 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#03 exported successfully + Processing block: CIPRecipe#04... + Exporting CIPRecipe#04 as XML... +2025-05-19 18:19:16,851 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#04 exported successfully +2025-05-19 18:19:16,855 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#04 exported successfully + Processing block: CIPRecipe#05... + Exporting CIPRecipe#05 as XML... +2025-05-19 18:19:16,952 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#05 exported successfully +2025-05-19 18:19:16,955 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#05 exported successfully + Processing block: CIPRecipe#06... + Exporting CIPRecipe#06 as XML... +2025-05-19 18:19:17,071 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#06 exported successfully +2025-05-19 18:19:17,088 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#06 exported successfully + Processing block: CIPRecipe#07... + Exporting CIPRecipe#07 as XML... +2025-05-19 18:19:17,179 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#07 exported successfully +2025-05-19 18:19:17,182 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#07 exported successfully + Processing block: CIPRecipe#08... + Exporting CIPRecipe#08 as XML... +2025-05-19 18:19:17,289 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#08 exported successfully +2025-05-19 18:19:17,293 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#08 exported successfully + Processing block: CIPRecipe#09... + Exporting CIPRecipe#09 as XML... +2025-05-19 18:19:17,380 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#09 exported successfully +2025-05-19 18:19:17,384 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#09 exported successfully + Processing block: CIPRecipe#10... + Exporting CIPRecipe#10 as XML... +2025-05-19 18:19:17,477 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#10 exported successfully +2025-05-19 18:19:17,481 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#10 exported successfully + Processing block: CIPRecipe#11... + Exporting CIPRecipe#11 as XML... +2025-05-19 18:19:17,585 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#11 exported successfully +2025-05-19 18:19:17,589 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#11 exported successfully + Processing block: CIPRecipe#12... + Exporting CIPRecipe#12 as XML... +2025-05-19 18:19:17,692 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#12 exported successfully +2025-05-19 18:19:17,707 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#12 exported successfully + Processing block: CIPRecipe#13... + Exporting CIPRecipe#13 as XML... +2025-05-19 18:19:17,800 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#13 exported successfully +2025-05-19 18:19:17,803 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#13 exported successfully + Processing block: CIPRecipe#14... + Exporting CIPRecipe#14 as XML... +2025-05-19 18:19:17,909 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#14 exported successfully +2025-05-19 18:19:17,912 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#14 exported successfully + Processing block: CIPRecipe#15... + Exporting CIPRecipe#15 as XML... +2025-05-19 18:19:18,004 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#15 exported successfully +2025-05-19 18:19:18,008 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#15 exported successfully + Processing block: CIPRecipe#16... + Exporting CIPRecipe#16 as XML... +2025-05-19 18:19:18,110 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#16 exported successfully +2025-05-19 18:19:18,113 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#16 exported successfully + Processing block: CIPRecipe#17... + Exporting CIPRecipe#17 as XML... +2025-05-19 18:19:18,220 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#17 exported successfully +2025-05-19 18:19:18,224 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#17 exported successfully + Processing block: CIPRecipe#18... + Exporting CIPRecipe#18 as XML... +2025-05-19 18:19:18,314 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#18 exported successfully +2025-05-19 18:19:18,318 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#18 exported successfully + Processing block: CIPRecipe#19... + Exporting CIPRecipe#19 as XML... +2025-05-19 18:19:18,439 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#19 exported successfully +2025-05-19 18:19:18,442 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#19 exported successfully + Processing block: CIPRecipe#20... + Exporting CIPRecipe#20 as XML... +2025-05-19 18:19:18,533 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#20 exported successfully +2025-05-19 18:19:18,536 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#20 exported successfully + Processing block: CIPRecipe#21... + Exporting CIPRecipe#21 as XML... +2025-05-19 18:19:18,657 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#21 exported successfully +2025-05-19 18:19:18,662 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#21 exported successfully + Processing block: CIPRecipe#22... + Exporting CIPRecipe#22 as XML... +2025-05-19 18:19:18,777 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#22 exported successfully +2025-05-19 18:19:18,781 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#22 exported successfully + Processing block: CIPRecipe#23... + Exporting CIPRecipe#23 as XML... +2025-05-19 18:19:18,887 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#23 exported successfully +2025-05-19 18:19:18,902 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#23 exported successfully + Processing block: CIPRecipe#24... + Exporting CIPRecipe#24 as XML... +2025-05-19 18:19:18,995 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#24 exported successfully +2025-05-19 18:19:18,998 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#24 exported successfully + Processing block: CIPRecipe#25... + Exporting CIPRecipe#25 as XML... +2025-05-19 18:19:19,086 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#25 exported successfully +2025-05-19 18:19:19,092 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#25 exported successfully + Processing block: CIPRecipe#26... + Exporting CIPRecipe#26 as XML... +2025-05-19 18:19:19,196 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#26 exported successfully +2025-05-19 18:19:19,200 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#26 exported successfully + Processing block: CIPRecipe#27... + Exporting CIPRecipe#27 as XML... +2025-05-19 18:19:19,303 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#27 exported successfully +2025-05-19 18:19:19,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#27 exported successfully + Processing block: CIPRecipe#28... + Exporting CIPRecipe#28 as XML... +2025-05-19 18:19:19,396 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#28 exported successfully +2025-05-19 18:19:19,400 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#28 exported successfully + Processing block: CIPRecipe#29... + Exporting CIPRecipe#29 as XML... +2025-05-19 18:19:19,491 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#29 exported successfully +2025-05-19 18:19:19,494 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#29 exported successfully + Processing block: CIPRecipe#30... + Exporting CIPRecipe#30 as XML... +2025-05-19 18:19:19,585 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#30 exported successfully +2025-05-19 18:19:19,587 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#30 exported successfully + Processing block: CIPSimple_Empty... + Exporting CIPSimple_Empty as XML... +2025-05-19 18:19:19,679 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Empty exported successfully +2025-05-19 18:19:19,681 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Empty exported successfully + Processing block: CIPSimple_Rinse... + Exporting CIPSimple_Rinse as XML... +2025-05-19 18:19:19,745 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Rinse exported successfully +2025-05-19 18:19:19,747 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Rinse exported successfully + Processing block: CIPSimple_Recirculation... + Exporting CIPSimple_Recirculation as XML... +2025-05-19 18:19:19,834 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Recirculation exported successfully +2025-05-19 18:19:19,836 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Recirculation exported successfully + Processing block: CIPSimple_Drain... + Exporting CIPSimple_Drain as XML... +2025-05-19 18:19:19,902 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Drain exported successfully +2025-05-19 18:19:19,911 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Drain exported successfully + Processing block: CIPSimple_Flood... + Exporting CIPSimple_Flood as XML... +2025-05-19 18:19:19,984 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Flood exported successfully +2025-05-19 18:19:19,987 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Flood exported successfully + Processing block: CIPSimple_RinseCO2... + Exporting CIPSimple_RinseCO2 as XML... +2025-05-19 18:19:20,081 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_RinseCO2 exported successfully +2025-05-19 18:19:20,085 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_RinseCO2 exported successfully + Processing block: CIPSimple_Start... + Exporting CIPSimple_Start as XML... +2025-05-19 18:19:20,175 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Start exported successfully +2025-05-19 18:19:20,178 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Start exported successfully + Processing block: CIPSimple_Recover... + Exporting CIPSimple_Recover as XML... +2025-05-19 18:19:20,254 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Recover exported successfully +2025-05-19 18:19:20,257 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Recover exported successfully + Processing block: CIPReportDB... + Exporting CIPReportDB as XML... +2025-05-19 18:19:20,364 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPReportDB exported successfully +2025-05-19 18:19:20,368 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPReportDB exported successfully + Processing block: ProdReportDB... + Exporting ProdReportDB as XML... +2025-05-19 18:19:20,474 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdReportDB exported successfully +2025-05-19 18:19:20,478 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdReportDB exported successfully + Processing block: PID MAIN Data... + Exporting PID MAIN Data as XML... +2025-05-19 18:19:20,613 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID MAIN Data exported successfully +2025-05-19 18:19:20,616 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID MAIN Data exported successfully + Processing block: Sel_Check_Brix_Data... + Exporting Sel_Check_Brix_Data as XML... +2025-05-19 18:19:20,682 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Sel_Check_Brix_Data exported successfully +2025-05-19 18:19:20,686 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Sel_Check_Brix_Data exported successfully + Processing block: FirstProduction_Data... + Exporting FirstProduction_Data as XML... +2025-05-19 18:19:20,770 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FirstProduction_Data exported successfully +2025-05-19 18:19:20,772 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FirstProduction_Data exported successfully + Processing block: Input_Data... + Exporting Input_Data as XML... +2025-05-19 18:19:20,957 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_Data exported successfully +2025-05-19 18:19:20,961 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_Data exported successfully + Processing block: MFM_Analog_Value_Data... + Exporting MFM_Analog_Value_Data as XML... +2025-05-19 18:19:21,035 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MFM_Analog_Value_Data exported successfully +2025-05-19 18:19:21,037 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MFM_Analog_Value_Data exported successfully + Processing block: Signal_Gen_Data... + Exporting Signal_Gen_Data as XML... +2025-05-19 18:19:21,095 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Signal_Gen_Data exported successfully +2025-05-19 18:19:21,098 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Signal_Gen_Data exported successfully + Processing block: BlenderPID__Main_Data... + Exporting BlenderPID__Main_Data as XML... +2025-05-19 18:19:21,193 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID__Main_Data exported successfully +2025-05-19 18:19:21,196 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID__Main_Data exported successfully + Processing block: AVS Valve Fault DB... + Exporting AVS Valve Fault DB as XML... +2025-05-19 18:19:21,283 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: AVS Valve Fault DB exported successfully +2025-05-19 18:19:21,286 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - AVS Valve Fault DB exported successfully + Processing block: Maselli_PA_Data... + Exporting Maselli_PA_Data as XML... +2025-05-19 18:19:21,340 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Data exported successfully +2025-05-19 18:19:21,343 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Data exported successfully + Processing block: SLIM_Variables... + Exporting SLIM_Variables as XML... +2025-05-19 18:19:21,402 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SLIM_Variables exported successfully +2025-05-19 18:19:21,405 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SLIM_Variables exported successfully + Processing block: Pneumatic Valve Fault DB... + Exporting Pneumatic Valve Fault DB as XML... +2025-05-19 18:19:21,503 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Pneumatic Valve Fault DB exported successfully +2025-05-19 18:19:21,506 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Pneumatic Valve Fault DB exported successfully + Processing block: BlenderRun_MeasFil_Data... + Exporting BlenderRun_MeasFil_Data as XML... +2025-05-19 18:19:21,595 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_MeasFil_Data exported successfully +2025-05-19 18:19:21,598 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_MeasFil_Data exported successfully + Processing block: BrixTracking_Data... + Exporting BrixTracking_Data as XML... +2025-05-19 18:19:21,688 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_Data exported successfully +2025-05-19 18:19:21,691 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_Data exported successfully + Processing block: CO2Tracking_Data... + Exporting CO2Tracking_Data as XML... +2025-05-19 18:19:21,786 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_Data exported successfully +2025-05-19 18:19:21,789 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_Data exported successfully + Processing block: Interlocking_NET... + Exporting Interlocking_NET as XML... +2025-05-19 18:19:21,876 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking_NET exported successfully +2025-05-19 18:19:21,879 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking_NET exported successfully + Processing block: HMI_IO_Showing... + Exporting HMI_IO_Showing as XML... +2025-05-19 18:19:22,061 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_IO_Showing exported successfully +2025-05-19 18:19:22,065 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_IO_Showing exported successfully + Processing block: HMI_ICS_Status... + Exporting HMI_ICS_Status as XML... +2025-05-19 18:19:22,140 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_ICS_Status exported successfully +2025-05-19 18:19:22,142 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_ICS_Status exported successfully + Processing block: HMI_Totalizers... + Exporting HMI_Totalizers as XML... +2025-05-19 18:19:22,222 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Totalizers exported successfully +2025-05-19 18:19:22,224 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Totalizers exported successfully + Processing block: GNS DriveDiag DB... + Exporting GNS DriveDiag DB as XML... +2025-05-19 18:19:22,294 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS DriveDiag DB exported successfully +2025-05-19 18:19:22,296 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS DriveDiag DB exported successfully + Processing block: DB1450... + Exporting DB1450 as XML... +2025-05-19 18:19:22,388 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DB1450 exported successfully +2025-05-19 18:19:22,391 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DB1450 exported successfully + Processing block: DB1451... + Exporting DB1451 as XML... +2025-05-19 18:19:22,496 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DB1451 exported successfully +2025-05-19 18:19:22,499 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DB1451 exported successfully + Processing block: DB2000... + Exporting DB2000 as XML... +2025-05-19 18:19:22,575 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DB2000 exported successfully +2025-05-19 18:19:22,580 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DB2000 exported successfully + Processing block: MTD NumBottleAftEndP DB... + Exporting MTD NumBottleAftEndP DB as XML... +2025-05-19 18:19:22,649 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MTD NumBottleAftEndP DB exported successfully +2025-05-19 18:19:22,653 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MTD NumBottleAftEndP DB exported successfully + Processing block: DELETE... + Exporting DELETE as XML... +2025-05-19 18:19:22,782 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DELETE exported successfully +2025-05-19 18:19:22,785 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DELETE exported successfully + Processing block: GLOBAL_DP_DIAG... + Exporting GLOBAL_DP_DIAG as XML... +2025-05-19 18:19:22,890 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GLOBAL_DP_DIAG exported successfully +2025-05-19 18:19:22,894 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GLOBAL_DP_DIAG exported successfully + Processing block: Profibus Network... + Exporting Profibus Network as XML... +2025-05-19 18:19:23,420 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Profibus Network exported successfully +2025-05-19 18:19:23,435 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Profibus Network exported successfully + Processing block: CPU_DP Global Diag... + Exporting CPU_DP Global Diag as XML... +2025-05-19 18:19:23,777 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CPU_DP Global Diag exported successfully +2025-05-19 18:19:23,792 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CPU_DP Global Diag exported successfully + Processing block: Block_move... + Exporting Block_move as XML... +2025-05-19 18:19:23,916 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Block_move exported successfully +2025-05-19 18:19:23,932 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Block_move exported successfully + Processing block: Block_compare... + Exporting Block_compare as XML... +2025-05-19 18:19:24,042 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Block_compare exported successfully +2025-05-19 18:19:24,045 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Block_compare exported successfully + Processing block: Buffer_Tank_Flushing... + Exporting Buffer_Tank_Flushing as XML... +2025-05-19 18:19:24,385 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Buffer_Tank_Flushing exported successfully +2025-05-19 18:19:24,390 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Buffer_Tank_Flushing exported successfully + Processing block: AG_SEND_LF... + Exporting AG_SEND_LF as XML... +2025-05-19 18:19:24,508 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: AG_SEND_LF exported successfully +2025-05-19 18:19:24,512 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - AG_SEND_LF exported successfully + Processing block: AG_RECV_LF... + Exporting AG_RECV_LF as XML... +2025-05-19 18:19:24,615 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: AG_RECV_LF exported successfully +2025-05-19 18:19:24,619 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - AG_RECV_LF exported successfully + Processing block: MessageScroll... + Exporting MessageScroll as XML... +2025-05-19 18:19:24,702 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MessageScroll exported successfully +2025-05-19 18:19:24,705 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MessageScroll exported successfully + Processing block: FC351... + Exporting FC351 as XML... +2025-05-19 18:19:24,869 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FC351 exported successfully +2025-05-19 18:19:24,887 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FC351 exported successfully + Processing block: FC350... + Exporting FC350 as XML... +2025-05-19 18:19:25,198 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FC350 exported successfully +2025-05-19 18:19:25,207 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FC350 exported successfully + Processing block: CIPReportManager... + Exporting CIPReportManager as XML... +2025-05-19 18:19:25,525 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPReportManager exported successfully +2025-05-19 18:19:25,539 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPReportManager exported successfully + Processing block: ProdReportManager... + Exporting ProdReportManager as XML... +2025-05-19 18:19:26,482 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdReportManager exported successfully +2025-05-19 18:19:26,604 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdReportManager exported successfully + Processing block: CTRLCoolingSystem... + Exporting CTRLCoolingSystem as XML... +2025-05-19 18:19:26,811 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CTRLCoolingSystem exported successfully +2025-05-19 18:19:26,814 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CTRLCoolingSystem exported successfully + Processing block: RecipeCalculation... + Exporting RecipeCalculation as XML... +2025-05-19 18:19:35,663 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeCalculation exported successfully +2025-05-19 18:19:35,676 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeCalculation exported successfully + Exporting RecipeCalculation as SCL... +2025-05-19 18:19:35,926 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block RecipeCalculation external source successfully generated + Processing block: Baialage... + Exporting Baialage as XML... +2025-05-19 18:19:36,160 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Baialage exported successfully +2025-05-19 18:19:36,163 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Baialage exported successfully + Processing block: Syrup Rinse QCO_Seq... + Exporting Syrup Rinse QCO_Seq as XML... +2025-05-19 18:19:36,358 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup Rinse QCO_Seq exported successfully +2025-05-19 18:19:36,370 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup Rinse QCO_Seq exported successfully + Processing block: FC1828... + Exporting FC1828 as XML... +2025-05-19 18:19:36,529 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FC1828 exported successfully +2025-05-19 18:19:36,533 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FC1828 exported successfully + Processing block: Clock Signal... + Exporting Clock Signal as XML... +2025-05-19 18:19:36,768 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Clock Signal exported successfully +2025-05-19 18:19:36,773 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Clock Signal exported successfully + Processing block: PPM303_VFC_Ctrl... + Exporting PPM303_VFC_Ctrl as XML... +2025-05-19 18:19:36,894 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPM303_VFC_Ctrl exported successfully +2025-05-19 18:19:36,897 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPM303_VFC_Ctrl exported successfully + Processing block: PPN301_VFC_Ctrl... + Exporting PPN301_VFC_Ctrl as XML... +2025-05-19 18:20:12,964 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPN301_VFC_Ctrl exported successfully +2025-05-19 18:20:12,968 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPN301_VFC_Ctrl exported successfully + Processing block: PPP302_VFC_Ctrl... + Exporting PPP302_VFC_Ctrl as XML... + ERROR exporting block PPP302_VFC_Ctrl: OpennessAccessException: Access to a disposed object of type 'Siemens.Engineering.SW.Blocks.FC' is not possible. + ERROR processing Program Blocks: OpennessAccessException: Access to a disposed object of type 'Siemens.Engineering.SW.Blocks.FC' is not possible. -[PLC: PLC] Exporting PLC Data Types (UDTs)... - Target: C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport\PLC\PlcDataTypes - Found 24 UDTs. - Processing UDT: AnalogInstrument... - Exporting AnalogInstrument... -2025-05-05 12:38:56,435 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: AnalogInstrument exported successfully -2025-05-05 12:38:56,437 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - AnalogInstrument exported successfully - Processing UDT: CIP_Link_Type... - Exporting CIP_Link_Type... -2025-05-05 12:38:56,499 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: CIP_Link_Type exported successfully -2025-05-05 12:38:56,501 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - CIP_Link_Type exported successfully - Processing UDT: CIP_Simple_Type... - Exporting CIP_Simple_Type... -2025-05-05 12:38:56,563 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: CIP_Simple_Type exported successfully -2025-05-05 12:38:56,565 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - CIP_Simple_Type exported successfully - Processing UDT: CIP_Step_Type... - Exporting CIP_Step_Type... -2025-05-05 12:38:56,597 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: CIP_Step_Type exported successfully -2025-05-05 12:38:56,600 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - CIP_Step_Type exported successfully - Processing UDT: CIP_WaitEvent_Type... - Exporting CIP_WaitEvent_Type... -2025-05-05 12:38:56,658 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: CIP_WaitEvent_Type exported successfully -2025-05-05 12:38:56,659 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - CIP_WaitEvent_Type exported successfully - Processing UDT: Device... - Exporting Device... -2025-05-05 12:38:56,690 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: Device exported successfully -2025-05-05 12:38:56,691 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - Device exported successfully - Processing UDT: DigitalInstrument... - Exporting DigitalInstrument... -2025-05-05 12:38:56,733 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: DigitalInstrument exported successfully -2025-05-05 12:38:56,734 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - DigitalInstrument exported successfully - Processing UDT: FunctionButton... - Exporting FunctionButton... -2025-05-05 12:38:56,764 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: FunctionButton exported successfully -2025-05-05 12:38:56,766 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - FunctionButton exported successfully - Processing UDT: PID... - Exporting PID... -2025-05-05 12:38:56,789 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: PID exported successfully -2025-05-05 12:38:56,791 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PID exported successfully - Processing UDT: QCO Phase... - Exporting QCO Phase... -2025-05-05 12:38:56,819 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: QCO Phase exported successfully -2025-05-05 12:38:56,820 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - QCO Phase exported successfully - Processing UDT: QCO Spare... - Exporting QCO Spare... -2025-05-05 12:38:56,850 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: QCO Spare exported successfully -2025-05-05 12:38:56,851 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - QCO Spare exported successfully - Processing UDT: QCO Timer... - Exporting QCO Timer... -2025-05-05 12:38:56,877 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: QCO Timer exported successfully -2025-05-05 12:38:56,880 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - QCO Timer exported successfully - Processing UDT: QCO Timer_Array_1... - Exporting QCO Timer_Array_1... -2025-05-05 12:38:56,916 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: QCO Timer_Array_1 exported successfully -2025-05-05 12:38:56,918 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - QCO Timer_Array_1 exported successfully - Processing UDT: Recipe_Prod... - Exporting Recipe_Prod... -2025-05-05 12:38:56,958 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: Recipe_Prod exported successfully -2025-05-05 12:38:56,960 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - Recipe_Prod exported successfully - Processing UDT: ReportCIPSimpleData... - Exporting ReportCIPSimpleData... -2025-05-05 12:38:56,996 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: ReportCIPSimpleData exported successfully -2025-05-05 12:38:56,998 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - ReportCIPSimpleData exported successfully - Processing UDT: TADDR_PAR... - Exporting TADDR_PAR... -2025-05-05 12:38:57,027 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: TADDR_PAR exported successfully -2025-05-05 12:38:57,029 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - TADDR_PAR exported successfully - Processing UDT: TCON_PAR... - Exporting TCON_PAR... -2025-05-05 12:38:57,057 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: TCON_PAR exported successfully -2025-05-05 12:38:57,059 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - TCON_PAR exported successfully - Processing UDT: TCON_PAR_LF... - Exporting TCON_PAR_LF... -2025-05-05 12:38:57,093 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: TCON_PAR_LF exported successfully -2025-05-05 12:38:57,107 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - TCON_PAR_LF exported successfully - Processing UDT: Tipo di dati utente_1... - Exporting Tipo di dati utente_1... -2025-05-05 12:38:57,140 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: Tipo di dati utente_1 exported successfully -2025-05-05 12:38:57,141 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - Tipo di dati utente_1 exported successfully - Processing UDT: Tipo di dati utente_2... - Exporting Tipo di dati utente_2... -2025-05-05 12:38:57,199 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type: Tipo di dati utente_2 exported successfully -2025-05-05 12:38:57,201 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - Tipo di dati utente_2 exported successfully - Processing UDT: ASLeds... - Exporting ASLeds... -2025-05-05 12:38:57,210 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type ASLeds is know how protected, so ignore this -2025-05-05 12:38:57,212 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - ASLeds exported successfully - Processing UDT: IFLeds... - Exporting IFLeds... -2025-05-05 12:38:57,226 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type IFLeds is know how protected, so ignore this -2025-05-05 12:38:57,227 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - IFLeds exported successfully - Processing UDT: SV_FB_State... - Exporting SV_FB_State... -2025-05-05 12:38:57,240 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type SV_FB_State is know how protected, so ignore this -2025-05-05 12:38:57,241 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - SV_FB_State exported successfully - Processing UDT: SV_State... - Exporting SV_State... -2025-05-05 12:38:57,251 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - PLC user data type SV_State is know how protected, so ignore this -2025-05-05 12:38:57,253 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.UserDataType Export - SV_State exported successfully - UDT Export Summary: Exported=24, Skipped/Errors=0 +[PLC: CPU 315F-2 PN/DP] Exporting PLC Data Types (UDTs)... + Target: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML\CPU 315F-2 PN/DP\PlcDataTypes + ERROR processing UDTs: SerializationException: No se puede encontrar el ensamblado 'Siemens.Engineering, Version=18.0.0.0, Culture=neutral, PublicKeyToken=d29ec89bac048f84'. -[PLC: PLC] Exporting PLC Tag Tables... - Target: C:\Trabajo\SIDEL\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\Reporte\IOExport\PLC\PlcTags - Found 10 Tag Tables. - Processing Tag Table: Memories... - Exporting Memories... -2025-05-05 12:38:58,986 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Memories exported successfully -2025-05-05 12:38:58,988 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Memories exported successfully - Processing Tag Table: Tabella delle variabili standard... - Exporting Tabella delle variabili standard... -2025-05-05 12:38:59,127 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Tabella delle variabili standard exported successfully -2025-05-05 12:38:59,129 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Tabella delle variabili standard exported successfully - Processing Tag Table: Timers_Counters... - Exporting Timers_Counters... -2025-05-05 12:38:59,379 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Timers_Counters exported successfully -2025-05-05 12:38:59,394 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Timers_Counters exported successfully - Processing Tag Table: Inputs... - Exporting Inputs... -2025-05-05 12:38:59,506 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Inputs exported successfully -2025-05-05 12:38:59,508 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Inputs exported successfully - Processing Tag Table: Outputs... - Exporting Outputs... -2025-05-05 12:38:59,586 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Outputs exported successfully -2025-05-05 12:38:59,588 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Outputs exported successfully - Processing Tag Table: Tabella delle variabili_1... - Exporting Tabella delle variabili_1... -2025-05-05 12:38:59,609 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Tabella delle variabili_1 exported successfully -2025-05-05 12:38:59,610 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Tabella delle variabili_1 exported successfully - Processing Tag Table: Tabella delle variabili_2... - Exporting Tabella delle variabili_2... -2025-05-05 12:38:59,638 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: Tabella delle variabili_2 exported successfully -2025-05-05 12:38:59,640 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - Tabella delle variabili_2 exported successfully - Processing Tag Table: OutputsFesto... - Exporting OutputsFesto... -2025-05-05 12:38:59,745 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: OutputsFesto exported successfully -2025-05-05 12:38:59,746 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - OutputsFesto exported successfully - Processing Tag Table: InputsMaster... - Exporting InputsMaster... -2025-05-05 12:38:59,996 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: InputsMaster exported successfully -2025-05-05 12:38:59,997 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - InputsMaster exported successfully - Processing Tag Table: OutputsMaster... - Exporting OutputsMaster... -2025-05-05 12:39:00,257 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - PLC tag table: OutputsMaster exported successfully -2025-05-05 12:39:00,273 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.PlcTagTable Export - OutputsMaster exported successfully - Tag Table Export Summary: Exported=10, Skipped/Errors=0 +[PLC: CPU 315F-2 PN/DP] Exporting PLC Tag Tables... + Target: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML\CPU 315F-2 PN/DP\PlcTags + ERROR processing Tag Tables: SerializationException: No se puede encontrar el ensamblado 'Siemens.Engineering, Version=18.0.0.0, Culture=neutral, PublicKeyToken=d29ec89bac048f84'. ---- Finished processing PLC: PLC --- +--- Finished processing PLC: CPU 315F-2 PN/DP --- Export process completed. Closing TIA Portal... -2025-05-05 12:39:00,276 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal ClosePortal - Close TIA Portal +2025-05-19 18:20:13,413 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal ClosePortal - Close TIA Portal TIA Portal closed. Script finished. --- ERRORES (STDERR) --- -2025-05-05 12:38:21,407 [1] ERROR Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - -Siemens.TiaPortal.OpennessContracts.OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.OB'. - -Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.OB'. - -The programming language 'ProDiag_OB' is not supported during import and export. -2025-05-05 12:38:39,757 [1] ERROR Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - -Siemens.TiaPortal.OpennessContracts.OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.FB'. - -Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.FB'. - -The programming language 'ProDiag' is not supported during import and export. +2025-05-19 18:20:13,325 [1] ERROR Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - +Siemens.TiaPortal.OpennessContracts.OpennessAccessException: Access to a disposed object of type 'Siemens.Engineering.SW.Blocks.FC' is not possible. +2025-05-19 18:20:13,340 [1] ERROR Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GetName - +Siemens.TiaPortal.OpennessContracts.OpennessAccessException: Access to a disposed object of type 'Siemens.Engineering.SW.Blocks.FC' is not possible. +Traceback (most recent call last): + File "D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\ObtainIOFromProjectTia\x1.py", line 119, in export_plc_data + block_name = block.get_name() # Assuming get_name() exists + ^^^^^^^^^^^^^^^^ +ValueError: OpennessAccessException: Access to a disposed object of type 'Siemens.Engineering.SW.Blocks.FC' is not possible. +Traceback (most recent call last): + File "D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\ObtainIOFromProjectTia\x1.py", line 175, in export_plc_data + udts = plc.get_user_data_types() # + ^^^^^^^^^^^^^^^^^^^^^^^^^ +ValueError: SerializationException: No se puede encontrar el ensamblado 'Siemens.Engineering, Version=18.0.0.0, Culture=neutral, PublicKeyToken=d29ec89bac048f84'. +Traceback (most recent call last): + File "D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\ObtainIOFromProjectTia\x1.py", line 218, in export_plc_data + tag_tables = plc.get_plc_tag_tables() # + ^^^^^^^^^^^^^^^^^^^^^^^^ +ValueError: SerializationException: No se puede encontrar el ensamblado 'Siemens.Engineering, Version=18.0.0.0, Culture=neutral, PublicKeyToken=d29ec89bac048f84'. --- FIN DEL LOG --- diff --git a/backend/script_groups/ObtainIOFromProjectTia/script_config.json b/backend/script_groups/ObtainIOFromProjectTia/script_config.json index 05a14aa..bb8059b 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/script_config.json +++ b/backend/script_groups/ObtainIOFromProjectTia/script_config.json @@ -5,5 +5,5 @@ }, "level2": {}, "level3": {}, - "working_directory": "C:\\Trabajo\\SIDEL\\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\\Reporte\\IOExport" + "working_directory": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\\Reporte\\SourceDoc\\SourceXML" } \ No newline at end of file diff --git a/backend/script_groups/ObtainIOFromProjectTia/scripts_description.json b/backend/script_groups/ObtainIOFromProjectTia/scripts_description.json index a3ce86a..86ec268 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/scripts_description.json +++ b/backend/script_groups/ObtainIOFromProjectTia/scripts_description.json @@ -1,12 +1,12 @@ { "x1.py": { - "display_name": "1: Exportar Lógica desde TIA", + "display_name": "1: Exportar Lógica desde TIA Portal", "short_description": "Exporta la lógica del PLC desde TIA Portal en archivos XML y SCL.", "long_description": "Este script utiliza TIA Portal Openness para exportar la lógica de un PLC en formato XML y SCL. Permite seleccionar un proyecto de TIA Portal y genera los archivos de exportación en el directorio configurado.\n***\n**Lógica Principal:**\n\n1. **Configuración:** Carga parámetros desde `ParamManagerScripts` (directorio de trabajo, versión de TIA Portal).\n2. **Selección de Proyecto:** Abre un cuadro de diálogo para seleccionar el archivo del proyecto de TIA Portal.\n3. **Conexión a TIA Portal:** Utiliza la API de TIA Openness para conectarse al portal y abrir el proyecto seleccionado.\n4. **Exportación:** Exporta la lógica del PLC en archivos XML y SCL al directorio configurado.\n5. **Cierre:** Cierra la conexión con TIA Portal al finalizar.", "hidden": false }, "x4.py": { - "display_name": "4: Exportar Referencias Cruzadas", + "display_name": "2: Exportar Referencias Cruzadas desde Tia Portal", "short_description": "Script para exportar las referencias cruzadas", "long_description": "", "hidden": false diff --git a/backend/script_groups/ObtainIOFromProjectTia/work_dir.json b/backend/script_groups/ObtainIOFromProjectTia/work_dir.json index 1d0832e..f67139c 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/work_dir.json +++ b/backend/script_groups/ObtainIOFromProjectTia/work_dir.json @@ -1,6 +1,7 @@ { - "path": "C:\\Trabajo\\SIDEL\\06 - E5.007363 - Modifica O&U - SAE196 (cip integrato)\\Reporte\\IOExport", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\\Reporte\\SourceDoc\\SourceXML", "history": [ + "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\\Reporte\\SourceDoc\\SourceXML", "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/S7_DB_Utils/description.json b/backend/script_groups/S7_DB_Utils/description.json index 2ef6bd0..7423664 100644 --- a/backend/script_groups/S7_DB_Utils/description.json +++ b/backend/script_groups/S7_DB_Utils/description.json @@ -1,5 +1,5 @@ { - "name": "S7 DB Utilities", + "name": "Siemens-S7 : 01 : S7 DB Utilities", "description": "Utilidades para Trabajar con DBs de Siemens S7", "version": "1.0", "author": "Miguel" diff --git a/backend/script_groups/S7_DB_Utils/log_x7_value_updater.txt b/backend/script_groups/S7_DB_Utils/log_x7_value_updater.txt index db2e294..d86f172 100644 --- a/backend/script_groups/S7_DB_Utils/log_x7_value_updater.txt +++ b/backend/script_groups/S7_DB_Utils/log_x7_value_updater.txt @@ -1,9 +1,9 @@ --- Log de Ejecución: x7_value_updater.py --- Grupo: S7_DB_Utils Directorio de Trabajo: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001 -Inicio: 2025-05-18 13:56:40 -Fin: 2025-05-18 13:56:41 -Duración: 0:00:01.040596 +Inicio: 2025-05-18 15:48:00 +Fin: 2025-05-18 15:48:01 +Duración: 0:00:00.811974 Estado: SUCCESS (Código de Salida: 0) --- SALIDA ESTÁNDAR (STDOUT) --- @@ -13,21 +13,21 @@ Los archivos de documentación se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Se encontraron 1 pares de archivos para procesar. --- Procesando par de archivos --- -Data file: db1001_data.db -Format file: db1001_format.db -Parseando archivo data: db1001_data.db -Parseando archivo format: db1001_format.db -Archivos JSON generados: db1001_data.json y db1001_format.json +Data file: DB1001_data.AWL +Format file: DB1001_format.AWL +Parseando archivo data: DB1001_data.AWL +Parseando archivo format: DB1001_format.AWL +Archivos JSON generados: DB1001_data.json y DB1001_format.json Comparando estructuras para DB 'HMI_Blender_Parameters': 284 variables en _data, 284 variables en _format Los archivos son compatibles. Creando el archivo _updated... Procesando DB 'HMI_Blender_Parameters': 284 variables en _format, 284 variables en _data Estadísticas para DB 'HMI_Blender_Parameters': 280 variables actualizadas, 0 no encontradas -Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\db1001_updated.json -Archivo Excel de comparación generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_comparison.xlsx -Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.md -Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.txt -Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\db1001_updated.db +Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\DB1001_updated.json +Archivo Excel de comparación generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\DB1001_comparison.xlsx +Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\DB1001_updated.md +Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\DB1001_updated.txt +Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\DB1001_updated.AWL --- Proceso completado --- diff --git a/backend/script_groups/XML Parser to SCL/description.json b/backend/script_groups/XML Parser to SCL/description.json index ab13851..1f7846f 100644 --- a/backend/script_groups/XML Parser to SCL/description.json +++ b/backend/script_groups/XML Parser to SCL/description.json @@ -1,5 +1,5 @@ { - "name": "Procesador de XML LAD-SCL-AWL exportado de TIA a SCL / Markdown", + "name": "Siemens-Tia : 03 : Procesador de XML LAD-SCL-AWL exportado de TIA a SCL / Markdown", "description": "Conjunto de scripts que procesan archivos XML exportados de TIA, conviertiendo los objetos LAD a SCL y generando documentación en formato Markdown. ", "version": "1.0", "author": "Miguel" diff --git a/backend/script_groups/XML Parser to SCL/scripts_description.json b/backend/script_groups/XML Parser to SCL/scripts_description.json index 4c5ef60..aebca11 100644 --- a/backend/script_groups/XML Parser to SCL/scripts_description.json +++ b/backend/script_groups/XML Parser to SCL/scripts_description.json @@ -24,7 +24,7 @@ "hidden": true }, "x4_cross_reference.py": { - "display_name": "4: Generar Cross References", + "display_name": "2: Procesar un archivo individual usando x4", "short_description": "LadderToSCL - Conversor de Siemens LAD/FUP XML a SCL", "long_description": "", "hidden": false diff --git a/backend/script_groups/example_group/description.json b/backend/script_groups/example_group/description.json index dd93ecb..cb72278 100644 --- a/backend/script_groups/example_group/description.json +++ b/backend/script_groups/example_group/description.json @@ -1,5 +1,5 @@ { - "name": "Grupo de Ejemplo Auto", + "name": "Code : 00 : Grupo de Ejemplo Auto", "description": "Scripts de demostración que muestran las funcionalidades básicas del sistema.", "version": "1.0", "author": "Admin" diff --git a/data/log.txt b/data/log.txt index 2a558cd..f611253 100644 --- a/data/log.txt +++ b/data/log.txt @@ -1,207 +1,1468 @@ -[13:35:23] Iniciando ejecución de x7_value_updater.py en C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001... -[13:35:24] Using working directory: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001 -[13:35:24] Los archivos JSON se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json -[13:35:24] Los archivos de documentación se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation -[13:35:24] Se encontraron 1 pares de archivos para procesar. -[13:35:24] --- Procesando par de archivos --- -[13:35:24] Data file: db1001_data.db -[13:35:24] Format file: db1001_format.db -[13:35:24] Parseando archivo data: db1001_data.db -[13:35:24] Parseando archivo format: db1001_format.db -[13:35:24] Archivos JSON generados: db1001_data.json y db1001_format.json -[13:35:24] Comparando estructuras para DB 'HMI_Blender_Parameters': 284 variables en _data, 284 variables en _format -[13:35:24] Los archivos son compatibles. Creando el archivo _updated... -[13:35:24] Procesando DB 'HMI_Blender_Parameters': 284 variables en _format, 284 variables en _data -[13:35:24] Estadísticas para DB 'HMI_Blender_Parameters': 280 variables actualizadas, 0 no encontradas -[13:35:24] Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\db1001_updated.json -[13:35:25] Archivo Excel de comparación generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_comparison.xlsx -[13:35:25] Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.md -[13:35:25] Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.txt -[13:35:25] Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\db1001_updated.db -[13:35:25] --- Proceso completado --- -[13:35:25] Ejecución de x7_value_updater.py finalizada (success). Duración: 0:00:01.118906. -[13:35:25] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\S7_DB_Utils\log_x7_value_updater.txt -[13:42:36] Iniciando ejecución de x7_value_updater.py en C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001... -[13:42:36] Using working directory: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001 -[13:42:36] Los archivos JSON se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json -[13:42:36] Los archivos de documentación se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation -[13:42:36] Se encontraron 1 pares de archivos para procesar. -[13:42:36] --- Procesando par de archivos --- -[13:42:36] Data file: db1001_data.db -[13:42:36] Format file: db1001_format.db -[13:42:36] Parseando archivo data: db1001_data.db -[13:42:36] Parseando archivo format: db1001_format.db -[13:42:36] Archivos JSON generados: db1001_data.json y db1001_format.json -[13:42:37] Comparando estructuras para DB 'HMI_Blender_Parameters': 284 variables en _data, 284 variables en _format -[13:42:37] Los archivos son compatibles. Creando el archivo _updated... -[13:42:37] Procesando DB 'HMI_Blender_Parameters': 284 variables en _format, 284 variables en _data -[13:42:37] Estadísticas para DB 'HMI_Blender_Parameters': 280 variables actualizadas, 0 no encontradas -[13:42:37] Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\db1001_updated.json -[13:42:37] Archivo Excel de comparación generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_comparison.xlsx -[13:42:37] Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.md -[13:42:37] Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.txt -[13:42:37] Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\db1001_updated.db -[13:42:37] --- Proceso completado --- -[13:42:37] Ejecución de x7_value_updater.py finalizada (success). Duración: 0:00:01.100211. -[13:42:37] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\S7_DB_Utils\log_x7_value_updater.txt -[13:44:02] Iniciando ejecución de x7_value_updater.py en C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001... -[13:44:03] Using working directory: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001 -[13:44:03] Los archivos JSON se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json -[13:44:03] Los archivos de documentación se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation -[13:44:03] Se encontraron 1 pares de archivos para procesar. -[13:44:03] --- Procesando par de archivos --- -[13:44:03] Data file: db1001_data.db -[13:44:03] Format file: db1001_format.db -[13:44:03] Parseando archivo data: db1001_data.db -[13:44:03] Parseando archivo format: db1001_format.db -[13:44:03] Archivos JSON generados: db1001_data.json y db1001_format.json -[13:44:03] Comparando estructuras para DB 'HMI_Blender_Parameters': 284 variables en _data, 284 variables en _format -[13:44:03] Los archivos son compatibles. Creando el archivo _updated... -[13:44:03] Procesando DB 'HMI_Blender_Parameters': 284 variables en _format, 284 variables en _data -[13:44:03] Estadísticas para DB 'HMI_Blender_Parameters': 280 variables actualizadas, 0 no encontradas -[13:44:03] Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\db1001_updated.json -[13:44:04] Archivo Excel de comparación generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_comparison.xlsx -[13:44:04] Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.md -[13:44:04] Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.txt -[13:44:04] Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\db1001_updated.db -[13:44:04] --- Proceso completado --- -[13:44:04] Ejecución de x7_value_updater.py finalizada (success). Duración: 0:00:01.338426. -[13:44:04] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\S7_DB_Utils\log_x7_value_updater.txt -[13:44:20] Iniciando ejecución de x7_value_updater.py en C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001... -[13:44:20] Using working directory: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001 -[13:44:20] Los archivos JSON se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json -[13:44:20] Los archivos de documentación se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation -[13:44:20] Se encontraron 1 pares de archivos para procesar. -[13:44:20] --- Procesando par de archivos --- -[13:44:20] Data file: db1001_data.db -[13:44:20] Format file: db1001_format.db -[13:44:20] Parseando archivo data: db1001_data.db -[13:44:20] Parseando archivo format: db1001_format.db -[13:44:20] Archivos JSON generados: db1001_data.json y db1001_format.json -[13:44:20] Comparando estructuras para DB 'HMI_Blender_Parameters': 284 variables en _data, 284 variables en _format -[13:44:20] Los archivos son compatibles. Creando el archivo _updated... -[13:44:20] Procesando DB 'HMI_Blender_Parameters': 284 variables en _format, 284 variables en _data -[13:44:20] Estadísticas para DB 'HMI_Blender_Parameters': 280 variables actualizadas, 0 no encontradas -[13:44:20] Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\db1001_updated.json -[13:44:21] Archivo Excel de comparación generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_comparison.xlsx -[13:44:21] Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.md -[13:44:21] Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.txt -[13:44:21] Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\db1001_updated.db -[13:44:21] --- Proceso completado --- -[13:44:21] Ejecución de x7_value_updater.py finalizada (success). Duración: 0:00:01.374863. -[13:44:21] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\S7_DB_Utils\log_x7_value_updater.txt -[13:44:43] Iniciando ejecución de x7_value_updater.py en C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001... -[13:44:44] Using working directory: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001 -[13:44:44] Los archivos JSON se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json -[13:44:44] Los archivos de documentación se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation -[13:44:44] Se encontraron 1 pares de archivos para procesar. -[13:44:44] --- Procesando par de archivos --- -[13:44:44] Data file: db1001_data.db -[13:44:44] Format file: db1001_format.db -[13:44:44] Parseando archivo data: db1001_data.db -[13:44:44] Parseando archivo format: db1001_format.db -[13:44:44] Archivos JSON generados: db1001_data.json y db1001_format.json -[13:44:44] Comparando estructuras para DB 'HMI_Blender_Parameters': 284 variables en _data, 284 variables en _format -[13:44:44] Los archivos son compatibles. Creando el archivo _updated... -[13:44:44] Procesando DB 'HMI_Blender_Parameters': 284 variables en _format, 284 variables en _data -[13:44:44] Estadísticas para DB 'HMI_Blender_Parameters': 280 variables actualizadas, 0 no encontradas -[13:44:44] Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\db1001_updated.json -[13:44:45] Archivo Excel de comparación generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_comparison.xlsx -[13:44:45] Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.md -[13:44:45] Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.txt -[13:44:45] Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\db1001_updated.db -[13:44:45] --- Proceso completado --- -[13:44:45] Ejecución de x7_value_updater.py finalizada (success). Duración: 0:00:01.136703. -[13:44:45] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\S7_DB_Utils\log_x7_value_updater.txt -[13:48:26] Iniciando ejecución de x7_value_updater.py en C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001... -[13:48:26] Using working directory: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001 -[13:48:26] Los archivos JSON se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json -[13:48:26] Los archivos de documentación se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation -[13:48:26] Se encontraron 1 pares de archivos para procesar. -[13:48:26] --- Procesando par de archivos --- -[13:48:26] Data file: db1001_data.db -[13:48:26] Format file: db1001_format.db -[13:48:26] Parseando archivo data: db1001_data.db -[13:48:26] Parseando archivo format: db1001_format.db -[13:48:26] Archivos JSON generados: db1001_data.json y db1001_format.json -[13:48:26] Comparando estructuras para DB 'HMI_Blender_Parameters': 284 variables en _data, 284 variables en _format -[13:48:26] Los archivos son compatibles. Creando el archivo _updated... -[13:48:26] Procesando DB 'HMI_Blender_Parameters': 284 variables en _format, 284 variables en _data -[13:48:26] Estadísticas para DB 'HMI_Blender_Parameters': 280 variables actualizadas, 0 no encontradas -[13:48:26] Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\db1001_updated.json -[13:48:27] Error al escribir el archivo Excel C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_comparison.xlsx: [Errno 13] Permission denied: 'C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\\Reporte\\DB1001\\documentation\\db1001_comparison.xlsx' -[13:48:27] Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.md -[13:48:27] Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.txt -[13:48:27] Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\db1001_updated.db -[13:48:27] --- Proceso completado --- -[13:48:27] Ejecución de x7_value_updater.py finalizada (success). Duración: 0:00:01.118145. -[13:48:27] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\S7_DB_Utils\log_x7_value_updater.txt -[13:48:31] Iniciando ejecución de x7_value_updater.py en C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001... -[13:48:31] Using working directory: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001 -[13:48:31] Los archivos JSON se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json -[13:48:31] Los archivos de documentación se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation -[13:48:31] Se encontraron 1 pares de archivos para procesar. -[13:48:31] --- Procesando par de archivos --- -[13:48:31] Data file: db1001_data.db -[13:48:31] Format file: db1001_format.db -[13:48:31] Parseando archivo data: db1001_data.db -[13:48:31] Parseando archivo format: db1001_format.db -[13:48:31] Archivos JSON generados: db1001_data.json y db1001_format.json -[13:48:31] Comparando estructuras para DB 'HMI_Blender_Parameters': 284 variables en _data, 284 variables en _format -[13:48:31] Los archivos son compatibles. Creando el archivo _updated... -[13:48:31] Procesando DB 'HMI_Blender_Parameters': 284 variables en _format, 284 variables en _data -[13:48:31] Estadísticas para DB 'HMI_Blender_Parameters': 280 variables actualizadas, 0 no encontradas -[13:48:31] Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\db1001_updated.json -[13:48:32] Archivo Excel de comparación generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_comparison.xlsx -[13:48:32] Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.md -[13:48:32] Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.txt -[13:48:32] Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\db1001_updated.db -[13:48:32] --- Proceso completado --- -[13:48:32] Ejecución de x7_value_updater.py finalizada (success). Duración: 0:00:01.155387. -[13:48:32] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\S7_DB_Utils\log_x7_value_updater.txt -[13:55:31] Iniciando ejecución de x7_value_updater.py en C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001... -[13:55:31] Using working directory: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001 -[13:55:31] Los archivos JSON se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json -[13:55:31] Los archivos de documentación se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation -[13:55:31] Se encontraron 1 pares de archivos para procesar. -[13:55:31] --- Procesando par de archivos --- -[13:55:31] Data file: db1001_data.db -[13:55:31] Format file: db1001_format.db -[13:55:31] Parseando archivo data: db1001_data.db -[13:55:31] Parseando archivo format: db1001_format.db -[13:55:31] Archivos JSON generados: db1001_data.json y db1001_format.json -[13:55:31] Comparando estructuras para DB 'HMI_Blender_Parameters': 284 variables en _data, 284 variables en _format -[13:55:31] Los archivos son compatibles. Creando el archivo _updated... -[13:55:31] Procesando DB 'HMI_Blender_Parameters': 284 variables en _format, 284 variables en _data -[13:55:31] Estadísticas para DB 'HMI_Blender_Parameters': 280 variables actualizadas, 0 no encontradas -[13:55:31] Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\db1001_updated.json -[13:55:32] Archivo Excel de comparación generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_comparison.xlsx -[13:55:32] Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.md -[13:55:32] Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.txt -[13:55:32] Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\db1001_updated.db -[13:55:32] --- Proceso completado --- -[13:55:33] Ejecución de x7_value_updater.py finalizada (success). Duración: 0:00:01.577361. -[13:55:33] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\S7_DB_Utils\log_x7_value_updater.txt -[13:56:40] Iniciando ejecución de x7_value_updater.py en C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001... -[13:56:40] Using working directory: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001 -[13:56:40] Los archivos JSON se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json -[13:56:40] Los archivos de documentación se guardarán en: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation -[13:56:40] Se encontraron 1 pares de archivos para procesar. -[13:56:40] --- Procesando par de archivos --- -[13:56:40] Data file: db1001_data.db -[13:56:40] Format file: db1001_format.db -[13:56:40] Parseando archivo data: db1001_data.db -[13:56:40] Parseando archivo format: db1001_format.db -[13:56:41] Archivos JSON generados: db1001_data.json y db1001_format.json -[13:56:41] Comparando estructuras para DB 'HMI_Blender_Parameters': 284 variables en _data, 284 variables en _format -[13:56:41] Los archivos son compatibles. Creando el archivo _updated... -[13:56:41] Procesando DB 'HMI_Blender_Parameters': 284 variables en _format, 284 variables en _data -[13:56:41] Estadísticas para DB 'HMI_Blender_Parameters': 280 variables actualizadas, 0 no encontradas -[13:56:41] Archivo _updated generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\json\db1001_updated.json -[13:56:41] Archivo Excel de comparación generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_comparison.xlsx -[13:56:41] Archivo Markdown generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.md -[13:56:41] Archivo S7 generado: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\documentation\db1001_updated.txt -[13:56:41] Archivo S7 copiado a: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\DB1001\db1001_updated.db -[13:56:41] --- Proceso completado --- -[13:56:41] Ejecución de x7_value_updater.py finalizada (success). Duración: 0:00:01.040596. -[13:56:41] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\S7_DB_Utils\log_x7_value_updater.txt +[18:04:31] Iniciando ejecución de x1.py en C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML... +[18:04:32] --- TIA Portal Data Exporter (Blocks, UDTs, Tags) --- +[18:13:09] Selected Project: C:/Trabajo/SIDEL/09 - SAE452 - Diet as Regular - San Giovanni in Bosco/Reporte/SourceDoc/Migration/SAE452/SAE452.ap18 +[18:13:09] Using Export Directory (Working Directory): C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML +[18:13:09] Connecting to TIA Portal V18.0... +[18:13:11] 2025-05-19 18:13:11,141 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Global OpenPortal - Start TIA Portal, please acknowledge the security dialog. +[18:13:11] 2025-05-19 18:13:11,190 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Global OpenPortal - With user interface +[18:14:01] Connected to TIA Portal. +[18:14:01] 2025-05-19 18:14:01,844 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal GetProcessId - Process id: 25044 +[18:14:01] Portal Process ID: 25044 +[18:14:01] Opening project: SAE452.ap18... +[18:14:02] 2025-05-19 18:14:02,666 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal OpenProject - Open project... C:/Trabajo/SIDEL/09 - SAE452 - Diet as Regular - San Giovanni in Bosco/Reporte/SourceDoc/Migration/SAE452/SAE452.ap18 +[18:16:26] Project opened successfully. +[18:16:36] 2025-05-19 18:16:36,068 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Project GetPlcs - Found plc CPU 315F-2 PN/DP with parent name _SSAE0452 +[18:16:43] Found 1 PLC(s). Starting export process... +[18:16:43] --- Processing PLC: CPU 315F-2 PN/DP --- +[18:16:43] [PLC: CPU 315F-2 PN/DP] Exporting Program Blocks... +[18:16:43] XML Target: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML\CPU 315F-2 PN/DP\ProgramBlocks_XML +[18:16:43] SCL Target: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML\CPU 315F-2 PN/DP\ProgramBlocks_SCL +[18:16:43] Found 410 program blocks. +[18:16:46] Processing block: ISOonTCP_or_TCP_Protocol... +[18:16:53] Exporting ISOonTCP_or_TCP_Protocol as XML... +[18:17:01] 2025-05-19 18:17:01,967 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ISOonTCP_or_TCP_Protocol exported successfully +[18:17:08] 2025-05-19 18:17:02,142 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ISOonTCP_or_TCP_Protocol exported successfully +[18:17:08] Processing block: PIDControl... +[18:17:08] Exporting PIDControl as XML... +[18:17:10] 2025-05-19 18:17:10,478 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PIDControl exported successfully +[18:17:17] 2025-05-19 18:17:10,831 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PIDControl exported successfully +[18:17:17] Processing block: DETAIL_DP_DIAG... +[18:17:17] Exporting DETAIL_DP_DIAG as XML... +[18:17:17] 2025-05-19 18:17:11,094 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DETAIL_DP_DIAG exported successfully +[18:17:17] 2025-05-19 18:17:11,110 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DETAIL_DP_DIAG exported successfully +[18:17:17] Processing block: Net Dosing Sys Prof... +[18:17:17] Exporting Net Dosing Sys Prof as XML... +[18:17:17] 2025-05-19 18:17:12,103 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net Dosing Sys Prof exported successfully +[18:17:17] 2025-05-19 18:17:12,117 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net Dosing Sys Prof exported successfully +[18:17:17] Processing block: ICS Profibus Comm... +[18:17:17] Exporting ICS Profibus Comm as XML... +[18:17:17] 2025-05-19 18:17:17,458 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ICS Profibus Comm exported successfully +[18:17:17] 2025-05-19 18:17:17,462 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ICS Profibus Comm exported successfully +[18:17:17] Processing block: GNS DriveDiag... +[18:17:17] Exporting GNS DriveDiag as XML... +[18:17:18] 2025-05-19 18:17:18,722 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS DriveDiag exported successfully +[18:17:20] 2025-05-19 18:17:18,727 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS DriveDiag exported successfully +[18:17:20] Processing block: HMI_Blender_Parameters... +[18:17:20] Exporting HMI_Blender_Parameters as XML... +[18:17:20] 2025-05-19 18:17:19,017 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Blender_Parameters exported successfully +[18:17:20] 2025-05-19 18:17:19,022 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Blender_Parameters exported successfully +[18:17:20] Processing block: HMI Drive... +[18:17:20] Exporting HMI Drive as XML... +[18:17:20] 2025-05-19 18:17:19,391 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI Drive exported successfully +[18:17:20] 2025-05-19 18:17:19,397 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI Drive exported successfully +[18:17:20] Processing block: GNS DriveDiagMain... +[18:17:22] Exporting GNS DriveDiagMain as XML... +[18:17:32] 2025-05-19 18:17:22,991 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS DriveDiagMain exported successfully +[18:17:40] 2025-05-19 18:17:22,995 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS DriveDiagMain exported successfully +[18:17:40] Processing block: Integral... +[18:17:40] Exporting Integral as XML... +[18:17:40] 2025-05-19 18:17:25,571 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Integral exported successfully +[18:17:40] 2025-05-19 18:17:25,575 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Integral exported successfully +[18:17:40] Exporting Integral as SCL... +[18:17:40] 2025-05-19 18:17:26,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Integral external source successfully generated +[18:17:40] Processing block: LowPassFilter... +[18:17:40] Exporting LowPassFilter as XML... +[18:17:40] 2025-05-19 18:17:27,542 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LowPassFilter exported successfully +[18:17:40] 2025-05-19 18:17:27,557 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LowPassFilter exported successfully +[18:17:40] Exporting LowPassFilter as SCL... +[18:17:40] 2025-05-19 18:17:27,785 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block LowPassFilter external source successfully generated +[18:17:40] Processing block: SlewLimit... +[18:17:40] Exporting SlewLimit as XML... +[18:17:40] 2025-05-19 18:17:27,922 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SlewLimit exported successfully +[18:17:40] 2025-05-19 18:17:27,939 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SlewLimit exported successfully +[18:17:40] Exporting SlewLimit as SCL... +[18:17:40] 2025-05-19 18:17:28,034 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SlewLimit external source successfully generated +[18:17:40] Processing block: MSE Slope... +[18:17:40] Exporting MSE Slope as XML... +[18:17:40] 2025-05-19 18:17:28,184 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MSE Slope exported successfully +[18:17:40] 2025-05-19 18:17:28,187 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MSE Slope exported successfully +[18:17:40] Exporting MSE Slope as SCL... +[18:17:40] 2025-05-19 18:17:28,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block MSE Slope external source successfully generated +[18:17:40] Processing block: Statistical_Analisys... +[18:17:40] Exporting Statistical_Analisys as XML... +[18:17:40] 2025-05-19 18:17:29,405 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Statistical_Analisys exported successfully +[18:17:40] 2025-05-19 18:17:29,412 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Statistical_Analisys exported successfully +[18:17:40] Exporting Statistical_Analisys as SCL... +[18:17:40] 2025-05-19 18:17:29,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Statistical_Analisys external source successfully generated +[18:17:40] Processing block: Blender_Variables... +[18:17:40] Compiling block Blender_Variables... +[18:17:40] 2025-05-19 18:17:29,572 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block Blender_Variables. Result: +[18:17:45] 2025-05-19 18:17:45,705 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:17:50] 2025-05-19 18:17:45,707 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > Blender_Variables (DB971) > Interface > Syntax error: The specified value "nan" is invalid. +[18:17:50] 2025-05-19 18:17:45,709 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 3; warnings: 1) +[18:17:50] WARNING: Block Blender_Variables inconsistent after compile. Skipping. +[18:17:50] Processing block: BrixTracking_ProdSamples... +[18:17:50] Exporting BrixTracking_ProdSamples as XML... +[18:17:50] 2025-05-19 18:17:46,350 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_ProdSamples exported successfully +[18:17:50] 2025-05-19 18:17:46,354 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_ProdSamples exported successfully +[18:17:50] Exporting BrixTracking_ProdSamples as SCL... +[18:17:50] 2025-05-19 18:17:46,504 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BrixTracking_ProdSamples external source successfully generated +[18:17:50] Processing block: Procedure_Variables... +[18:17:50] Exporting Procedure_Variables as XML... +[18:17:50] 2025-05-19 18:17:46,692 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Procedure_Variables exported successfully +[18:17:50] 2025-05-19 18:17:46,698 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Procedure_Variables exported successfully +[18:17:50] Processing block: Blender_Constants... +[18:17:50] Exporting Blender_Constants as XML... +[18:17:50] 2025-05-19 18:17:46,846 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Constants exported successfully +[18:17:50] 2025-05-19 18:17:46,850 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Constants exported successfully +[18:17:50] Processing block: BrixTracking_SampleTime... +[18:17:50] Exporting BrixTracking_SampleTime as XML... +[18:17:50] 2025-05-19 18:17:47,156 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_SampleTime exported successfully +[18:17:50] 2025-05-19 18:17:47,159 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_SampleTime exported successfully +[18:17:50] Exporting BrixTracking_SampleTime as SCL... +[18:17:50] 2025-05-19 18:17:47,314 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BrixTracking_SampleTime external source successfully generated +[18:17:50] Processing block: Delay... +[18:17:50] Exporting Delay as XML... +[18:17:50] 2025-05-19 18:17:47,437 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Delay exported successfully +[18:17:50] 2025-05-19 18:17:47,451 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Delay exported successfully +[18:17:50] Exporting Delay as SCL... +[18:17:50] 2025-05-19 18:17:47,560 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Delay external source successfully generated +[18:17:50] Processing block: CO2Tracking_ProdSamples... +[18:17:50] Exporting CO2Tracking_ProdSamples as XML... +[18:17:50] 2025-05-19 18:17:47,762 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_ProdSamples exported successfully +[18:17:50] 2025-05-19 18:17:47,766 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_ProdSamples exported successfully +[18:17:50] Exporting CO2Tracking_ProdSamples as SCL... +[18:17:50] 2025-05-19 18:17:47,902 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2Tracking_ProdSamples external source successfully generated +[18:17:50] Processing block: CO2Tracking_SampleTime... +[18:17:50] Exporting CO2Tracking_SampleTime as XML... +[18:17:50] 2025-05-19 18:17:48,074 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_SampleTime exported successfully +[18:17:50] 2025-05-19 18:17:50,241 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_SampleTime exported successfully +[18:17:50] Exporting CO2Tracking_SampleTime as SCL... +[18:17:50] 2025-05-19 18:17:50,530 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2Tracking_SampleTime external source successfully generated +[18:17:50] Processing block: Interlocking_Variables... +[18:17:50] Exporting Interlocking_Variables as XML... +[18:17:50] 2025-05-19 18:17:50,854 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking_Variables exported successfully +[18:17:50] 2025-05-19 18:17:50,858 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking_Variables exported successfully +[18:17:50] Processing block: System_RunOut_Variables... +[18:17:50] Exporting System_RunOut_Variables as XML... +[18:17:51] 2025-05-19 18:17:51,029 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_RunOut_Variables exported successfully +[18:17:51] 2025-05-19 18:17:51,038 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_RunOut_Variables exported successfully +[18:17:51] Processing block: CIP_Program_Variables... +[18:17:51] Exporting CIP_Program_Variables as XML... +[18:17:51] 2025-05-19 18:17:51,662 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIP_Program_Variables exported successfully +[18:17:51] 2025-05-19 18:17:51,903 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIP_Program_Variables exported successfully +[18:17:51] Processing block: Filler_Head_Variables... +[18:17:51] Exporting Filler_Head_Variables as XML... +[18:17:52] 2025-05-19 18:17:52,085 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Filler_Head_Variables exported successfully +[18:17:52] 2025-05-19 18:17:52,088 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Filler_Head_Variables exported successfully +[18:17:52] Processing block: Filling_Time_Tranfer_DB... +[18:17:52] Exporting Filling_Time_Tranfer_DB as XML... +[18:17:52] 2025-05-19 18:17:52,211 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Filling_Time_Tranfer_DB exported successfully +[18:17:52] 2025-05-19 18:17:52,214 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Filling_Time_Tranfer_DB exported successfully +[18:17:52] Processing block: Blender_Variables_Pers... +[18:17:52] Exporting Blender_Variables_Pers as XML... +[18:17:52] 2025-05-19 18:17:52,428 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Variables_Pers exported successfully +[18:17:52] 2025-05-19 18:17:52,444 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Variables_Pers exported successfully +[18:17:52] Processing block: HMI_Alarms... +[18:17:52] Exporting HMI_Alarms as XML... +[18:17:52] 2025-05-19 18:17:52,699 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Alarms exported successfully +[18:17:52] 2025-05-19 18:17:52,703 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Alarms exported successfully +[18:17:52] Processing block: HMI_Local_CIP_Variables... +[18:17:52] Exporting HMI_Local_CIP_Variables as XML... +[18:17:52] 2025-05-19 18:17:52,940 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Local_CIP_Variables exported successfully +[18:17:52] 2025-05-19 18:17:52,944 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Local_CIP_Variables exported successfully +[18:17:52] Processing block: HMI_Service... +[18:17:52] Exporting HMI_Service as XML... +[18:17:53] 2025-05-19 18:17:53,591 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Service exported successfully +[18:17:53] 2025-05-19 18:17:53,595 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Service exported successfully +[18:17:53] Processing block: HMI_Variables_Cmd... +[18:17:53] Exporting HMI_Variables_Cmd as XML... +[18:17:53] 2025-05-19 18:17:53,747 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Variables_Cmd exported successfully +[18:17:53] 2025-05-19 18:17:53,752 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Variables_Cmd exported successfully +[18:17:53] Processing block: HMI_Variables_Status... +[18:17:53] Exporting HMI_Variables_Status as XML... +[18:17:53] 2025-05-19 18:17:53,932 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Variables_Status exported successfully +[18:17:53] 2025-05-19 18:17:53,936 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Variables_Status exported successfully +[18:17:53] Processing block: HMI_Device... +[18:17:53] Exporting HMI_Device as XML... +[18:17:54] 2025-05-19 18:17:54,149 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Device exported successfully +[18:17:54] 2025-05-19 18:17:54,154 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Device exported successfully +[18:17:54] Processing block: HMI_Instrument... +[18:17:54] Exporting HMI_Instrument as XML... +[18:17:54] 2025-05-19 18:17:54,398 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Instrument exported successfully +[18:17:54] 2025-05-19 18:17:54,402 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Instrument exported successfully +[18:17:54] Processing block: HMI_Digital... +[18:17:54] Exporting HMI_Digital as XML... +[18:17:54] 2025-05-19 18:17:54,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Digital exported successfully +[18:17:54] 2025-05-19 18:17:54,555 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Digital exported successfully +[18:17:54] Processing block: HMI_PID... +[18:17:54] Compiling block HMI_PID... +[18:17:54] 2025-05-19 18:17:54,567 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block HMI_PID. Result: +[18:17:57] 2025-05-19 18:17:57,940 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:17:57] 2025-05-19 18:17:57,942 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > HMI_PID (DB1013) > Interface > Syntax error: The specified value "nan" is invalid. +[18:17:57] 2025-05-19 18:17:57,943 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 2; warnings: 1) +[18:17:57] WARNING: Block HMI_PID inconsistent after compile. Skipping. +[18:17:57] Processing block: HMI_ICS... +[18:17:57] Exporting HMI_ICS as XML... +[18:17:58] 2025-05-19 18:17:58,089 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_ICS exported successfully +[18:17:58] 2025-05-19 18:17:58,104 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_ICS exported successfully +[18:17:58] Processing block: HMI_Device_AVS... +[18:17:58] Exporting HMI_Device_AVS as XML... +[18:17:58] 2025-05-19 18:17:58,212 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Device_AVS exported successfully +[18:17:58] 2025-05-19 18:17:58,227 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Device_AVS exported successfully +[18:17:58] Processing block: Profibus_Variables... +[18:17:58] Exporting Profibus_Variables as XML... +[18:17:58] 2025-05-19 18:17:58,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Profibus_Variables exported successfully +[18:17:58] 2025-05-19 18:17:58,321 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Profibus_Variables exported successfully +[18:17:58] Processing block: Input_CheckFlowMetersSta... +[18:17:58] Exporting Input_CheckFlowMetersSta as XML... +[18:17:58] 2025-05-19 18:17:58,528 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_CheckFlowMetersSta exported successfully +[18:17:58] 2025-05-19 18:17:58,542 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_CheckFlowMetersSta exported successfully +[18:17:58] Exporting Input_CheckFlowMetersSta as SCL... +[18:17:58] 2025-05-19 18:17:58,651 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Input_CheckFlowMetersSta external source successfully generated +[18:17:58] Processing block: Input_DigitalScanner... +[18:17:58] Exporting Input_DigitalScanner as XML... +[18:17:58] 2025-05-19 18:17:58,739 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_DigitalScanner exported successfully +[18:17:58] 2025-05-19 18:17:58,744 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_DigitalScanner exported successfully +[18:17:58] Processing block: ProductLiterInTank... +[18:17:58] Exporting ProductLiterInTank as XML... +[18:17:58] 2025-05-19 18:17:58,847 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductLiterInTank exported successfully +[18:17:58] 2025-05-19 18:17:58,852 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductLiterInTank exported successfully +[18:17:58] Exporting ProductLiterInTank as SCL... +[18:17:58] 2025-05-19 18:17:58,950 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProductLiterInTank external source successfully generated +[18:17:58] Processing block: ProductAvailable... +[18:17:59] Exporting ProductAvailable as XML... +[18:17:59] 2025-05-19 18:17:59,191 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductAvailable exported successfully +[18:17:59] 2025-05-19 18:17:59,222 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductAvailable exported successfully +[18:17:59] Exporting ProductAvailable as SCL... +[18:17:59] 2025-05-19 18:17:59,375 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProductAvailable external source successfully generated +[18:17:59] Processing block: T_Timer... +[18:17:59] Exporting T_Timer as XML... +[18:17:59] 2025-05-19 18:17:59,454 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: T_Timer exported successfully +[18:17:59] 2025-05-19 18:17:59,457 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - T_Timer exported successfully +[18:17:59] Processing block: SEL_I... +[18:17:59] Exporting SEL_I as XML... +[18:17:59] 2025-05-19 18:17:59,547 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SEL_I exported successfully +[18:17:59] 2025-05-19 18:17:59,550 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SEL_I exported successfully +[18:17:59] Processing block: _StepMove... +[18:17:59] Exporting _StepMove as XML... +[18:17:59] 2025-05-19 18:17:59,684 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: _StepMove exported successfully +[18:17:59] 2025-05-19 18:17:59,704 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - _StepMove exported successfully +[18:17:59] Processing block: ProductPipeDrain_Seq... +[18:17:59] Exporting ProductPipeDrain_Seq as XML... +[18:17:59] 2025-05-19 18:17:59,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeDrain_Seq exported successfully +[18:17:59] 2025-05-19 18:17:59,888 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeDrain_Seq exported successfully +[18:17:59] Processing block: ProductPipeDrain... +[18:17:59] Exporting ProductPipeDrain as XML... +[18:18:00] 2025-05-19 18:18:00,086 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeDrain exported successfully +[18:18:00] 2025-05-19 18:18:00,103 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeDrain exported successfully +[18:18:00] Processing block: ProductPipeRunOut_Seq... +[18:18:00] Exporting ProductPipeRunOut_Seq as XML... +[18:18:00] 2025-05-19 18:18:00,433 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeRunOut_Seq exported successfully +[18:18:00] 2025-05-19 18:18:00,519 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeRunOut_Seq exported successfully +[18:18:00] Processing block: SEL_R... +[18:18:00] Exporting SEL_R as XML... +[18:18:00] 2025-05-19 18:18:00,651 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SEL_R exported successfully +[18:18:00] 2025-05-19 18:18:00,669 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SEL_R exported successfully +[18:18:00] Processing block: ProductPipeRunOut... +[18:18:00] Exporting ProductPipeRunOut as XML... +[18:18:00] 2025-05-19 18:18:00,959 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProductPipeRunOut exported successfully +[18:18:00] 2025-05-19 18:18:00,975 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProductPipeRunOut exported successfully +[18:18:00] Processing block: LIMIT_I... +[18:18:00] Exporting LIMIT_I as XML... +[18:18:01] 2025-05-19 18:18:01,126 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LIMIT_I exported successfully +[18:18:01] 2025-05-19 18:18:01,131 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LIMIT_I exported successfully +[18:18:01] Processing block: System_Run_Out... +[18:18:01] Exporting System_Run_Out as XML... +[18:18:02] 2025-05-19 18:18:02,868 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_Run_Out exported successfully +[18:18:02] 2025-05-19 18:18:02,873 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_Run_Out exported successfully +[18:18:02] Processing block: System_Run_Out_Data... +[18:18:02] Exporting System_Run_Out_Data as XML... +[18:18:03] 2025-05-19 18:18:03,054 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: System_Run_Out_Data exported successfully +[18:18:03] 2025-05-19 18:18:03,071 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - System_Run_Out_Data exported successfully +[18:18:03] Processing block: Buffer_Tank_Flooding_DB... +[18:18:03] Exporting Buffer_Tank_Flooding_DB as XML... +[18:18:03] 2025-05-19 18:18:03,273 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Buffer_Tank_Flooding_DB exported successfully +[18:18:03] 2025-05-19 18:18:03,290 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Buffer_Tank_Flooding_DB exported successfully +[18:18:03] Processing block: CarboWaterLine_Seq... +[18:18:03] Exporting CarboWaterLine_Seq as XML... +[18:18:03] 2025-05-19 18:18:03,863 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CarboWaterLine_Seq exported successfully +[18:18:03] 2025-05-19 18:18:03,869 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CarboWaterLine_Seq exported successfully +[18:18:03] Processing block: CarboWaterLine... +[18:18:03] Exporting CarboWaterLine as XML... +[18:18:04] 2025-05-19 18:18:04,203 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CarboWaterLine exported successfully +[18:18:04] 2025-05-19 18:18:04,208 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CarboWaterLine exported successfully +[18:18:04] Processing block: Deaireator StartUp_Seq... +[18:18:04] Exporting Deaireator StartUp_Seq as XML... +[18:18:05] 2025-05-19 18:18:05,060 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Deaireator StartUp_Seq exported successfully +[18:18:05] 2025-05-19 18:18:05,074 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Deaireator StartUp_Seq exported successfully +[18:18:05] Processing block: Deaireator StartUp... +[18:18:05] Exporting Deaireator StartUp as XML... +[18:18:05] 2025-05-19 18:18:05,445 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Deaireator StartUp exported successfully +[18:18:05] 2025-05-19 18:18:05,449 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Deaireator StartUp exported successfully +[18:18:05] Processing block: ProdBrixRecovery_BrixCal... +[18:18:05] Exporting ProdBrixRecovery_BrixCal as XML... +[18:18:05] 2025-05-19 18:18:05,706 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdBrixRecovery_BrixCal exported successfully +[18:18:05] 2025-05-19 18:18:05,711 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdBrixRecovery_BrixCal exported successfully +[18:18:05] Exporting ProdBrixRecovery_BrixCal as SCL... +[18:18:05] 2025-05-19 18:18:05,941 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ProdBrixRecovery_BrixCal external source successfully generated +[18:18:05] Processing block: ProdBrixRecovery... +[18:18:05] Exporting ProdBrixRecovery as XML... +[18:18:06] 2025-05-19 18:18:06,171 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdBrixRecovery exported successfully +[18:18:06] 2025-05-19 18:18:06,174 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdBrixRecovery exported successfully +[18:18:06] Processing block: Prod Tank Drain_Seq... +[18:18:06] Exporting Prod Tank Drain_Seq as XML... +[18:18:06] 2025-05-19 18:18:06,680 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank Drain_Seq exported successfully +[18:18:06] 2025-05-19 18:18:06,684 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank Drain_Seq exported successfully +[18:18:06] Processing block: Prod Tank Drain... +[18:18:06] Exporting Prod Tank Drain as XML... +[18:18:07] 2025-05-19 18:18:07,084 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank Drain exported successfully +[18:18:07] 2025-05-19 18:18:07,100 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank Drain exported successfully +[18:18:07] Processing block: Prod Tank RunOut_Seq... +[18:18:07] Exporting Prod Tank RunOut_Seq as XML... +[18:18:07] 2025-05-19 18:18:07,393 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank RunOut_Seq exported successfully +[18:18:07] 2025-05-19 18:18:07,396 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank RunOut_Seq exported successfully +[18:18:07] Processing block: Prod Tank RunOut... +[18:18:07] Exporting Prod Tank RunOut as XML... +[18:18:07] 2025-05-19 18:18:07,732 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Prod Tank RunOut exported successfully +[18:18:07] 2025-05-19 18:18:07,748 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Prod Tank RunOut exported successfully +[18:18:07] Processing block: mPDS_SYR_PA_Data... +[18:18:07] Exporting mPDS_SYR_PA_Data as XML... +[18:18:07] 2025-05-19 18:18:07,856 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_SYR_PA_Data exported successfully +[18:18:07] 2025-05-19 18:18:07,872 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_SYR_PA_Data exported successfully +[18:18:07] Processing block: SyrBrix_SyrupCorrPerc... +[18:18:07] Exporting SyrBrix_SyrupCorrPerc as XML... +[18:18:08] 2025-05-19 18:18:08,012 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrBrix_SyrupCorrPerc exported successfully +[18:18:08] 2025-05-19 18:18:08,016 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrBrix_SyrupCorrPerc exported successfully +[18:18:08] Exporting SyrBrix_SyrupCorrPerc as SCL... +[18:18:08] 2025-05-19 18:18:08,195 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SyrBrix_SyrupCorrPerc external source successfully generated +[18:18:08] Processing block: SyrBrix Autocorrection... +[18:18:08] Exporting SyrBrix Autocorrection as XML... +[18:18:08] 2025-05-19 18:18:08,582 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrBrix Autocorrection exported successfully +[18:18:08] 2025-05-19 18:18:08,584 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrBrix Autocorrection exported successfully +[18:18:08] Processing block: Syrup Line MFM Prep_Seq... +[18:18:08] Exporting Syrup Line MFM Prep_Seq as XML... +[18:18:08] 2025-05-19 18:18:08,908 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup Line MFM Prep_Seq exported successfully +[18:18:08] 2025-05-19 18:18:08,911 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup Line MFM Prep_Seq exported successfully +[18:18:08] Processing block: Syrup Line MFM Prep... +[18:18:08] Exporting Syrup Line MFM Prep as XML... +[18:18:09] 2025-05-19 18:18:09,469 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup Line MFM Prep exported successfully +[18:18:09] 2025-05-19 18:18:09,473 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup Line MFM Prep exported successfully +[18:18:09] Processing block: Syrup MFM StartUp_Seq... +[18:18:09] Exporting Syrup MFM StartUp_Seq as XML... +[18:18:09] 2025-05-19 18:18:09,685 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup MFM StartUp_Seq exported successfully +[18:18:09] 2025-05-19 18:18:09,688 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup MFM StartUp_Seq exported successfully +[18:18:09] Processing block: Syrup MFM StartUp... +[18:18:09] Exporting Syrup MFM StartUp as XML... +[18:18:09] 2025-05-19 18:18:09,871 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup MFM StartUp exported successfully +[18:18:09] 2025-05-19 18:18:09,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup MFM StartUp exported successfully +[18:18:09] Processing block: Syrup RunOut... +[18:18:09] Exporting Syrup RunOut as XML... +[18:18:10] 2025-05-19 18:18:10,191 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup RunOut exported successfully +[18:18:10] 2025-05-19 18:18:10,197 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup RunOut exported successfully +[18:18:10] Processing block: mPPM303StartUpRamp... +[18:18:10] Exporting mPPM303StartUpRamp as XML... +[18:18:10] 2025-05-19 18:18:10,361 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPPM303StartUpRamp exported successfully +[18:18:10] 2025-05-19 18:18:10,365 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPPM303StartUpRamp exported successfully +[18:18:10] Processing block: BlendFill StartUp_Seq... +[18:18:10] Exporting BlendFill StartUp_Seq as XML... +[18:18:11] 2025-05-19 18:18:11,152 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlendFill StartUp_Seq exported successfully +[18:18:11] 2025-05-19 18:18:11,156 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlendFill StartUp_Seq exported successfully +[18:18:11] Processing block: BlendFill StartUp... +[18:18:11] Exporting BlendFill StartUp as XML... +[18:18:11] 2025-05-19 18:18:11,665 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlendFill StartUp exported successfully +[18:18:11] 2025-05-19 18:18:11,680 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlendFill StartUp exported successfully +[18:18:11] Processing block: SyrupLineRinse... +[18:18:11] Exporting SyrupLineRinse as XML... +[18:18:12] 2025-05-19 18:18:12,026 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SyrupLineRinse exported successfully +[18:18:12] 2025-05-19 18:18:12,030 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SyrupLineRinse exported successfully +[18:18:12] Processing block: QCO Timing DB... +[18:18:12] Exporting QCO Timing DB as XML... +[18:18:12] 2025-05-19 18:18:12,257 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: QCO Timing DB exported successfully +[18:18:12] 2025-05-19 18:18:12,261 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - QCO Timing DB exported successfully +[18:18:12] Processing block: QCO Monitor... +[18:18:12] Exporting QCO Monitor as XML... +[18:18:12] 2025-05-19 18:18:12,613 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: QCO Monitor exported successfully +[18:18:12] 2025-05-19 18:18:12,628 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - QCO Monitor exported successfully +[18:18:12] Processing block: Blender_ProcedureCall... +[18:18:12] Exporting Blender_ProcedureCall as XML... +[18:18:12] 2025-05-19 18:18:12,797 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_ProcedureCall exported successfully +[18:18:12] 2025-05-19 18:18:12,800 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_ProcedureCall exported successfully +[18:18:12] Processing block: Blender_Procedure Data... +[18:18:12] Exporting Blender_Procedure Data as XML... +[18:18:12] 2025-05-19 18:18:12,904 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Blender_Procedure Data exported successfully +[18:18:12] 2025-05-19 18:18:12,907 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Blender_Procedure Data exported successfully +[18:18:12] Processing block: Input_DigitalCtrl... +[18:18:12] Exporting Input_DigitalCtrl as XML... +[18:18:13] 2025-05-19 18:18:13,092 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_DigitalCtrl exported successfully +[18:18:13] 2025-05-19 18:18:13,096 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_DigitalCtrl exported successfully +[18:18:13] Processing block: ReadAnalogIn_Fault_DB... +[18:18:13] Exporting ReadAnalogIn_Fault_DB as XML... +[18:18:13] 2025-05-19 18:18:13,233 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ReadAnalogIn_Fault_DB exported successfully +[18:18:13] 2025-05-19 18:18:13,248 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ReadAnalogIn_Fault_DB exported successfully +[18:18:13] Processing block: ExtractPointerData... +[18:18:13] Exporting ExtractPointerData as XML... +[18:18:13] 2025-05-19 18:18:13,495 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ExtractPointerData exported successfully +[18:18:13] 2025-05-19 18:18:13,498 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ExtractPointerData exported successfully +[18:18:13] Exporting ExtractPointerData as SCL... +[18:18:13] 2025-05-19 18:18:13,619 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block ExtractPointerData external source successfully generated +[18:18:13] Processing block: ReadAnalogIn... +[18:18:13] Exporting ReadAnalogIn as XML... +[18:18:13] 2025-05-19 18:18:13,831 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ReadAnalogIn exported successfully +[18:18:13] 2025-05-19 18:18:13,833 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ReadAnalogIn exported successfully +[18:18:13] Processing block: Input... +[18:18:14] Exporting Input as XML... +[18:18:18] 2025-05-19 18:18:18,848 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input exported successfully +[18:18:18] 2025-05-19 18:18:18,854 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input exported successfully +[18:18:18] Processing block: SpeedAdjust... +[18:18:18] Exporting SpeedAdjust as XML... +[18:18:19] 2025-05-19 18:18:19,045 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SpeedAdjust exported successfully +[18:18:19] 2025-05-19 18:18:19,049 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SpeedAdjust exported successfully +[18:18:19] Exporting SpeedAdjust as SCL... +[18:18:19] 2025-05-19 18:18:19,195 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block SpeedAdjust external source successfully generated +[18:18:19] Processing block: BlenderRun_MeasFilSpeed... +[18:18:19] Exporting BlenderRun_MeasFilSpeed as XML... +[18:18:19] 2025-05-19 18:18:19,710 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_MeasFilSpeed exported successfully +[18:18:19] 2025-05-19 18:18:19,732 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_MeasFilSpeed exported successfully +[18:18:19] Processing block: SyrupDensity... +[18:18:19] Compiling block SyrupDensity... +[18:18:19] 2025-05-19 18:18:19,745 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block SyrupDensity. Result: +[18:18:30] 2025-05-19 18:18:30,334 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:30] 2025-05-19 18:18:30,336 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > SyrupDensity (FC1907) > 1 > The function does not return a value. +[18:18:30] 2025-05-19 18:18:30,337 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) +[18:18:30] WARNING: Block SyrupDensity inconsistent after compile. Skipping. +[18:18:30] Processing block: DeltaP... +[18:18:30] Compiling block DeltaP... +[18:18:30] 2025-05-19 18:18:30,350 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block DeltaP. Result: +[18:18:33] 2025-05-19 18:18:33,763 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:33] 2025-05-19 18:18:33,764 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > DeltaP (FC1921) > 1 > The function does not return a value. +[18:18:33] 2025-05-19 18:18:33,765 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) +[18:18:33] WARNING: Block DeltaP inconsistent after compile. Skipping. +[18:18:33] Processing block: FW_DRand... +[18:18:33] Exporting FW_DRand as XML... +[18:18:33] 2025-05-19 18:18:33,897 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FW_DRand exported successfully +[18:18:33] 2025-05-19 18:18:33,901 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FW_DRand exported successfully +[18:18:33] Processing block: CO2InjPressure... +[18:18:33] Exporting CO2InjPressure as XML... +[18:18:34] 2025-05-19 18:18:34,007 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2InjPressure exported successfully +[18:18:34] 2025-05-19 18:18:34,011 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2InjPressure exported successfully +[18:18:34] Exporting CO2InjPressure as SCL... +[18:18:34] 2025-05-19 18:18:34,108 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CO2InjPressure external source successfully generated +[18:18:34] Processing block: ValveFlow... +[18:18:34] Compiling block ValveFlow... +[18:18:34] 2025-05-19 18:18:34,117 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block ValveFlow. Result: +[18:18:35] 2025-05-19 18:18:35,685 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:35] 2025-05-19 18:18:35,687 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > ValveFlow (FC2043) > 1 > The function does not return a value. +[18:18:35] 2025-05-19 18:18:35,687 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) +[18:18:35] WARNING: Block ValveFlow inconsistent after compile. Skipping. +[18:18:35] Processing block: PID_Variables... +[18:18:35] Exporting PID_Variables as XML... +[18:18:35] 2025-05-19 18:18:35,789 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Variables exported successfully +[18:18:35] 2025-05-19 18:18:35,791 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Variables exported successfully +[18:18:35] Processing block: MFMAnalogValues... +[18:18:35] Exporting MFMAnalogValues as XML... +[18:18:36] 2025-05-19 18:18:36,214 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MFMAnalogValues exported successfully +[18:18:36] 2025-05-19 18:18:36,221 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MFMAnalogValues exported successfully +[18:18:36] Exporting MFMAnalogValues as SCL... +[18:18:36] 2025-05-19 18:18:36,520 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block MFMAnalogValues external source successfully generated +[18:18:36] Processing block: Signal Gen... +[18:18:36] Exporting Signal Gen as XML... +[18:18:36] 2025-05-19 18:18:36,719 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Signal Gen exported successfully +[18:18:36] 2025-05-19 18:18:36,722 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Signal Gen exported successfully +[18:18:36] Exporting Signal Gen as SCL... +[18:18:36] 2025-05-19 18:18:36,828 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Signal Gen external source successfully generated +[18:18:36] Processing block: CVQ_1p7_8_Perc... +[18:18:36] Exporting CVQ_1p7_8_Perc as XML... +[18:18:36] 2025-05-19 18:18:36,937 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CVQ_1p7_8_Perc exported successfully +[18:18:36] 2025-05-19 18:18:36,952 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CVQ_1p7_8_Perc exported successfully +[18:18:36] Exporting CVQ_1p7_8_Perc as SCL... +[18:18:37] 2025-05-19 18:18:37,044 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block CVQ_1p7_8_Perc external source successfully generated +[18:18:37] Processing block: FeedForward... +[18:18:37] Exporting FeedForward as XML... +[18:18:37] 2025-05-19 18:18:37,187 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FeedForward exported successfully +[18:18:37] 2025-05-19 18:18:37,202 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FeedForward exported successfully +[18:18:37] Exporting FeedForward as SCL... +[18:18:37] 2025-05-19 18:18:37,291 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FeedForward external source successfully generated +[18:18:37] Processing block: FrictionLoss... +[18:18:37] Exporting FrictionLoss as XML... +[18:18:37] 2025-05-19 18:18:37,372 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FrictionLoss exported successfully +[18:18:37] 2025-05-19 18:18:37,376 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FrictionLoss exported successfully +[18:18:37] Exporting FrictionLoss as SCL... +[18:18:37] 2025-05-19 18:18:37,465 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FrictionLoss external source successfully generated +[18:18:37] Processing block: BlenderPID_PIDFFCalc... +[18:18:37] Exporting BlenderPID_PIDFFCalc as XML... +[18:18:37] 2025-05-19 18:18:37,825 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDFFCalc exported successfully +[18:18:37] 2025-05-19 18:18:37,828 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDFFCalc exported successfully +[18:18:37] Exporting BlenderPID_PIDFFCalc as SCL... +[18:18:38] 2025-05-19 18:18:38,042 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDFFCalc external source successfully generated +[18:18:38] Processing block: BlenderPID_BlendingFault... +[18:18:38] Exporting BlenderPID_BlendingFault as XML... +[18:18:38] 2025-05-19 18:18:38,354 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_BlendingFault exported successfully +[18:18:38] 2025-05-19 18:18:38,356 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_BlendingFault exported successfully +[18:18:38] Exporting BlenderPID_BlendingFault as SCL... +[18:18:38] 2025-05-19 18:18:38,461 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_BlendingFault external source successfully generated +[18:18:38] Processing block: BlenderPIDCtrl_Monitor... +[18:18:38] Exporting BlenderPIDCtrl_Monitor as XML... +[18:18:38] 2025-05-19 18:18:38,680 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_Monitor exported successfully +[18:18:38] 2025-05-19 18:18:38,691 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_Monitor exported successfully +[18:18:38] Processing block: ONS_R... +[18:18:38] Exporting ONS_R as XML... +[18:18:38] 2025-05-19 18:18:38,770 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ONS_R exported successfully +[18:18:38] 2025-05-19 18:18:38,774 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ONS_R exported successfully +[18:18:38] Processing block: BlenderPIDCtrl_SaveInteg... +[18:18:38] Exporting BlenderPIDCtrl_SaveInteg as XML... +[18:18:39] 2025-05-19 18:18:39,065 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_SaveInteg exported successfully +[18:18:39] 2025-05-19 18:18:39,068 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_SaveInteg exported successfully +[18:18:39] Exporting BlenderPIDCtrl_SaveInteg as SCL... +[18:18:39] 2025-05-19 18:18:39,237 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPIDCtrl_SaveInteg external source successfully generated +[18:18:39] Processing block: PID_RVM302... +[18:18:39] Exporting PID_RVM302 as XML... +[18:18:39] 2025-05-19 18:18:39,413 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM302 exported successfully +[18:18:39] 2025-05-19 18:18:39,417 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM302 exported successfully +[18:18:39] Processing block: PID_RVM302_Data... +[18:18:39] Exporting PID_RVM302_Data as XML... +[18:18:39] 2025-05-19 18:18:39,504 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM302_Data exported successfully +[18:18:39] 2025-05-19 18:18:39,508 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM302_Data exported successfully +[18:18:39] Processing block: PID_RMM301... +[18:18:39] Exporting PID_RMM301 as XML... +[18:18:39] 2025-05-19 18:18:39,772 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM301 exported successfully +[18:18:39] 2025-05-19 18:18:39,776 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM301 exported successfully +[18:18:39] Processing block: PID_RMM301_Data... +[18:18:39] Exporting PID_RMM301_Data as XML... +[18:18:39] 2025-05-19 18:18:39,881 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM301_Data exported successfully +[18:18:39] 2025-05-19 18:18:39,885 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM301_Data exported successfully +[18:18:39] Processing block: PID_RMP302... +[18:18:39] Exporting PID_RMP302 as XML... +[18:18:40] 2025-05-19 18:18:40,051 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMP302 exported successfully +[18:18:40] 2025-05-19 18:18:40,069 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMP302 exported successfully +[18:18:40] Processing block: PID_RMP302_Data... +[18:18:40] Exporting PID_RMP302_Data as XML... +[18:18:40] 2025-05-19 18:18:40,158 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMP302_Data exported successfully +[18:18:40] 2025-05-19 18:18:40,162 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMP302_Data exported successfully +[18:18:40] Processing block: PID_RMM303... +[18:18:40] Exporting PID_RMM303 as XML... +[18:18:40] 2025-05-19 18:18:40,362 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM303 exported successfully +[18:18:40] 2025-05-19 18:18:40,366 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM303 exported successfully +[18:18:40] Processing block: PID_RMM303_Data... +[18:18:40] Exporting PID_RMM303_Data as XML... +[18:18:40] 2025-05-19 18:18:40,439 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM303_Data exported successfully +[18:18:40] 2025-05-19 18:18:40,443 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM303_Data exported successfully +[18:18:40] Processing block: PID_RVM301... +[18:18:40] Exporting PID_RVM301 as XML... +[18:18:40] 2025-05-19 18:18:40,639 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM301 exported successfully +[18:18:40] 2025-05-19 18:18:40,644 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM301 exported successfully +[18:18:40] Processing block: PID_RVM301_Data... +[18:18:40] Exporting PID_RVM301_Data as XML... +[18:18:40] 2025-05-19 18:18:40,748 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM301_Data exported successfully +[18:18:40] 2025-05-19 18:18:40,751 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM301_Data exported successfully +[18:18:40] Processing block: LIMIT_R... +[18:18:40] Exporting LIMIT_R as XML... +[18:18:40] 2025-05-19 18:18:40,876 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: LIMIT_R exported successfully +[18:18:40] 2025-05-19 18:18:40,883 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - LIMIT_R exported successfully +[18:18:40] Processing block: FillerGasBlowOff... +[18:18:40] Exporting FillerGasBlowOff as XML... +[18:18:41] 2025-05-19 18:18:41,062 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FillerGasBlowOff exported successfully +[18:18:41] 2025-05-19 18:18:41,075 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FillerGasBlowOff exported successfully +[18:18:41] Exporting FillerGasBlowOff as SCL... +[18:18:41] 2025-05-19 18:18:41,200 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block FillerGasBlowOff external source successfully generated +[18:18:41] Processing block: PID_RVM304... +[18:18:41] Exporting PID_RVM304 as XML... +[18:18:41] 2025-05-19 18:18:41,326 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM304 exported successfully +[18:18:41] 2025-05-19 18:18:41,329 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM304 exported successfully +[18:18:41] Processing block: PID_RVM304_Data... +[18:18:41] Exporting PID_RVM304_Data as XML... +[18:18:41] 2025-05-19 18:18:41,405 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM304_Data exported successfully +[18:18:41] 2025-05-19 18:18:41,408 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM304_Data exported successfully +[18:18:41] Processing block: CIP CVQ... +[18:18:41] Compiling block CIP CVQ... +[18:18:41] 2025-05-19 18:18:41,416 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block CIP CVQ. Result: +[18:18:43] 2025-05-19 18:18:43,277 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:43] 2025-05-19 18:18:43,279 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CIP CVQ (FC1905) > 4 > Invalid assignment. +[18:18:43] 2025-05-19 18:18:43,280 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CIP CVQ (FC1905) > 6 > Invalid assignment. +[18:18:43] 2025-05-19 18:18:43,281 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CIP CVQ (FC1905) > 8 > Invalid assignment. +[18:18:43] 2025-05-19 18:18:43,282 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CIP CVQ (FC1905) > 10 > Invalid assignment. +[18:18:43] 2025-05-19 18:18:43,283 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 4; warnings: 1) +[18:18:43] WARNING: Block CIP CVQ inconsistent after compile. Skipping. +[18:18:43] Processing block: PID_RVM319... +[18:18:43] Exporting PID_RVM319 as XML... +[18:18:43] 2025-05-19 18:18:43,459 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM319 exported successfully +[18:18:43] 2025-05-19 18:18:43,473 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM319 exported successfully +[18:18:43] Processing block: PID_RVM319_Data... +[18:18:43] Exporting PID_RVM319_Data as XML... +[18:18:43] 2025-05-19 18:18:43,540 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVM319_Data exported successfully +[18:18:43] 2025-05-19 18:18:43,543 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVM319_Data exported successfully +[18:18:43] Processing block: PID_RVS318... +[18:18:43] Exporting PID_RVS318 as XML... +[18:18:43] 2025-05-19 18:18:43,704 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVS318 exported successfully +[18:18:43] 2025-05-19 18:18:43,706 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVS318 exported successfully +[18:18:43] Processing block: PID_RVS318_Data... +[18:18:43] Exporting PID_RVS318_Data as XML... +[18:18:43] 2025-05-19 18:18:43,780 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVS318_Data exported successfully +[18:18:43] 2025-05-19 18:18:43,784 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVS318_Data exported successfully +[18:18:43] Processing block: EHS30X_16_Ctrl... +[18:18:43] Compiling block EHS30X_16_Ctrl... +[18:18:43] 2025-05-19 18:18:43,796 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block EHS30X_16_Ctrl. Result: +[18:18:45] 2025-05-19 18:18:45,868 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:45] 2025-05-19 18:18:45,869 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > EHS30X_16_Ctrl (FC1790) > 27 > Data type 'DInt' cannot be converted implicitly into data type 'Real'. +[18:18:45] 2025-05-19 18:18:45,870 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > EHS30X_16_Ctrl (FC1790) > 32 > Data type 'DInt' cannot be converted implicitly into data type 'Real'. +[18:18:45] 2025-05-19 18:18:45,871 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > EHS30X_16_Ctrl (FC1790) > 36 > Data type 'DInt' cannot be converted implicitly into data type 'Real'. +[18:18:45] 2025-05-19 18:18:45,873 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 3; warnings: 1) +[18:18:45] WARNING: Block EHS30X_16_Ctrl inconsistent after compile. Skipping. +[18:18:45] Processing block: PID_EHS30X... +[18:18:45] Exporting PID_EHS30X as XML... +[18:18:46] 2025-05-19 18:18:46,022 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_EHS30X exported successfully +[18:18:46] 2025-05-19 18:18:46,025 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_EHS30X exported successfully +[18:18:46] Processing block: PID_EHS30X_Data... +[18:18:46] Exporting PID_EHS30X_Data as XML... +[18:18:46] 2025-05-19 18:18:46,098 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_EHS30X_Data exported successfully +[18:18:46] 2025-05-19 18:18:46,102 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_EHS30X_Data exported successfully +[18:18:46] Processing block: PID_RVP303... +[18:18:46] Exporting PID_RVP303 as XML... +[18:18:46] 2025-05-19 18:18:46,253 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVP303 exported successfully +[18:18:46] 2025-05-19 18:18:46,255 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVP303 exported successfully +[18:18:46] Processing block: PID_RVP303_Data... +[18:18:46] Exporting PID_RVP303_Data as XML... +[18:18:46] 2025-05-19 18:18:46,346 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVP303_Data exported successfully +[18:18:46] 2025-05-19 18:18:46,349 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVP303_Data exported successfully +[18:18:46] Processing block: PID_Filling_Head_Calc... +[18:18:46] Exporting PID_Filling_Head_Calc as XML... +[18:18:46] 2025-05-19 18:18:46,535 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head_Calc exported successfully +[18:18:46] 2025-05-19 18:18:46,539 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head_Calc exported successfully +[18:18:46] Exporting PID_Filling_Head_Calc as SCL... +[18:18:46] 2025-05-19 18:18:46,673 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block PID_Filling_Head_Calc external source successfully generated +[18:18:46] Processing block: Filling_Time_Tranfer_Par... +[18:18:46] Exporting Filling_Time_Tranfer_Par as XML... +[18:18:46] 2025-05-19 18:18:46,795 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Filling_Time_Tranfer_Par exported successfully +[18:18:46] 2025-05-19 18:18:46,800 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Filling_Time_Tranfer_Par exported successfully +[18:18:46] Processing block: TankLevelToHeight... +[18:18:46] Compiling block TankLevelToHeight... +[18:18:46] 2025-05-19 18:18:46,812 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block TankLevelToHeight. Result: +[18:18:48] 2025-05-19 18:18:48,541 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:48] 2025-05-19 18:18:48,542 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > TankLevelToHeight (FC1839) > 1 > The function does not return a value. +[18:18:48] 2025-05-19 18:18:48,543 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) +[18:18:48] WARNING: Block TankLevelToHeight inconsistent after compile. Skipping. +[18:18:48] Processing block: FillingTime... +[18:18:48] Compiling block FillingTime... +[18:18:48] 2025-05-19 18:18:48,550 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block FillingTime. Result: +[18:18:49] 2025-05-19 18:18:49,864 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:49] 2025-05-19 18:18:49,865 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > FillingTime (FC1840) > 1 > The function does not return a value. +[18:18:49] 2025-05-19 18:18:49,866 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) +[18:18:49] WARNING: Block FillingTime inconsistent after compile. Skipping. +[18:18:49] Processing block: Freq_To_mmH2O... +[18:18:49] Exporting Freq_To_mmH2O as XML... +[18:18:49] 2025-05-19 18:18:49,971 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Freq_To_mmH2O exported successfully +[18:18:49] 2025-05-19 18:18:49,974 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Freq_To_mmH2O exported successfully +[18:18:49] Exporting Freq_To_mmH2O as SCL... +[18:18:50] 2025-05-19 18:18:50,038 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Freq_To_mmH2O external source successfully generated +[18:18:50] Processing block: Cetrifugal_Head... +[18:18:50] Exporting Cetrifugal_Head as XML... +[18:18:50] 2025-05-19 18:18:50,109 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Cetrifugal_Head exported successfully +[18:18:50] 2025-05-19 18:18:50,113 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Cetrifugal_Head exported successfully +[18:18:50] Exporting Cetrifugal_Head as SCL... +[18:18:50] 2025-05-19 18:18:50,176 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Cetrifugal_Head external source successfully generated +[18:18:50] Processing block: Flow_To_Press_Loss... +[18:18:50] Exporting Flow_To_Press_Loss as XML... +[18:18:50] 2025-05-19 18:18:50,269 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Flow_To_Press_Loss exported successfully +[18:18:50] 2025-05-19 18:18:50,272 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Flow_To_Press_Loss exported successfully +[18:18:50] Exporting Flow_To_Press_Loss as SCL... +[18:18:50] 2025-05-19 18:18:50,347 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block Flow_To_Press_Loss external source successfully generated +[18:18:50] Processing block: mmH2O_TO_Freq... +[18:18:50] Exporting mmH2O_TO_Freq as XML... +[18:18:50] 2025-05-19 18:18:50,438 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mmH2O_TO_Freq exported successfully +[18:18:50] 2025-05-19 18:18:50,443 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mmH2O_TO_Freq exported successfully +[18:18:50] Exporting mmH2O_TO_Freq as SCL... +[18:18:50] 2025-05-19 18:18:50,529 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block mmH2O_TO_Freq external source successfully generated +[18:18:50] Processing block: PID_Filling_Head... +[18:18:50] Exporting PID_Filling_Head as XML... +[18:18:51] 2025-05-19 18:18:51,335 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head exported successfully +[18:18:51] 2025-05-19 18:18:51,339 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head exported successfully +[18:18:51] Processing block: PID_Filling_Head_Data... +[18:18:51] Exporting PID_Filling_Head_Data as XML... +[18:18:51] 2025-05-19 18:18:51,414 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_Filling_Head_Data exported successfully +[18:18:51] 2025-05-19 18:18:51,417 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_Filling_Head_Data exported successfully +[18:18:51] Processing block: PID_RVN302... +[18:18:51] Exporting PID_RVN302 as XML... +[18:18:51] 2025-05-19 18:18:51,613 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVN302 exported successfully +[18:18:51] 2025-05-19 18:18:51,617 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVN302 exported successfully +[18:18:51] Processing block: PID_RVN302_Data... +[18:18:51] Exporting PID_RVN302_Data as XML... +[18:18:51] 2025-05-19 18:18:51,691 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RVN302_Data exported successfully +[18:18:51] 2025-05-19 18:18:51,695 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RVN302_Data exported successfully +[18:18:51] Processing block: PID_RMM304... +[18:18:51] Exporting PID_RMM304 as XML... +[18:18:51] 2025-05-19 18:18:51,847 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM304 exported successfully +[18:18:51] 2025-05-19 18:18:51,850 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM304 exported successfully +[18:18:51] Processing block: PID_RMM304_Data... +[18:18:51] Exporting PID_RMM304_Data as XML... +[18:18:51] 2025-05-19 18:18:51,924 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_RMM304_Data exported successfully +[18:18:51] 2025-05-19 18:18:51,928 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_RMM304_Data exported successfully +[18:18:51] Processing block: PID_AVN30x... +[18:18:51] Exporting PID_AVN30x as XML... +[18:18:52] 2025-05-19 18:18:52,216 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_AVN30x exported successfully +[18:18:52] 2025-05-19 18:18:52,219 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_AVN30x exported successfully +[18:18:52] Processing block: PID_AVN30x_Data... +[18:18:52] Exporting PID_AVN30x_Data as XML... +[18:18:52] 2025-05-19 18:18:52,303 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID_AVN30x_Data exported successfully +[18:18:52] 2025-05-19 18:18:52,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID_AVN30x_Data exported successfully +[18:18:52] Processing block: BlenderPID_FlowMeterErro... +[18:18:52] Exporting BlenderPID_FlowMeterErro as XML... +[18:18:52] 2025-05-19 18:18:52,430 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_FlowMeterErro exported successfully +[18:18:52] 2025-05-19 18:18:52,434 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_FlowMeterErro exported successfully +[18:18:52] Exporting BlenderPID_FlowMeterErro as SCL... +[18:18:52] 2025-05-19 18:18:52,543 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_FlowMeterErro external source successfully generated +[18:18:52] Processing block: BlenderPIDCtrl_PresRelea... +[18:18:52] Exporting BlenderPIDCtrl_PresRelea as XML... +[18:18:52] 2025-05-19 18:18:52,637 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_PresRelea exported successfully +[18:18:52] 2025-05-19 18:18:52,641 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_PresRelea exported successfully +[18:18:52] Exporting BlenderPIDCtrl_PresRelea as SCL... +[18:18:52] 2025-05-19 18:18:52,743 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPIDCtrl_PresRelea external source successfully generated +[18:18:52] Processing block: BlenderPIDCtrl_SaveValve... +[18:18:52] Compiling block BlenderPIDCtrl_SaveValve... +[18:18:52] 2025-05-19 18:18:52,753 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block BlenderPIDCtrl_SaveValve. Result: +[18:18:54] 2025-05-19 18:18:54,780 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:54] 2025-05-19 18:18:54,781 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > BlenderPIDCtrl_SaveValve (FC1918) > 7 > Data type 'Time' cannot be converted implicitly into data type 'S5Time'. +[18:18:54] 2025-05-19 18:18:54,782 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) +[18:18:54] WARNING: Block BlenderPIDCtrl_SaveValve inconsistent after compile. Skipping. +[18:18:54] Processing block: WritePeripheral... +[18:18:54] Exporting WritePeripheral as XML... +[18:18:54] 2025-05-19 18:18:54,885 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: WritePeripheral exported successfully +[18:18:54] 2025-05-19 18:18:54,887 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - WritePeripheral exported successfully +[18:18:54] Processing block: PROC Pump Pressure_to_Hz... +[18:18:54] Compiling block PROC Pump Pressure_to_Hz... +[18:18:54] 2025-05-19 18:18:54,897 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block PROC Pump Pressure_to_Hz. Result: +[18:18:56] 2025-05-19 18:18:56,311 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:56] 2025-05-19 18:18:56,312 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > PROC Pump Pressure_to_Hz (FC1988) > 13 > Invalid assignment. +[18:18:56] 2025-05-19 18:18:56,313 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) +[18:18:56] WARNING: Block PROC Pump Pressure_to_Hz inconsistent after compile. Skipping. +[18:18:56] Processing block: PROC Pump Hz_to_Pressure... +[18:18:56] Compiling block PROC Pump Hz_to_Pressure... +[18:18:56] 2025-05-19 18:18:56,347 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block PROC Pump Hz_to_Pressure. Result: +[18:18:57] 2025-05-19 18:18:57,875 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:57] 2025-05-19 18:18:57,878 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > PROC Pump Hz_to_Pressure (FC1989) > 12 > Invalid assignment. +[18:18:57] 2025-05-19 18:18:57,879 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > PROC Pump Hz_to_Pressure (FC1989) > 14 > Invalid assignment. +[18:18:57] 2025-05-19 18:18:57,880 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 2; warnings: 1) +[18:18:57] WARNING: Block PROC Pump Hz_to_Pressure inconsistent after compile. Skipping. +[18:18:57] Processing block: BlenderPIDCtrl_WriteAnOu... +[18:18:57] Exporting BlenderPIDCtrl_WriteAnOu as XML... +[18:18:58] 2025-05-19 18:18:58,297 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl_WriteAnOu exported successfully +[18:18:58] 2025-05-19 18:18:58,299 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl_WriteAnOu exported successfully +[18:18:58] Processing block: BlenderPIDCtrl__Loop... +[18:18:58] Exporting BlenderPIDCtrl__Loop as XML... +[18:18:58] 2025-05-19 18:18:58,469 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPIDCtrl__Loop exported successfully +[18:18:58] 2025-05-19 18:18:58,473 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPIDCtrl__Loop exported successfully +[18:18:58] Processing block: CO2EqPress... +[18:18:58] Compiling block CO2EqPress... +[18:18:58] 2025-05-19 18:18:58,487 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block CO2EqPress. Result: +[18:18:59] 2025-05-19 18:18:59,904 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:18:59] 2025-05-19 18:18:59,906 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CO2EqPress (FC1908) > 1 > The function does not return a value. +[18:18:59] 2025-05-19 18:18:59,907 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 1) +[18:18:59] WARNING: Block CO2EqPress inconsistent after compile. Skipping. +[18:18:59] Processing block: DeairCO2TempComp... +[18:18:59] Exporting DeairCO2TempComp as XML... +[18:19:00] 2025-05-19 18:19:00,009 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DeairCO2TempComp exported successfully +[18:19:00] 2025-05-19 18:19:00,012 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DeairCO2TempComp exported successfully +[18:19:00] Exporting DeairCO2TempComp as SCL... +[18:19:00] 2025-05-19 18:19:00,119 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block DeairCO2TempComp external source successfully generated +[18:19:00] Processing block: PPM O2... +[18:19:00] Compiling block PPM O2... +[18:19:00] 2025-05-19 18:19:00,131 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block PPM O2. Result: +[18:19:01] 2025-05-19 18:19:01,521 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > Program blocks > PPM O2 (FC1910) > 4 > The sign or the accuracy of the value may be lost. +[18:19:01] 2025-05-19 18:19:01,523 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > Program blocks > PPM O2 (FC1910) > 5 > The sign or the accuracy of the value may be lost. +[18:19:01] 2025-05-19 18:19:01,525 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:19:01] 2025-05-19 18:19:01,526 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > PPM O2 (FC1910) > 7 > Invalid assignment. +[18:19:01] 2025-05-19 18:19:01,528 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 3) +[18:19:01] WARNING: Block PPM O2 inconsistent after compile. Skipping. +[18:19:01] Processing block: CO2 Solubility... +[18:19:01] Compiling block CO2 Solubility... +[18:19:01] 2025-05-19 18:19:01,536 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block CO2 Solubility. Result: +[18:19:02] 2025-05-19 18:19:02,882 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > Program blocks > CO2 Solubility (FC1911) > 8 > The sign or the accuracy of the value may be lost. +[18:19:02] 2025-05-19 18:19:02,886 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:19:02] 2025-05-19 18:19:02,887 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > CO2 Solubility (FC1911) > 8 > Invalid assignment. +[18:19:02] 2025-05-19 18:19:02,888 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 1; warnings: 3) +[18:19:02] WARNING: Block CO2 Solubility inconsistent after compile. Skipping. +[18:19:02] Processing block: MaxCarboCO2 Vol... +[18:19:02] Compiling block MaxCarboCO2 Vol... +[18:19:02] 2025-05-19 18:19:02,897 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Compile the PLC program block MaxCarboCO2 Vol. Result: +[18:19:04] 2025-05-19 18:19:04,297 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Warning: CPU 315F-2 PN/DP > General warnings > Inputs or outputs are used that do not exist in the configured hardware. +[18:19:04] 2025-05-19 18:19:04,298 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > MaxCarboCO2 Vol (FC1912) > 13 > Invalid assignment. +[18:19:04] 2025-05-19 18:19:04,300 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Program blocks > MaxCarboCO2 Vol (FC1912) > 15 > Invalid assignment. +[18:19:04] 2025-05-19 18:19:04,301 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Compile - Error: CPU 315F-2 PN/DP > Compiling finished (errors: 2; warnings: 1) +[18:19:04] WARNING: Block MaxCarboCO2 Vol inconsistent after compile. Skipping. +[18:19:04] Processing block: BlenderPID_PIDSPCalc... +[18:19:04] Exporting BlenderPID_PIDSPCalc as XML... +[18:19:04] 2025-05-19 18:19:04,753 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDSPCalc exported successfully +[18:19:04] 2025-05-19 18:19:04,769 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDSPCalc exported successfully +[18:19:04] Exporting BlenderPID_PIDSPCalc as SCL... +[18:19:05] 2025-05-19 18:19:05,035 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDSPCalc external source successfully generated +[18:19:05] Processing block: BlenderPID_PIDInitParam... +[18:19:05] Exporting BlenderPID_PIDInitParam as XML... +[18:19:05] 2025-05-19 18:19:05,267 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_PIDInitParam exported successfully +[18:19:05] 2025-05-19 18:19:05,270 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_PIDInitParam exported successfully +[18:19:05] Exporting BlenderPID_PIDInitParam as SCL... +[18:19:05] 2025-05-19 18:19:05,436 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_PIDInitParam external source successfully generated +[18:19:05] Processing block: mPDS_PA_Data... +[18:19:05] Exporting mPDS_PA_Data as XML... +[18:19:05] 2025-05-19 18:19:05,516 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: mPDS_PA_Data exported successfully +[18:19:05] 2025-05-19 18:19:05,518 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - mPDS_PA_Data exported successfully +[18:19:05] Processing block: BlenderPID_ActualRecipe... +[18:19:05] Exporting BlenderPID_ActualRecipe as XML... +[18:19:05] 2025-05-19 18:19:05,683 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_ActualRecipe exported successfully +[18:19:05] 2025-05-19 18:19:05,685 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_ActualRecipe exported successfully +[18:19:05] Exporting BlenderPID_ActualRecipe as SCL... +[18:19:05] 2025-05-19 18:19:05,777 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID_ActualRecipe external source successfully generated +[18:19:05] Processing block: BlenderPID_NextRecipe... +[18:19:05] Exporting BlenderPID_NextRecipe as XML... +[18:19:05] 2025-05-19 18:19:05,868 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID_NextRecipe exported successfully +[18:19:05] 2025-05-19 18:19:05,870 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID_NextRecipe exported successfully +[18:19:05] Processing block: BlenderPID__Main... +[18:19:05] Exporting BlenderPID__Main as XML... +[18:19:06] 2025-05-19 18:19:06,209 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID__Main exported successfully +[18:19:06] 2025-05-19 18:19:06,213 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID__Main exported successfully +[18:19:06] Exporting BlenderPID__Main as SCL... +[18:19:06] 2025-05-19 18:19:06,486 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block BlenderPID__Main external source successfully generated +[18:19:06] Processing block: RecipeEditDataSave... +[18:19:06] Exporting RecipeEditDataSave as XML... +[18:19:06] 2025-05-19 18:19:06,584 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeEditDataSave exported successfully +[18:19:06] 2025-05-19 18:19:06,597 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeEditDataSave exported successfully +[18:19:06] Processing block: HMI_Recipe_Edit... +[18:19:06] Exporting HMI_Recipe_Edit as XML... +[18:19:06] 2025-05-19 18:19:06,675 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Recipe_Edit exported successfully +[18:19:06] 2025-05-19 18:19:06,677 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Recipe_Edit exported successfully +[18:19:06] Processing block: HMI_Recipe_Name... +[18:19:06] Exporting HMI_Recipe_Name as XML... +[18:19:06] 2025-05-19 18:19:06,757 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Recipe_Name exported successfully +[18:19:06] 2025-05-19 18:19:06,760 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Recipe_Name exported successfully +[18:19:06] Processing block: RecipeManagement - Prod... +[18:19:06] Exporting RecipeManagement - Prod as XML... +[18:19:07] 2025-05-19 18:19:07,076 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement - Prod exported successfully +[18:19:07] 2025-05-19 18:19:07,079 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement - Prod exported successfully +[18:19:07] Processing block: RecipeManagement - CIP... +[18:19:07] Exporting RecipeManagement - CIP as XML... +[18:19:07] 2025-05-19 18:19:07,274 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement - CIP exported successfully +[18:19:07] 2025-05-19 18:19:07,291 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement - CIP exported successfully +[18:19:07] Processing block: BrixTracking... +[18:19:07] Exporting BrixTracking as XML... +[18:19:07] 2025-05-19 18:19:07,527 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking exported successfully +[18:19:07] 2025-05-19 18:19:07,531 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking exported successfully +[18:19:07] Processing block: FirstProduction... +[18:19:07] Exporting FirstProduction as XML... +[18:19:08] 2025-05-19 18:19:08,226 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FirstProduction exported successfully +[18:19:08] 2025-05-19 18:19:08,240 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FirstProduction exported successfully +[18:19:08] Processing block: CO2Tracking... +[18:19:08] Exporting CO2Tracking as XML... +[18:19:08] 2025-05-19 18:19:08,520 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking exported successfully +[18:19:08] 2025-05-19 18:19:08,535 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking exported successfully +[18:19:08] Processing block: Net SyrupRoom Eth... +[18:19:08] Exporting Net SyrupRoom Eth as XML... +[18:19:08] 2025-05-19 18:19:08,661 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net SyrupRoom Eth exported successfully +[18:19:08] 2025-05-19 18:19:08,665 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net SyrupRoom Eth exported successfully +[18:19:08] Processing block: Net CIP System Eth... +[18:19:08] Exporting Net CIP System Eth as XML... +[18:19:08] 2025-05-19 18:19:08,786 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net CIP System Eth exported successfully +[18:19:08] 2025-05-19 18:19:08,789 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net CIP System Eth exported successfully +[18:19:08] Processing block: Net Pasto Eth... +[18:19:08] Exporting Net Pasto Eth as XML... +[18:19:08] 2025-05-19 18:19:08,922 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net Pasto Eth exported successfully +[18:19:08] 2025-05-19 18:19:08,937 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net Pasto Eth exported successfully +[18:19:08] Processing block: Net Filler Eth... +[18:19:08] Exporting Net Filler Eth as XML... +[18:19:09] 2025-05-19 18:19:09,063 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net Filler Eth exported successfully +[18:19:09] 2025-05-19 18:19:09,067 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net Filler Eth exported successfully +[18:19:09] Processing block: Net BlendFill Eth... +[18:19:09] Exporting Net BlendFill Eth as XML... +[18:19:09] 2025-05-19 18:19:09,183 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net BlendFill Eth exported successfully +[18:19:09] 2025-05-19 18:19:09,186 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net BlendFill Eth exported successfully +[18:19:09] Processing block: Net Filler Sidel Eth... +[18:19:09] Exporting Net Filler Sidel Eth as XML... +[18:19:09] 2025-05-19 18:19:09,308 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net Filler Sidel Eth exported successfully +[18:19:09] 2025-05-19 18:19:09,310 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net Filler Sidel Eth exported successfully +[18:19:09] Processing block: Net ProdRoom Eth... +[18:19:09] Exporting Net ProdRoom Eth as XML... +[18:19:09] 2025-05-19 18:19:09,431 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net ProdRoom Eth exported successfully +[18:19:09] 2025-05-19 18:19:09,435 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net ProdRoom Eth exported successfully +[18:19:09] Processing block: Net Cip Sidel Eth... +[18:19:09] Exporting Net Cip Sidel Eth as XML... +[18:19:09] 2025-05-19 18:19:09,554 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Net Cip Sidel Eth exported successfully +[18:19:09] 2025-05-19 18:19:09,559 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Net Cip Sidel Eth exported successfully +[18:19:09] Processing block: Interlocking NET... +[18:19:09] Exporting Interlocking NET as XML... +[18:19:09] 2025-05-19 18:19:09,910 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking NET exported successfully +[18:19:09] 2025-05-19 18:19:09,925 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking NET exported successfully +[18:19:09] Processing block: FB2000... +[18:19:09] Exporting FB2000 as XML... +[18:19:10] 2025-05-19 18:19:10,052 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FB2000 exported successfully +[18:19:10] 2025-05-19 18:19:10,056 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FB2000 exported successfully +[18:19:10] Processing block: MTD NumBottleAftEndProd... +[18:19:10] Exporting MTD NumBottleAftEndProd as XML... +[18:19:10] 2025-05-19 18:19:10,453 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MTD NumBottleAftEndProd exported successfully +[18:19:10] 2025-05-19 18:19:10,456 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MTD NumBottleAftEndProd exported successfully +[18:19:10] Processing block: GLOBAL_DIAG_DB... +[18:19:10] Exporting GLOBAL_DIAG_DB as XML... +[18:19:10] 2025-05-19 18:19:10,561 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GLOBAL_DIAG_DB exported successfully +[18:19:10] 2025-05-19 18:19:10,564 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GLOBAL_DIAG_DB exported successfully +[18:19:10] Processing block: DETAIL_DP_DIAG_i... +[18:19:10] Exporting DETAIL_DP_DIAG_i as XML... +[18:19:10] 2025-05-19 18:19:10,655 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DETAIL_DP_DIAG_i exported successfully +[18:19:10] 2025-05-19 18:19:10,659 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DETAIL_DP_DIAG_i exported successfully +[18:19:10] Processing block: HMI CPU_DP Diag... +[18:19:10] Exporting HMI CPU_DP Diag as XML... +[18:19:10] 2025-05-19 18:19:10,779 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI CPU_DP Diag exported successfully +[18:19:10] 2025-05-19 18:19:10,783 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI CPU_DP Diag exported successfully +[18:19:10] Processing block: RecipeManagement_DataPrd... +[18:19:10] Exporting RecipeManagement_DataPrd as XML... +[18:19:10] 2025-05-19 18:19:10,889 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement_DataPrd exported successfully +[18:19:10] 2025-05-19 18:19:10,892 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement_DataPrd exported successfully +[18:19:10] Processing block: RecipeManagement_DataCIP... +[18:19:10] Exporting RecipeManagement_DataCIP as XML... +[18:19:11] 2025-05-19 18:19:10,998 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeManagement_DataCIP exported successfully +[18:19:11] 2025-05-19 18:19:11,002 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeManagement_DataCIP exported successfully +[18:19:11] Processing block: Recipe #01... +[18:19:11] Exporting Recipe #01 as XML... +[18:19:11] 2025-05-19 18:19:11,090 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #01 exported successfully +[18:19:11] 2025-05-19 18:19:11,095 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #01 exported successfully +[18:19:11] Processing block: Recipe #02... +[18:19:11] Exporting Recipe #02 as XML... +[18:19:11] 2025-05-19 18:19:11,187 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #02 exported successfully +[18:19:11] 2025-05-19 18:19:11,190 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #02 exported successfully +[18:19:11] Processing block: Recipe #03... +[18:19:11] Exporting Recipe #03 as XML... +[18:19:11] 2025-05-19 18:19:11,358 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #03 exported successfully +[18:19:11] 2025-05-19 18:19:11,373 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #03 exported successfully +[18:19:11] Processing block: Recipe #04... +[18:19:11] Exporting Recipe #04 as XML... +[18:19:11] 2025-05-19 18:19:11,539 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #04 exported successfully +[18:19:11] 2025-05-19 18:19:11,543 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #04 exported successfully +[18:19:11] Processing block: Recipe #05... +[18:19:11] Exporting Recipe #05 as XML... +[18:19:11] 2025-05-19 18:19:11,914 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #05 exported successfully +[18:19:11] 2025-05-19 18:19:11,921 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #05 exported successfully +[18:19:11] Processing block: Recipe #06... +[18:19:11] Exporting Recipe #06 as XML... +[18:19:12] 2025-05-19 18:19:12,027 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #06 exported successfully +[18:19:12] 2025-05-19 18:19:12,032 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #06 exported successfully +[18:19:12] Processing block: Recipe #07... +[18:19:12] Exporting Recipe #07 as XML... +[18:19:12] 2025-05-19 18:19:12,150 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #07 exported successfully +[18:19:12] 2025-05-19 18:19:12,154 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #07 exported successfully +[18:19:12] Processing block: Recipe #08... +[18:19:12] Exporting Recipe #08 as XML... +[18:19:12] 2025-05-19 18:19:12,245 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #08 exported successfully +[18:19:12] 2025-05-19 18:19:12,248 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #08 exported successfully +[18:19:12] Processing block: Recipe #09... +[18:19:12] Exporting Recipe #09 as XML... +[18:19:12] 2025-05-19 18:19:12,344 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #09 exported successfully +[18:19:12] 2025-05-19 18:19:12,349 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #09 exported successfully +[18:19:12] Processing block: Recipe #10... +[18:19:12] Exporting Recipe #10 as XML... +[18:19:12] 2025-05-19 18:19:12,450 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #10 exported successfully +[18:19:12] 2025-05-19 18:19:12,458 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #10 exported successfully +[18:19:12] Processing block: Recipe #11... +[18:19:12] Exporting Recipe #11 as XML... +[18:19:12] 2025-05-19 18:19:12,547 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #11 exported successfully +[18:19:12] 2025-05-19 18:19:12,551 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #11 exported successfully +[18:19:12] Processing block: Recipe #12... +[18:19:12] Exporting Recipe #12 as XML... +[18:19:12] 2025-05-19 18:19:12,639 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #12 exported successfully +[18:19:12] 2025-05-19 18:19:12,642 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #12 exported successfully +[18:19:12] Processing block: Recipe #13... +[18:19:12] Exporting Recipe #13 as XML... +[18:19:12] 2025-05-19 18:19:12,729 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #13 exported successfully +[18:19:12] 2025-05-19 18:19:12,732 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #13 exported successfully +[18:19:12] Processing block: Recipe #14... +[18:19:12] Exporting Recipe #14 as XML... +[18:19:12] 2025-05-19 18:19:12,808 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #14 exported successfully +[18:19:12] 2025-05-19 18:19:12,812 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #14 exported successfully +[18:19:12] Processing block: Recipe #15... +[18:19:12] Exporting Recipe #15 as XML... +[18:19:12] 2025-05-19 18:19:12,892 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #15 exported successfully +[18:19:12] 2025-05-19 18:19:12,895 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #15 exported successfully +[18:19:12] Processing block: Recipe #16... +[18:19:12] Exporting Recipe #16 as XML... +[18:19:12] 2025-05-19 18:19:12,978 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #16 exported successfully +[18:19:12] 2025-05-19 18:19:12,982 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #16 exported successfully +[18:19:12] Processing block: Recipe #17... +[18:19:12] Exporting Recipe #17 as XML... +[18:19:13] 2025-05-19 18:19:13,072 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #17 exported successfully +[18:19:13] 2025-05-19 18:19:13,076 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #17 exported successfully +[18:19:13] Processing block: Recipe #18... +[18:19:13] Exporting Recipe #18 as XML... +[18:19:13] 2025-05-19 18:19:13,145 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #18 exported successfully +[18:19:13] 2025-05-19 18:19:13,148 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #18 exported successfully +[18:19:13] Processing block: Recipe #19... +[18:19:13] Exporting Recipe #19 as XML... +[18:19:13] 2025-05-19 18:19:13,212 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #19 exported successfully +[18:19:13] 2025-05-19 18:19:13,214 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #19 exported successfully +[18:19:13] Processing block: Recipe #20... +[18:19:13] Exporting Recipe #20 as XML... +[18:19:13] 2025-05-19 18:19:13,290 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #20 exported successfully +[18:19:13] 2025-05-19 18:19:13,293 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #20 exported successfully +[18:19:13] Processing block: Recipe #21... +[18:19:13] Exporting Recipe #21 as XML... +[18:19:13] 2025-05-19 18:19:13,399 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #21 exported successfully +[18:19:13] 2025-05-19 18:19:13,403 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #21 exported successfully +[18:19:13] Processing block: Recipe #22... +[18:19:13] Exporting Recipe #22 as XML... +[18:19:13] 2025-05-19 18:19:13,494 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #22 exported successfully +[18:19:13] 2025-05-19 18:19:13,498 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #22 exported successfully +[18:19:13] Processing block: Recipe #23... +[18:19:13] Exporting Recipe #23 as XML... +[18:19:13] 2025-05-19 18:19:13,647 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #23 exported successfully +[18:19:13] 2025-05-19 18:19:13,651 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #23 exported successfully +[18:19:13] Processing block: Recipe #24... +[18:19:13] Exporting Recipe #24 as XML... +[18:19:13] 2025-05-19 18:19:13,741 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #24 exported successfully +[18:19:13] 2025-05-19 18:19:13,744 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #24 exported successfully +[18:19:13] Processing block: Recipe #25... +[18:19:13] Exporting Recipe #25 as XML... +[18:19:13] 2025-05-19 18:19:13,849 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #25 exported successfully +[18:19:13] 2025-05-19 18:19:13,867 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #25 exported successfully +[18:19:13] Processing block: Recipe #26... +[18:19:13] Exporting Recipe #26 as XML... +[18:19:13] 2025-05-19 18:19:13,972 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #26 exported successfully +[18:19:13] 2025-05-19 18:19:13,988 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #26 exported successfully +[18:19:13] Processing block: Recipe #27... +[18:19:14] Exporting Recipe #27 as XML... +[18:19:14] 2025-05-19 18:19:14,096 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #27 exported successfully +[18:19:14] 2025-05-19 18:19:14,101 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #27 exported successfully +[18:19:14] Processing block: Recipe #28... +[18:19:14] Exporting Recipe #28 as XML... +[18:19:14] 2025-05-19 18:19:14,222 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #28 exported successfully +[18:19:14] 2025-05-19 18:19:14,227 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #28 exported successfully +[18:19:14] Processing block: Recipe #29... +[18:19:14] Exporting Recipe #29 as XML... +[18:19:14] 2025-05-19 18:19:14,334 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #29 exported successfully +[18:19:14] 2025-05-19 18:19:14,337 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #29 exported successfully +[18:19:14] Processing block: Recipe #30... +[18:19:14] Exporting Recipe #30 as XML... +[18:19:14] 2025-05-19 18:19:14,427 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #30 exported successfully +[18:19:14] 2025-05-19 18:19:14,430 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #30 exported successfully +[18:19:14] Processing block: Recipe #31... +[18:19:14] Exporting Recipe #31 as XML... +[18:19:14] 2025-05-19 18:19:14,546 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #31 exported successfully +[18:19:14] 2025-05-19 18:19:14,549 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #31 exported successfully +[18:19:14] Processing block: Recipe #32... +[18:19:14] Exporting Recipe #32 as XML... +[18:19:14] 2025-05-19 18:19:14,634 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #32 exported successfully +[18:19:14] 2025-05-19 18:19:14,638 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #32 exported successfully +[18:19:14] Processing block: Recipe #33... +[18:19:14] Exporting Recipe #33 as XML... +[18:19:14] 2025-05-19 18:19:14,732 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #33 exported successfully +[18:19:14] 2025-05-19 18:19:14,735 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #33 exported successfully +[18:19:14] Processing block: Recipe #34... +[18:19:14] Exporting Recipe #34 as XML... +[18:19:14] 2025-05-19 18:19:14,827 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #34 exported successfully +[18:19:14] 2025-05-19 18:19:14,831 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #34 exported successfully +[18:19:14] Processing block: Recipe #35... +[18:19:14] Exporting Recipe #35 as XML... +[18:19:14] 2025-05-19 18:19:14,936 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #35 exported successfully +[18:19:14] 2025-05-19 18:19:14,940 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #35 exported successfully +[18:19:14] Processing block: Recipe #36... +[18:19:14] Exporting Recipe #36 as XML... +[18:19:15] 2025-05-19 18:19:15,060 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #36 exported successfully +[18:19:15] 2025-05-19 18:19:15,064 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #36 exported successfully +[18:19:15] Processing block: Recipe #37... +[18:19:15] Exporting Recipe #37 as XML... +[18:19:15] 2025-05-19 18:19:15,169 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #37 exported successfully +[18:19:15] 2025-05-19 18:19:15,173 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #37 exported successfully +[18:19:15] Processing block: Recipe #38... +[18:19:15] Exporting Recipe #38 as XML... +[18:19:15] 2025-05-19 18:19:15,264 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #38 exported successfully +[18:19:15] 2025-05-19 18:19:15,268 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #38 exported successfully +[18:19:15] Processing block: Recipe #39... +[18:19:15] Exporting Recipe #39 as XML... +[18:19:15] 2025-05-19 18:19:15,362 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #39 exported successfully +[18:19:15] 2025-05-19 18:19:15,365 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #39 exported successfully +[18:19:15] Processing block: Recipe #40... +[18:19:15] Exporting Recipe #40 as XML... +[18:19:15] 2025-05-19 18:19:15,444 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #40 exported successfully +[18:19:15] 2025-05-19 18:19:15,448 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #40 exported successfully +[18:19:15] Processing block: Recipe #41... +[18:19:15] Exporting Recipe #41 as XML... +[18:19:15] 2025-05-19 18:19:15,545 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #41 exported successfully +[18:19:15] 2025-05-19 18:19:15,549 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #41 exported successfully +[18:19:15] Processing block: Recipe #42... +[18:19:15] Exporting Recipe #42 as XML... +[18:19:15] 2025-05-19 18:19:15,631 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #42 exported successfully +[18:19:15] 2025-05-19 18:19:15,635 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #42 exported successfully +[18:19:15] Processing block: Recipe #43... +[18:19:15] Exporting Recipe #43 as XML... +[18:19:15] 2025-05-19 18:19:15,717 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #43 exported successfully +[18:19:15] 2025-05-19 18:19:15,721 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #43 exported successfully +[18:19:15] Processing block: Recipe #44... +[18:19:15] Exporting Recipe #44 as XML... +[18:19:15] 2025-05-19 18:19:15,811 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #44 exported successfully +[18:19:15] 2025-05-19 18:19:15,813 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #44 exported successfully +[18:19:15] Processing block: Recipe #45... +[18:19:15] Exporting Recipe #45 as XML... +[18:19:15] 2025-05-19 18:19:15,903 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #45 exported successfully +[18:19:15] 2025-05-19 18:19:15,906 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #45 exported successfully +[18:19:15] Processing block: Recipe #46... +[18:19:15] Exporting Recipe #46 as XML... +[18:19:16] 2025-05-19 18:19:16,000 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #46 exported successfully +[18:19:16] 2025-05-19 18:19:16,008 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #46 exported successfully +[18:19:16] Processing block: Recipe #47... +[18:19:16] Exporting Recipe #47 as XML... +[18:19:16] 2025-05-19 18:19:16,151 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #47 exported successfully +[18:19:16] 2025-05-19 18:19:16,154 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #47 exported successfully +[18:19:16] Processing block: Recipe #48... +[18:19:16] Exporting Recipe #48 as XML... +[18:19:16] 2025-05-19 18:19:16,244 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #48 exported successfully +[18:19:16] 2025-05-19 18:19:16,247 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #48 exported successfully +[18:19:16] Processing block: Recipe #49... +[18:19:16] Exporting Recipe #49 as XML... +[18:19:16] 2025-05-19 18:19:16,339 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #49 exported successfully +[18:19:16] 2025-05-19 18:19:16,342 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #49 exported successfully +[18:19:16] Processing block: Recipe #50... +[18:19:16] Exporting Recipe #50 as XML... +[18:19:16] 2025-05-19 18:19:16,437 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Recipe #50 exported successfully +[18:19:16] 2025-05-19 18:19:16,440 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Recipe #50 exported successfully +[18:19:16] Processing block: CIPRecipe#01... +[18:19:16] Exporting CIPRecipe#01 as XML... +[18:19:16] 2025-05-19 18:19:16,542 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#01 exported successfully +[18:19:16] 2025-05-19 18:19:16,545 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#01 exported successfully +[18:19:16] Processing block: CIPRecipe#02... +[18:19:16] Exporting CIPRecipe#02 as XML... +[18:19:16] 2025-05-19 18:19:16,647 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#02 exported successfully +[18:19:16] 2025-05-19 18:19:16,652 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#02 exported successfully +[18:19:16] Processing block: CIPRecipe#03... +[18:19:16] Exporting CIPRecipe#03 as XML... +[18:19:16] 2025-05-19 18:19:16,747 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#03 exported successfully +[18:19:16] 2025-05-19 18:19:16,751 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#03 exported successfully +[18:19:16] Processing block: CIPRecipe#04... +[18:19:16] Exporting CIPRecipe#04 as XML... +[18:19:16] 2025-05-19 18:19:16,851 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#04 exported successfully +[18:19:16] 2025-05-19 18:19:16,855 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#04 exported successfully +[18:19:16] Processing block: CIPRecipe#05... +[18:19:16] Exporting CIPRecipe#05 as XML... +[18:19:16] 2025-05-19 18:19:16,952 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#05 exported successfully +[18:19:16] 2025-05-19 18:19:16,955 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#05 exported successfully +[18:19:16] Processing block: CIPRecipe#06... +[18:19:16] Exporting CIPRecipe#06 as XML... +[18:19:17] 2025-05-19 18:19:17,071 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#06 exported successfully +[18:19:17] 2025-05-19 18:19:17,088 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#06 exported successfully +[18:19:17] Processing block: CIPRecipe#07... +[18:19:17] Exporting CIPRecipe#07 as XML... +[18:19:17] 2025-05-19 18:19:17,179 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#07 exported successfully +[18:19:17] 2025-05-19 18:19:17,182 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#07 exported successfully +[18:19:17] Processing block: CIPRecipe#08... +[18:19:17] Exporting CIPRecipe#08 as XML... +[18:19:17] 2025-05-19 18:19:17,289 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#08 exported successfully +[18:19:17] 2025-05-19 18:19:17,293 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#08 exported successfully +[18:19:17] Processing block: CIPRecipe#09... +[18:19:17] Exporting CIPRecipe#09 as XML... +[18:19:17] 2025-05-19 18:19:17,380 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#09 exported successfully +[18:19:17] 2025-05-19 18:19:17,384 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#09 exported successfully +[18:19:17] Processing block: CIPRecipe#10... +[18:19:17] Exporting CIPRecipe#10 as XML... +[18:19:17] 2025-05-19 18:19:17,477 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#10 exported successfully +[18:19:17] 2025-05-19 18:19:17,481 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#10 exported successfully +[18:19:17] Processing block: CIPRecipe#11... +[18:19:17] Exporting CIPRecipe#11 as XML... +[18:19:17] 2025-05-19 18:19:17,585 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#11 exported successfully +[18:19:17] 2025-05-19 18:19:17,589 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#11 exported successfully +[18:19:17] Processing block: CIPRecipe#12... +[18:19:17] Exporting CIPRecipe#12 as XML... +[18:19:17] 2025-05-19 18:19:17,692 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#12 exported successfully +[18:19:17] 2025-05-19 18:19:17,707 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#12 exported successfully +[18:19:17] Processing block: CIPRecipe#13... +[18:19:17] Exporting CIPRecipe#13 as XML... +[18:19:17] 2025-05-19 18:19:17,800 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#13 exported successfully +[18:19:17] 2025-05-19 18:19:17,803 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#13 exported successfully +[18:19:17] Processing block: CIPRecipe#14... +[18:19:17] Exporting CIPRecipe#14 as XML... +[18:19:17] 2025-05-19 18:19:17,909 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#14 exported successfully +[18:19:17] 2025-05-19 18:19:17,912 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#14 exported successfully +[18:19:17] Processing block: CIPRecipe#15... +[18:19:17] Exporting CIPRecipe#15 as XML... +[18:19:18] 2025-05-19 18:19:18,004 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#15 exported successfully +[18:19:18] 2025-05-19 18:19:18,008 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#15 exported successfully +[18:19:18] Processing block: CIPRecipe#16... +[18:19:18] Exporting CIPRecipe#16 as XML... +[18:19:18] 2025-05-19 18:19:18,110 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#16 exported successfully +[18:19:18] 2025-05-19 18:19:18,113 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#16 exported successfully +[18:19:18] Processing block: CIPRecipe#17... +[18:19:18] Exporting CIPRecipe#17 as XML... +[18:19:18] 2025-05-19 18:19:18,220 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#17 exported successfully +[18:19:18] 2025-05-19 18:19:18,224 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#17 exported successfully +[18:19:18] Processing block: CIPRecipe#18... +[18:19:18] Exporting CIPRecipe#18 as XML... +[18:19:18] 2025-05-19 18:19:18,314 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#18 exported successfully +[18:19:18] 2025-05-19 18:19:18,318 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#18 exported successfully +[18:19:18] Processing block: CIPRecipe#19... +[18:19:18] Exporting CIPRecipe#19 as XML... +[18:19:18] 2025-05-19 18:19:18,439 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#19 exported successfully +[18:19:18] 2025-05-19 18:19:18,442 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#19 exported successfully +[18:19:18] Processing block: CIPRecipe#20... +[18:19:18] Exporting CIPRecipe#20 as XML... +[18:19:18] 2025-05-19 18:19:18,533 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#20 exported successfully +[18:19:18] 2025-05-19 18:19:18,536 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#20 exported successfully +[18:19:18] Processing block: CIPRecipe#21... +[18:19:18] Exporting CIPRecipe#21 as XML... +[18:19:18] 2025-05-19 18:19:18,657 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#21 exported successfully +[18:19:18] 2025-05-19 18:19:18,662 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#21 exported successfully +[18:19:18] Processing block: CIPRecipe#22... +[18:19:18] Exporting CIPRecipe#22 as XML... +[18:19:18] 2025-05-19 18:19:18,777 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#22 exported successfully +[18:19:18] 2025-05-19 18:19:18,781 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#22 exported successfully +[18:19:18] Processing block: CIPRecipe#23... +[18:19:18] Exporting CIPRecipe#23 as XML... +[18:19:18] 2025-05-19 18:19:18,887 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#23 exported successfully +[18:19:18] 2025-05-19 18:19:18,902 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#23 exported successfully +[18:19:18] Processing block: CIPRecipe#24... +[18:19:18] Exporting CIPRecipe#24 as XML... +[18:19:18] 2025-05-19 18:19:18,995 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#24 exported successfully +[18:19:19] 2025-05-19 18:19:18,998 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#24 exported successfully +[18:19:19] Processing block: CIPRecipe#25... +[18:19:19] Exporting CIPRecipe#25 as XML... +[18:19:19] 2025-05-19 18:19:19,086 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#25 exported successfully +[18:19:19] 2025-05-19 18:19:19,092 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#25 exported successfully +[18:19:19] Processing block: CIPRecipe#26... +[18:19:19] Exporting CIPRecipe#26 as XML... +[18:19:19] 2025-05-19 18:19:19,196 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#26 exported successfully +[18:19:19] 2025-05-19 18:19:19,200 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#26 exported successfully +[18:19:19] Processing block: CIPRecipe#27... +[18:19:19] Exporting CIPRecipe#27 as XML... +[18:19:19] 2025-05-19 18:19:19,303 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#27 exported successfully +[18:19:19] 2025-05-19 18:19:19,306 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#27 exported successfully +[18:19:19] Processing block: CIPRecipe#28... +[18:19:19] Exporting CIPRecipe#28 as XML... +[18:19:19] 2025-05-19 18:19:19,396 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#28 exported successfully +[18:19:19] 2025-05-19 18:19:19,400 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#28 exported successfully +[18:19:19] Processing block: CIPRecipe#29... +[18:19:19] Exporting CIPRecipe#29 as XML... +[18:19:19] 2025-05-19 18:19:19,491 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#29 exported successfully +[18:19:19] 2025-05-19 18:19:19,494 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#29 exported successfully +[18:19:19] Processing block: CIPRecipe#30... +[18:19:19] Exporting CIPRecipe#30 as XML... +[18:19:19] 2025-05-19 18:19:19,585 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPRecipe#30 exported successfully +[18:19:19] 2025-05-19 18:19:19,587 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPRecipe#30 exported successfully +[18:19:19] Processing block: CIPSimple_Empty... +[18:19:19] Exporting CIPSimple_Empty as XML... +[18:19:19] 2025-05-19 18:19:19,679 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Empty exported successfully +[18:19:19] 2025-05-19 18:19:19,681 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Empty exported successfully +[18:19:19] Processing block: CIPSimple_Rinse... +[18:19:19] Exporting CIPSimple_Rinse as XML... +[18:19:19] 2025-05-19 18:19:19,745 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Rinse exported successfully +[18:19:19] 2025-05-19 18:19:19,747 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Rinse exported successfully +[18:19:19] Processing block: CIPSimple_Recirculation... +[18:19:19] Exporting CIPSimple_Recirculation as XML... +[18:19:19] 2025-05-19 18:19:19,834 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Recirculation exported successfully +[18:19:19] 2025-05-19 18:19:19,836 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Recirculation exported successfully +[18:19:19] Processing block: CIPSimple_Drain... +[18:19:19] Exporting CIPSimple_Drain as XML... +[18:19:19] 2025-05-19 18:19:19,902 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Drain exported successfully +[18:19:19] 2025-05-19 18:19:19,911 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Drain exported successfully +[18:19:19] Processing block: CIPSimple_Flood... +[18:19:19] Exporting CIPSimple_Flood as XML... +[18:19:19] 2025-05-19 18:19:19,984 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Flood exported successfully +[18:19:19] 2025-05-19 18:19:19,987 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Flood exported successfully +[18:19:19] Processing block: CIPSimple_RinseCO2... +[18:19:19] Exporting CIPSimple_RinseCO2 as XML... +[18:19:20] 2025-05-19 18:19:20,081 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_RinseCO2 exported successfully +[18:19:20] 2025-05-19 18:19:20,085 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_RinseCO2 exported successfully +[18:19:20] Processing block: CIPSimple_Start... +[18:19:20] Exporting CIPSimple_Start as XML... +[18:19:20] 2025-05-19 18:19:20,175 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Start exported successfully +[18:19:20] 2025-05-19 18:19:20,178 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Start exported successfully +[18:19:20] Processing block: CIPSimple_Recover... +[18:19:20] Exporting CIPSimple_Recover as XML... +[18:19:20] 2025-05-19 18:19:20,254 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPSimple_Recover exported successfully +[18:19:20] 2025-05-19 18:19:20,257 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPSimple_Recover exported successfully +[18:19:20] Processing block: CIPReportDB... +[18:19:20] Exporting CIPReportDB as XML... +[18:19:20] 2025-05-19 18:19:20,364 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPReportDB exported successfully +[18:19:20] 2025-05-19 18:19:20,368 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPReportDB exported successfully +[18:19:20] Processing block: ProdReportDB... +[18:19:20] Exporting ProdReportDB as XML... +[18:19:20] 2025-05-19 18:19:20,474 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdReportDB exported successfully +[18:19:20] 2025-05-19 18:19:20,478 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdReportDB exported successfully +[18:19:20] Processing block: PID MAIN Data... +[18:19:20] Exporting PID MAIN Data as XML... +[18:19:20] 2025-05-19 18:19:20,613 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PID MAIN Data exported successfully +[18:19:20] 2025-05-19 18:19:20,616 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PID MAIN Data exported successfully +[18:19:20] Processing block: Sel_Check_Brix_Data... +[18:19:20] Exporting Sel_Check_Brix_Data as XML... +[18:19:20] 2025-05-19 18:19:20,682 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Sel_Check_Brix_Data exported successfully +[18:19:20] 2025-05-19 18:19:20,686 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Sel_Check_Brix_Data exported successfully +[18:19:20] Processing block: FirstProduction_Data... +[18:19:20] Exporting FirstProduction_Data as XML... +[18:19:20] 2025-05-19 18:19:20,770 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FirstProduction_Data exported successfully +[18:19:20] 2025-05-19 18:19:20,772 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FirstProduction_Data exported successfully +[18:19:20] Processing block: Input_Data... +[18:19:20] Exporting Input_Data as XML... +[18:19:20] 2025-05-19 18:19:20,957 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Input_Data exported successfully +[18:19:20] 2025-05-19 18:19:20,961 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Input_Data exported successfully +[18:19:20] Processing block: MFM_Analog_Value_Data... +[18:19:20] Exporting MFM_Analog_Value_Data as XML... +[18:19:21] 2025-05-19 18:19:21,035 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MFM_Analog_Value_Data exported successfully +[18:19:21] 2025-05-19 18:19:21,037 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MFM_Analog_Value_Data exported successfully +[18:19:21] Processing block: Signal_Gen_Data... +[18:19:21] Exporting Signal_Gen_Data as XML... +[18:19:21] 2025-05-19 18:19:21,095 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Signal_Gen_Data exported successfully +[18:19:21] 2025-05-19 18:19:21,098 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Signal_Gen_Data exported successfully +[18:19:21] Processing block: BlenderPID__Main_Data... +[18:19:21] Exporting BlenderPID__Main_Data as XML... +[18:19:21] 2025-05-19 18:19:21,193 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderPID__Main_Data exported successfully +[18:19:21] 2025-05-19 18:19:21,196 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderPID__Main_Data exported successfully +[18:19:21] Processing block: AVS Valve Fault DB... +[18:19:21] Exporting AVS Valve Fault DB as XML... +[18:19:21] 2025-05-19 18:19:21,283 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: AVS Valve Fault DB exported successfully +[18:19:21] 2025-05-19 18:19:21,286 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - AVS Valve Fault DB exported successfully +[18:19:21] Processing block: Maselli_PA_Data... +[18:19:21] Exporting Maselli_PA_Data as XML... +[18:19:21] 2025-05-19 18:19:21,340 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Maselli_PA_Data exported successfully +[18:19:21] 2025-05-19 18:19:21,343 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Maselli_PA_Data exported successfully +[18:19:21] Processing block: SLIM_Variables... +[18:19:21] Exporting SLIM_Variables as XML... +[18:19:21] 2025-05-19 18:19:21,402 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: SLIM_Variables exported successfully +[18:19:21] 2025-05-19 18:19:21,405 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - SLIM_Variables exported successfully +[18:19:21] Processing block: Pneumatic Valve Fault DB... +[18:19:21] Exporting Pneumatic Valve Fault DB as XML... +[18:19:21] 2025-05-19 18:19:21,503 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Pneumatic Valve Fault DB exported successfully +[18:19:21] 2025-05-19 18:19:21,506 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Pneumatic Valve Fault DB exported successfully +[18:19:21] Processing block: BlenderRun_MeasFil_Data... +[18:19:21] Exporting BlenderRun_MeasFil_Data as XML... +[18:19:21] 2025-05-19 18:19:21,595 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BlenderRun_MeasFil_Data exported successfully +[18:19:21] 2025-05-19 18:19:21,598 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BlenderRun_MeasFil_Data exported successfully +[18:19:21] Processing block: BrixTracking_Data... +[18:19:21] Exporting BrixTracking_Data as XML... +[18:19:21] 2025-05-19 18:19:21,688 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: BrixTracking_Data exported successfully +[18:19:21] 2025-05-19 18:19:21,691 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - BrixTracking_Data exported successfully +[18:19:21] Processing block: CO2Tracking_Data... +[18:19:21] Exporting CO2Tracking_Data as XML... +[18:19:21] 2025-05-19 18:19:21,786 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CO2Tracking_Data exported successfully +[18:19:21] 2025-05-19 18:19:21,789 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CO2Tracking_Data exported successfully +[18:19:21] Processing block: Interlocking_NET... +[18:19:21] Exporting Interlocking_NET as XML... +[18:19:21] 2025-05-19 18:19:21,876 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Interlocking_NET exported successfully +[18:19:21] 2025-05-19 18:19:21,879 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Interlocking_NET exported successfully +[18:19:21] Processing block: HMI_IO_Showing... +[18:19:21] Exporting HMI_IO_Showing as XML... +[18:19:22] 2025-05-19 18:19:22,061 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_IO_Showing exported successfully +[18:19:22] 2025-05-19 18:19:22,065 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_IO_Showing exported successfully +[18:19:22] Processing block: HMI_ICS_Status... +[18:19:22] Exporting HMI_ICS_Status as XML... +[18:19:22] 2025-05-19 18:19:22,140 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_ICS_Status exported successfully +[18:19:22] 2025-05-19 18:19:22,142 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_ICS_Status exported successfully +[18:19:22] Processing block: HMI_Totalizers... +[18:19:22] Exporting HMI_Totalizers as XML... +[18:19:22] 2025-05-19 18:19:22,222 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: HMI_Totalizers exported successfully +[18:19:22] 2025-05-19 18:19:22,224 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - HMI_Totalizers exported successfully +[18:19:22] Processing block: GNS DriveDiag DB... +[18:19:22] Exporting GNS DriveDiag DB as XML... +[18:19:22] 2025-05-19 18:19:22,294 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GNS DriveDiag DB exported successfully +[18:19:22] 2025-05-19 18:19:22,296 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GNS DriveDiag DB exported successfully +[18:19:22] Processing block: DB1450... +[18:19:22] Exporting DB1450 as XML... +[18:19:22] 2025-05-19 18:19:22,388 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DB1450 exported successfully +[18:19:22] 2025-05-19 18:19:22,391 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DB1450 exported successfully +[18:19:22] Processing block: DB1451... +[18:19:22] Exporting DB1451 as XML... +[18:19:22] 2025-05-19 18:19:22,496 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DB1451 exported successfully +[18:19:22] 2025-05-19 18:19:22,499 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DB1451 exported successfully +[18:19:22] Processing block: DB2000... +[18:19:22] Exporting DB2000 as XML... +[18:19:22] 2025-05-19 18:19:22,575 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DB2000 exported successfully +[18:19:22] 2025-05-19 18:19:22,580 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DB2000 exported successfully +[18:19:22] Processing block: MTD NumBottleAftEndP DB... +[18:19:22] Exporting MTD NumBottleAftEndP DB as XML... +[18:19:22] 2025-05-19 18:19:22,649 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MTD NumBottleAftEndP DB exported successfully +[18:19:22] 2025-05-19 18:19:22,653 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MTD NumBottleAftEndP DB exported successfully +[18:19:22] Processing block: DELETE... +[18:19:22] Exporting DELETE as XML... +[18:19:22] 2025-05-19 18:19:22,782 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: DELETE exported successfully +[18:19:22] 2025-05-19 18:19:22,785 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - DELETE exported successfully +[18:19:22] Processing block: GLOBAL_DP_DIAG... +[18:19:22] Exporting GLOBAL_DP_DIAG as XML... +[18:19:22] 2025-05-19 18:19:22,890 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: GLOBAL_DP_DIAG exported successfully +[18:19:22] 2025-05-19 18:19:22,894 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - GLOBAL_DP_DIAG exported successfully +[18:19:22] Processing block: Profibus Network... +[18:19:22] Exporting Profibus Network as XML... +[18:19:23] 2025-05-19 18:19:23,420 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Profibus Network exported successfully +[18:19:23] 2025-05-19 18:19:23,435 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Profibus Network exported successfully +[18:19:23] Processing block: CPU_DP Global Diag... +[18:19:23] Exporting CPU_DP Global Diag as XML... +[18:19:23] 2025-05-19 18:19:23,777 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CPU_DP Global Diag exported successfully +[18:19:23] 2025-05-19 18:19:23,792 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CPU_DP Global Diag exported successfully +[18:19:23] Processing block: Block_move... +[18:19:23] Exporting Block_move as XML... +[18:19:23] 2025-05-19 18:19:23,916 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Block_move exported successfully +[18:19:23] 2025-05-19 18:19:23,932 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Block_move exported successfully +[18:19:23] Processing block: Block_compare... +[18:19:23] Exporting Block_compare as XML... +[18:19:24] 2025-05-19 18:19:24,042 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Block_compare exported successfully +[18:19:24] 2025-05-19 18:19:24,045 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Block_compare exported successfully +[18:19:24] Processing block: Buffer_Tank_Flushing... +[18:19:24] Exporting Buffer_Tank_Flushing as XML... +[18:19:24] 2025-05-19 18:19:24,385 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Buffer_Tank_Flushing exported successfully +[18:19:24] 2025-05-19 18:19:24,390 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Buffer_Tank_Flushing exported successfully +[18:19:24] Processing block: AG_SEND_LF... +[18:19:24] Exporting AG_SEND_LF as XML... +[18:19:24] 2025-05-19 18:19:24,508 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: AG_SEND_LF exported successfully +[18:19:24] 2025-05-19 18:19:24,512 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - AG_SEND_LF exported successfully +[18:19:24] Processing block: AG_RECV_LF... +[18:19:24] Exporting AG_RECV_LF as XML... +[18:19:24] 2025-05-19 18:19:24,615 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: AG_RECV_LF exported successfully +[18:19:24] 2025-05-19 18:19:24,619 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - AG_RECV_LF exported successfully +[18:19:24] Processing block: MessageScroll... +[18:19:24] Exporting MessageScroll as XML... +[18:19:24] 2025-05-19 18:19:24,702 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: MessageScroll exported successfully +[18:19:24] 2025-05-19 18:19:24,705 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - MessageScroll exported successfully +[18:19:24] Processing block: FC351... +[18:19:24] Exporting FC351 as XML... +[18:19:24] 2025-05-19 18:19:24,869 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FC351 exported successfully +[18:19:24] 2025-05-19 18:19:24,887 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FC351 exported successfully +[18:19:24] Processing block: FC350... +[18:19:24] Exporting FC350 as XML... +[18:19:25] 2025-05-19 18:19:25,198 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FC350 exported successfully +[18:19:25] 2025-05-19 18:19:25,207 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FC350 exported successfully +[18:19:25] Processing block: CIPReportManager... +[18:19:25] Exporting CIPReportManager as XML... +[18:19:25] 2025-05-19 18:19:25,525 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CIPReportManager exported successfully +[18:19:25] 2025-05-19 18:19:25,539 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CIPReportManager exported successfully +[18:19:25] Processing block: ProdReportManager... +[18:19:25] Exporting ProdReportManager as XML... +[18:19:26] 2025-05-19 18:19:26,482 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: ProdReportManager exported successfully +[18:19:26] 2025-05-19 18:19:26,604 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - ProdReportManager exported successfully +[18:19:26] Processing block: CTRLCoolingSystem... +[18:19:26] Exporting CTRLCoolingSystem as XML... +[18:19:26] 2025-05-19 18:19:26,811 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: CTRLCoolingSystem exported successfully +[18:19:26] 2025-05-19 18:19:26,814 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - CTRLCoolingSystem exported successfully +[18:19:35] Processing block: RecipeCalculation... +[18:19:35] Exporting RecipeCalculation as XML... +[18:19:35] 2025-05-19 18:19:35,663 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: RecipeCalculation exported successfully +[18:19:35] 2025-05-19 18:19:35,676 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - RecipeCalculation exported successfully +[18:19:35] Exporting RecipeCalculation as SCL... +[18:19:35] 2025-05-19 18:19:35,926 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock GenerateSource - PLC program block RecipeCalculation external source successfully generated +[18:19:35] Processing block: Baialage... +[18:19:35] Exporting Baialage as XML... +[18:19:36] 2025-05-19 18:19:36,160 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Baialage exported successfully +[18:19:36] 2025-05-19 18:19:36,163 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Baialage exported successfully +[18:19:36] Processing block: Syrup Rinse QCO_Seq... +[18:19:36] Exporting Syrup Rinse QCO_Seq as XML... +[18:19:36] 2025-05-19 18:19:36,358 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Syrup Rinse QCO_Seq exported successfully +[18:19:36] 2025-05-19 18:19:36,370 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Syrup Rinse QCO_Seq exported successfully +[18:19:36] Processing block: FC1828... +[18:19:36] Exporting FC1828 as XML... +[18:19:36] 2025-05-19 18:19:36,529 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: FC1828 exported successfully +[18:19:36] 2025-05-19 18:19:36,533 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - FC1828 exported successfully +[18:19:36] Processing block: Clock Signal... +[18:19:36] Exporting Clock Signal as XML... +[18:19:36] 2025-05-19 18:19:36,768 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: Clock Signal exported successfully +[18:19:36] 2025-05-19 18:19:36,773 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - Clock Signal exported successfully +[18:19:36] Processing block: PPM303_VFC_Ctrl... +[18:19:36] Exporting PPM303_VFC_Ctrl as XML... +[18:19:36] 2025-05-19 18:19:36,894 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPM303_VFC_Ctrl exported successfully +[18:19:36] 2025-05-19 18:19:36,897 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPM303_VFC_Ctrl exported successfully +[18:19:36] Processing block: PPN301_VFC_Ctrl... +[18:19:36] Exporting PPN301_VFC_Ctrl as XML... +[18:20:12] 2025-05-19 18:20:12,964 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PLC program block: PPN301_VFC_Ctrl exported successfully +[18:20:12] 2025-05-19 18:20:12,968 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.ProgramBlock Export - PPN301_VFC_Ctrl exported successfully +[18:20:12] Processing block: PPP302_VFC_Ctrl... +[18:20:13] Exporting PPP302_VFC_Ctrl as XML... +[18:20:13] ERROR exporting block PPP302_VFC_Ctrl: OpennessAccessException: Access to a disposed object of type 'Siemens.Engineering.SW.Blocks.FC' is not possible. +[18:20:13] ERROR processing Program Blocks: OpennessAccessException: Access to a disposed object of type 'Siemens.Engineering.SW.Blocks.FC' is not possible. +[18:20:13] [PLC: CPU 315F-2 PN/DP] Exporting PLC Data Types (UDTs)... +[18:20:13] Target: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML\CPU 315F-2 PN/DP\PlcDataTypes +[18:20:13] ERROR processing UDTs: SerializationException: No se puede encontrar el ensamblado 'Siemens.Engineering, Version=18.0.0.0, Culture=neutral, PublicKeyToken=d29ec89bac048f84'. +[18:20:13] [PLC: CPU 315F-2 PN/DP] Exporting PLC Tag Tables... +[18:20:13] Target: C:\Trabajo\SIDEL\09 - SAE452 - Diet as Regular - San Giovanni in Bosco\Reporte\SourceDoc\SourceXML\CPU 315F-2 PN/DP\PlcTags +[18:20:13] ERROR processing Tag Tables: SerializationException: No se puede encontrar el ensamblado 'Siemens.Engineering, Version=18.0.0.0, Culture=neutral, PublicKeyToken=d29ec89bac048f84'. +[18:20:13] --- Finished processing PLC: CPU 315F-2 PN/DP --- +[18:20:13] Export process completed. +[18:20:13] Closing TIA Portal... +[18:20:13] 2025-05-19 18:20:13,413 [1] INFO Siemens.TiaPortal.OpennessApi18.Implementations.Portal ClosePortal - Close TIA Portal +[18:20:13] TIA Portal closed. +[18:20:13] Script finished. +[18:20:13] Ejecución de x1.py finalizada (success). Duración: 0:15:42.075469. Se detectaron errores (ver log). +[18:20:13] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\ObtainIOFromProjectTia\log_x1.txt diff --git a/static/js/scripts.js b/static/js/scripts.js index cfe74a5..79fcd23 100644 --- a/static/js/scripts.js +++ b/static/js/scripts.js @@ -913,6 +913,12 @@ async function initializeApp() { // Agregar el nuevo manejador de eventos selectElement.addEventListener('change', handleGroupChange); + // Event listener para el nuevo botón de abrir en explorador + const openInExplorerButton = document.getElementById('open-in-explorer-btn'); + if (openInExplorerButton) { + openInExplorerButton.addEventListener('click', openCurrentWorkingDirectoryInExplorer); + } + // Cargar datos iniciales updateGroupDescription(); await initWorkingDirectory(); @@ -1314,4 +1320,40 @@ function openMinicondaConsole() { console.error('Error opening Miniconda Console:', error); showNotification('Error al comunicarse con el servidor', 'error'); }); +} + +async function openCurrentWorkingDirectoryInExplorer() { + const group = currentGroup; // Asumiendo que currentGroup está disponible globalmente + const wdInput = document.getElementById('working-directory'); + const path = wdInput.value; + + if (!group) { + showToast("Por favor, selecciona un grupo primero.", "warning"); // O usa alert() si showToast no está definida + // alert("Por favor, selecciona un grupo primero."); + return; + } + if (!path || path.trim() === "") { + showToast("El directorio de trabajo no está establecido.", "warning"); + // alert("El directorio de trabajo no está establecido."); + return; + } + + try { + const response = await fetch('/api/open-explorer', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ path: path, group: group }) + }); + const result = await response.json(); + if (result.status === "success") { + // No es necesario un toast para éxito, la acción es visible + } else { + showToast(result.message || "Error al intentar abrir el explorador.", "error"); + } + } catch (error) { + console.error("Error de red al abrir en explorador:", error); + showToast("Error de red al intentar abrir el explorador.", "error"); + } } \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index f21e408..2e046aa 100644 --- a/templates/index.html +++ b/templates/index.html @@ -119,6 +119,9 @@ +