vault backup: 2025-04-05 14:46:55
|
@ -16,5 +16,7 @@
|
|||
"obsidian-tasks-plugin",
|
||||
"obsidian-git",
|
||||
"copilot",
|
||||
"mathlive"
|
||||
"mathlive",
|
||||
"markitdown",
|
||||
"obsidian-importer"
|
||||
]
|
|
@ -15,5 +15,14 @@
|
|||
],
|
||||
"key": "Q"
|
||||
}
|
||||
],
|
||||
"copilot:copilot-search-orama-db": [
|
||||
{
|
||||
"modifiers": [
|
||||
"Alt",
|
||||
"Shift"
|
||||
],
|
||||
"key": "Q"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"pythonPath": "\"C:\\Users\\migue\\miniconda3\\envs\\markdown\\python.exe\"",
|
||||
"enablePlugins": false,
|
||||
"docintelEndpoint": "",
|
||||
"outputPath": ""
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "markitdown",
|
||||
"name": "Markitdown File Converter",
|
||||
"version": "1.0.2",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Convert PDFs, Office documents, images, and other file formats to Markdown using Microsoft's Markitdown tool",
|
||||
"author": "Ethan Troy",
|
||||
"authorUrl": "https://github.com/ethanolivertroy",
|
||||
"isDesktopOnly": true
|
||||
}
|
|
@ -0,0 +1,96 @@
|
|||
/*
|
||||
Styles for the Markitdown Obsidian plugin
|
||||
*/
|
||||
|
||||
/* Modal styles */
|
||||
.markitdown-modal input[type="file"] {
|
||||
width: 100%;
|
||||
padding: 8px;
|
||||
margin: 5px 0;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.markitdown-modal button {
|
||||
background-color: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
padding: 8px 16px;
|
||||
border-radius: 4px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.markitdown-modal button:hover {
|
||||
background-color: var(--interactive-accent-hover);
|
||||
}
|
||||
|
||||
.markitdown-modal button:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
/* Settings tab status container */
|
||||
.markitdown-status-container {
|
||||
background-color: var(--background-secondary);
|
||||
padding: 12px;
|
||||
border-radius: 6px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.markitdown-status-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.markitdown-status-icon {
|
||||
margin-right: 8px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.markitdown-status-icon.success {
|
||||
color: var(--interactive-success);
|
||||
}
|
||||
|
||||
.markitdown-status-icon.error {
|
||||
color: var(--text-error);
|
||||
}
|
||||
|
||||
/* File type checkbox grid */
|
||||
.markitdown-checkbox-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 8px;
|
||||
margin: 12px 0;
|
||||
}
|
||||
|
||||
.markitdown-checkbox-label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
/* Installation button */
|
||||
.markitdown-install-button {
|
||||
display: block;
|
||||
margin-top: 16px;
|
||||
background-color: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
padding: 8px 16px;
|
||||
border-radius: 4px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.markitdown-install-button:hover {
|
||||
background-color: var(--interactive-accent-hover);
|
||||
}
|
||||
|
||||
.markitdown-install-button:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-importer",
|
||||
"name": "Importer",
|
||||
"version": "1.6.19",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Import data from Notion, Evernote, Apple Notes, Microsoft OneNote, Google Keep, Bear, Roam, and HTML files.",
|
||||
"author": "Obsidian",
|
||||
"authorUrl": "https://obsidian.md",
|
||||
"isDesktopOnly": false
|
||||
}
|
|
@ -0,0 +1,87 @@
|
|||
.modal.mod-importer {
|
||||
max-height: var(--modal-height);
|
||||
padding: var(--size-4-4) 0 0 0;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.modal.mod-importer .modal-title {
|
||||
padding: 0 var(--size-4-4);
|
||||
}
|
||||
.modal.mod-importer .modal-content {
|
||||
overflow: auto;
|
||||
padding: var(--size-4-4);
|
||||
margin-bottom: calc(var(--input-height) + var(--size-4-8));
|
||||
border-top: var(--border-width) solid var(--background-modifier-border);
|
||||
}
|
||||
.modal.mod-importer .modal-button-container {
|
||||
margin: 0 0 0 calc(var(--size-4-4) * -1);
|
||||
padding: var(--size-4-4);
|
||||
gap: var(--size-4-2);
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
background-color: var(--background-primary);
|
||||
border-top: var(--border-width) solid var(--background-modifier-border);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.importer-progress-bar {
|
||||
width: 100%;
|
||||
height: 8px;
|
||||
background-color: var(--background-secondary);
|
||||
overflow: hidden;
|
||||
box-shadow: inset 0px 0px 0px 1px var(--background-modifier-border);
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
.importer-progress-bar-inner {
|
||||
width: 0;
|
||||
height: 100%;
|
||||
background-color: var(--interactive-accent);
|
||||
}
|
||||
|
||||
.importer-status {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
padding: var(--size-4-2) 0;
|
||||
}
|
||||
|
||||
.importer-stats-container {
|
||||
display: flex;
|
||||
justify-content: space-evenly;
|
||||
margin-top: var(--size-4-5);
|
||||
margin-bottom: var(--size-4-5);
|
||||
}
|
||||
|
||||
.importer-stat {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.importer-stat-count {
|
||||
font-size: var(--font-ui-large);
|
||||
}
|
||||
|
||||
.importer-log {
|
||||
overflow: auto;
|
||||
flex-grow: 1;
|
||||
font-family: var(--font-monospace);
|
||||
font-size: var(--font-ui-smaller);
|
||||
color: var(--text-muted);
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
padding: var(--size-4-4);
|
||||
background-color: var(--background-secondary);
|
||||
border-radius: var(--radius-s);
|
||||
max-height: 300px;
|
||||
user-select: text;
|
||||
}
|
||||
|
||||
.importer-log .list-item {
|
||||
display: inline-block;
|
||||
line-height: var(--line-height-normal);
|
||||
white-space: pre;
|
||||
margin: var(--size-2-1);
|
||||
}
|
||||
|
||||
.importer-error {
|
||||
color: var(--text-error);
|
||||
}
|
|
@ -24,10 +24,10 @@
|
|||
"showPreviousQueryResults": true,
|
||||
"simpleSearch": false,
|
||||
"tokenizeUrls": false,
|
||||
"fuzziness": "1",
|
||||
"weightBasename": 3,
|
||||
"weightDirectory": 2,
|
||||
"weightH1": 1.5,
|
||||
"fuzziness": "2",
|
||||
"weightBasename": 5,
|
||||
"weightDirectory": 3.5,
|
||||
"weightH1": 3.5,
|
||||
"weightH2": 1.3,
|
||||
"weightH3": 1.1,
|
||||
"weightUnmarkedTags": 1.1,
|
||||
|
|
|
@ -4,109 +4,20 @@
|
|||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "0d00cbfda05560f4",
|
||||
"id": "98b7207724e72bb7",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "a63c5a40742c1d13",
|
||||
"id": "8e9cd00e3f1b6144",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "01-Documentation/SIDEL/Master Filler/Master Filler - Notes.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"type": "empty",
|
||||
"state": {},
|
||||
"icon": "lucide-file",
|
||||
"title": "Master Filler - Notes"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "866e2b2b7e3c81e6",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos Visual Studio/Aplicaciones y Librerias.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "Aplicaciones y Librerias"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "c665e3b9ed860d0a",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/E5.007161 - Modifica O&U - SAE346 - Modified on PLC.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "E5.007161 - Modifica O&U - SAE346 - Modified on PLC"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "e14094a81778a8bf",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "01-Documentation/SIDEL/SIDEL - FLD.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "SIDEL - FLD"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "1f1bee6d92fe50e5",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "05-COMS/01 - T300881 - Nestle SudAfrica/T300881 - Notes.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "T300881 - Notes"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "7bf1188623139dd2",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "05-COMS/01 - T300881 - Nestle SudAfrica/T300881 - LINAK - Guides.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "T300881 - LINAK - Guides"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "6f4de4514b7c5b59",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "05-COMS/01 - T300881 - Nestle SudAfrica/T300881 - PAS4000 - PILz.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "T300881 - PAS4000 - PILz"
|
||||
"title": "New tab"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 6
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
|
@ -272,11 +183,11 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 4
|
||||
"currentTab": 6
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 477.5,
|
||||
"width": 369.5,
|
||||
"collapsed": true
|
||||
},
|
||||
"left-ribbon": {
|
||||
|
@ -296,56 +207,59 @@
|
|||
"publish:Publish changes...": false,
|
||||
"obsidian-excalidraw-plugin:New drawing": false,
|
||||
"obsidian-git:Open Git source control": false,
|
||||
"copilot:Open Copilot Chat": false
|
||||
"copilot:Open Copilot Chat": false,
|
||||
"markitdown:Convert to Markdown with Markitdown": false,
|
||||
"obsidian-importer:Open Importer": false
|
||||
}
|
||||
},
|
||||
"active": "6f4de4514b7c5b59",
|
||||
"active": "8e9cd00e3f1b6144",
|
||||
"lastOpenFiles": [
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/T300881 - Notes.md",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/T300881 - PAS4000 - PILz.md",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/adjuntos/Pasted image 20250329101837.png",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/adjuntos/Pasted image 20250329100104.png",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/adjuntos/Pasted image 20250329093003.png",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/adjuntos/Pasted image 20250329092938.png",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/T300881 - LINAK - Guides.md",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/Buffer Logic.md",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos Visual Studio/Aplicaciones y Librerias.md",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/E5.007161 - Modifica O&U - SAE346 - Modified on PLC.md",
|
||||
"TODY - Punti da vedere.md",
|
||||
"Palabras Tecnicas/Lista.md",
|
||||
"Temporales/NAT - Switch.md",
|
||||
"Temporales/Drawing 2024-10-13 20.08.30.excalidraw.md",
|
||||
"Excalidraw/Drawing 2025-01-27 16.50.21.excalidraw.md",
|
||||
"04-SIDEL/00 - MASTER/SIDEL - Mixer - Master - IO Tags.md",
|
||||
"cronologiaI-93040-3074-ALPLA-BG-open-points.md",
|
||||
"markitdown-output/adjuntos/TIA Portal Ethernet communication Rules V0.1.pdf",
|
||||
"HTML import/TIA Portal Ethernet communication Rules V0.1.md",
|
||||
"HTML import/Attachments/image051.jpg",
|
||||
"HTML import/Attachments/image047.jpg",
|
||||
"01-Documentation/SIDEL/MASTER/Communication/Untitled.md",
|
||||
"HTML import/Attachments/image154.gif",
|
||||
"HTML import/Attachments/image151.jpg",
|
||||
"HTML import/Attachments/image149.jpg",
|
||||
"HTML import/Attachments/image147.gif",
|
||||
"HTML import/Attachments/image145.gif",
|
||||
"HTML import/Attachments/image141.gif",
|
||||
"HTML import/Attachments/image138.gif",
|
||||
"HTML import/Attachments/image131.gif",
|
||||
"HTML import/Attachments",
|
||||
"HTML import",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/IO/IO - PLC - Software.md",
|
||||
"01-Documentation/SIDEL/MASTER/Communication/contenidoImportado.md",
|
||||
"01-Documentation/SIDEL/MASTER/Communication/adjuntos/temp_conversion.html",
|
||||
"01-Documentation/SIDEL/MASTER/Communication/adjuntos/header.htm",
|
||||
"01-Documentation/SIDEL/MASTER/Communication/adjuntos",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/COMM - FILLER - MIXER/Comm - Mixer - Filler.md",
|
||||
"01-Documentation/SIDEL/MASTER/Communication",
|
||||
"01-Documentation/SIDEL/MASTER",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/contenidoImportado.md",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/FDM RNF032 E5.007299.md",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/E5.007299 - Modifica O&U - RNF032 - NOTES.md",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/data.json",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/E5.007299 - RNF032 - FDM.md",
|
||||
"01-Documentation/SIDEL/SIDEL - FLD.md",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/E5.007161 - Modifica O&U - SAE346 - Notes.md",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/adjuntos/Pasted image 20250328160001.png",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/T300881 - IPs.md",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/T300881 - LINAK - Motor Setup.md",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos Visual Studio/Como usar PublicApiGenerator - Nuget - Documentator.md",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/adjuntos/Pasted image 20250327104037.png",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/adjuntos/Pasted image 20250327101403.png",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/adjuntos/Pasted image 20250327100219.png",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/adjuntos/Pasted image 20250327100057.png",
|
||||
"05-COMS/01 - T300881 - Nestle SudAfrica/adjuntos/Pasted image 20250327100008.png",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos Visual Studio/Notas para crear nuevas aplicaciones.md",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos Visual Studio/S7 Explorer/S7 Explorer - Csharp.md",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/Drawing 2025-03-26 13.28.27.excalidraw.md",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/adjuntos",
|
||||
"04-SIDEL/01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar/SAE463 - New Anton Paar - FDA.md",
|
||||
"04-SIDEL/01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar/SAE463 - New Anton Paar.md",
|
||||
"01-Documentation/B&R/B&R Software.md",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/Reporte",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346",
|
||||
"01-Documentation/B&R",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos Visual Studio/Librerias utiles cSharp.md",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos Visual Studio/NetDocsForLLM/NetDocsForLLM - Especifica base.md",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos Visual Studio/NetDocsForLLM",
|
||||
"01-Documentation/SIDEL/Master Filler/Master Filler - Notes.md",
|
||||
"01-Documentation/SIDEL/Master Filler/adjuntos",
|
||||
"01-Documentation/GIT/Notes - Git - Gitea.md",
|
||||
"01-Documentation/SIDEL/Master Filler",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Scripts List.md",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos en Python/Script para obtener las ultimas versiones.md",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos en Python/Group Scripts Manager.md",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos Visual Studio/ROI Editor/CtrEditor - Descripción de Funcionamiento.md",
|
||||
"07 - Desarrolo de Proyectos - Scripts - Visual Studio/Proyectos Visual Studio/S7 Explorer",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/Reporte/adjuntos",
|
||||
"04-SIDEL/00 - MASTER/Reporte",
|
||||
"04-SIDEL/00 - MASTER/Untitled.md",
|
||||
"markitdown-output/TIA Portal Ethernet communication Rules V0.1.md",
|
||||
"markitdown-output/1743758594713_TIA Portal Ethernet communication Rules V0.1.docx",
|
||||
"markitdown-output/Specifiche per implemetare com. Siemens V6.5-It.md",
|
||||
"01-Documentation/SIDEL/SIDEL - Passwords.md",
|
||||
"04-SIDEL/03 - 5.007382-EXMU01UF - RVU008 - EQPT24731/5.007382-EXMU01UF - RVU008 - EQPT24731 - Notes.md",
|
||||
"04-SIDEL/03 - 5.007382-EXMU01UF - RVU008 - EQPT24731/5.007382-EXMU01UF - RVU008 - EQPT24731 - Initial Data.md",
|
||||
"01-Documentation/SIEMENS & WINCC/PLC Siemens/TCON, TDISCON, TSEND, and TRCV (TCP communication) instructions.md",
|
||||
"04-SIDEL/00 - MASTER/SIDEL - Master - IPs.md",
|
||||
"01-Documentation/SIEMENS & WINCC/PLC Siemens/Communication TSEND_C - TRCV_C.md",
|
||||
"03-Revised/93789 Sipa Italia - Tinny - HSCounters - Piattaforma/Divider/Untitled.canvas",
|
||||
"04-InLavoro/9..... MASTER Transport/Standard Transport/FB500 Logic.canvas",
|
||||
"04-InLavoro/HENKEL/93040 - HENKEL - BowlingGreen/TL22-L25/Synoptic Change/Q3.canvas",
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
|
||||
### Create Repository
|
||||
***
|
||||
1. Open the working folder with File
|
||||
2. Ctr+Shit + P -> >Add Gitignore -> Select Python
|
||||
|
||||
|
||||
![[Pasted image 20250331130643.png]]
|
||||
|
||||
![[Pasted image 20250331130826.png]]
|
||||
|
||||
|
||||
* With stage you accept this files to be on the Git.
|
||||
* After this you can start to Commit versions
|
||||
|
||||
### Branch
|
||||
***
|
||||
|
||||
![[Pasted image 20250331131244.png]]
|
||||
|
||||
|
||||
* Type the name of the new Branch
|
||||
|
||||
The current branch will appear on the bottom-left
|
||||
|
||||
![[Pasted image 20250331131430.png]]
|
||||
|
||||
* The you can work on this branch, and make Commits
|
||||
|
||||
|
||||
* If wanted to merge this branch to ==main== follow this steps:
|
||||
* Commit last modification on the actual branch
|
||||
* Change branch to main
|
||||
* Select merge branch and select the branch from were to merge
|
||||
* After this the ==main== will have the last modifications. If the branch is not needed you can delete it.
|
||||
|
||||
|
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 21 KiB |
|
@ -2,3 +2,6 @@
|
|||
CPU with DI HF
|
||||
|
||||
![[Pasted image 20250325173142.png|800]]
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
|
||||
Equivalence comments table
|
||||
***
|
||||
|
||||
P1 = WATER PUMP = SOFTSTART = 160Q2:E10.0 = 160K4:E11.0
|
||||
P2 = SYRUP PUMP = 163Q2:E10.1 = 163K8:E11.1
|
||||
P3 = OVERPRESSURE PRODUCT PUMP = 166Q2:E10.2
|
||||
P6 = RECYCLE PUMP = 169Q2:E11.3 = 169K8:E11.3
|
||||
|
||||
___K_ : COMMAND RELAY - FEEDBACK SIGNAL
|
||||
___Q_ : TERMIC OVERLOAD SIGNAL
|
||||
|
||||
301 : WATER PUMP = P1
|
||||
302 : SYRUP = P2
|
||||
303 : PRODUCT = P3
|
||||
306 : RECIRCULATING = P6
|
|
@ -0,0 +1,33 @@
|
|||
|
||||
![[Pasted image 20250401162127.png]]
|
||||
|
||||
## Windows PC
|
||||
***
|
||||
administrator : 9-3urKW*
|
||||
sidel : _Ymk47h2&M
|
||||
Customer: sidel
|
||||
|
||||
|
||||
## ULTRA VNC
|
||||
***
|
||||
* Ultra VNC : r@c2PS
|
||||
|
||||
Oppure
|
||||
|
||||
* Ultra VNC : sysop
|
||||
|
||||
## SAFETY
|
||||
***
|
||||
### Filler:
|
||||
|
||||
Per Carica il SAFETY : **9991**
|
||||
|
||||
Scrittura:
|
||||
SAFETY Filler Utilizzata per RVE045 e REV128
|
||||
### ==safeuro1==
|
||||
|
||||
|
||||
|
||||
![[Pasted image 20250401162219.png]]
|
||||
|
||||
Password Maintenance 4685
|
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 67 KiB |
|
@ -0,0 +1,20 @@
|
|||
|
||||
|
||||
### Notes on comissioning:
|
||||
***
|
||||
On profibus the configuration if the configuration is not exact the node is not online. Need to check that all cards are correctly assigned and connected.
|
||||
|
||||
|
||||
### Profibus Address:
|
||||
***
|
||||
![[Pasted image 20250331100137.png]]
|
||||
|
||||
|
||||
### Leds
|
||||
***
|
||||
![[Pasted image 20250331100123.png]]
|
||||
|
||||
|
||||
### LEDs faults
|
||||
***
|
||||
![[Pasted image 20250331100112.png]]
|
|
@ -0,0 +1,23 @@
|
|||
|
||||
```pascal
|
||||
|
||||
IF "CLK_0.2S" THEN
|
||||
FOR #t := 0 TO 3 DO
|
||||
IF "DBTEST".Count[#t] >= 128 THEN
|
||||
"DBTEST".Count[#t + 1] := 1;
|
||||
END_IF;
|
||||
"DBTEST".Count[#t] := "DBTEST".Count[#t] * 2;
|
||||
|
||||
END_FOR;
|
||||
|
||||
IF "DBTEST".Count[0] + "DBTEST".Count[1] + "DBTEST".Count[2] + "DBTEST".Count[3] = 0 THEN
|
||||
"DBTEST".Count[0] := 1;
|
||||
END_IF;
|
||||
END_IF;
|
||||
|
||||
"AB5" := "DBTEST".Count[0];
|
||||
"Tag_2" := "DBTEST".Count[1];
|
||||
"Tag_3" := "DBTEST".Count[2];
|
||||
"Tag_4" := "DBTEST".Count[3];
|
||||
|
||||
```
|
|
@ -0,0 +1,232 @@
|
|||
|
||||
# SIMATIC S7 S7-1200 Programmable controller
|
||||
|
||||
https://support.industry.siemens.com/cs/mdm/109759862?c=89820793099&lc=en-KZ
|
||||
|
||||
==VIDEO:==
|
||||
https://support.industry.siemens.com/cs/document/109486139/how-you-configure-a-connection-in-the-tia-portal-?dti=0&dl=en&lc=nl-BE
|
||||
|
||||
![[Pasted image 20250403170349.png|750]]
|
||||
|
||||
|
||||
| | | | | |
|
||||
|---|---|---|---|---|
|
||||
|Document:|S7-1200 Programmable controller (V4.2.3, 08/2018, English)||||
|
||||
|Type of topic:|Fact|
|
||||
|
||||
|
||||
|
||||
TCON, TDISCON, TSEND, and TRCV (TCP communication) instructions
|
||||
|
||||
|
||||
|
||||
#### Ethernet communication using TCP and ISO on TCP protocols
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
||---<br><br>**Note**<br><br>#### TSEND_C and TRCV_C instructions<br><br>To help simplify the programming of PROFINET/Ethernet communication, the TSEND_C instruction and the TRCV_C instruction combine the functionality of the TCON, TDISCON. TSEND and TRCV instructions:<br><br>- TSEND_C combines the TCON, TDISCON and TSEND instructions.<br> <br>- TRCV_C combines the TCON, TDISCON and TRCV instructions.<br> <br><br>---|
|
||||
|
||||
|
||||
|
||||
The following instructions control the communication process:
|
||||
|
||||
- TCON establishes the TCP/IP connection between the client and server (CPU) PC.
|
||||
- TSEND and TRCV send and receive data.
|
||||
- TDISCON breaks the connection.
|
||||
|
||||
The minimum size of data that you can transmit (TSEND) or receive (TRCV) is one byte; the maximum size is 8192 bytes. TSEND does not support the transmission of data from Boolean locations, and TRCV will not receive data into Boolean locations. For information transferring data with these instructions, see the section on [data consistency](https://support.industry.siemens.com/cs/mdm/109759862?c=65872045195&lc=en-kz&dl=en).
|
||||
|
||||
TCON, TDISCON, TSEND, and TRCV operate asynchronously, which means that the job processing extends over multiple instruction executions. For example, you start a job for setting up and establishing a connection by executing an instruction TCON with parameter REQ = 1. Then you use additional TCON executions to monitor the job progress and test for job completion with parameter DONE.
|
||||
|
||||
The following table shows the relationships between BUSY, DONE, and ERROR. Use the table to determine the current job status:
|
||||
|
||||
Table: Interactions between the BUSY, DONE, and ERROR parameters
|
||||
|
||||
| | | | |
|
||||
|---|---|---|---|
|
||||
|BUSY|DONE|ERROR|Description|
|
||||
|1|0|0|The job is being processed.|
|
||||
|0|1|0|The job successfully completed.|
|
||||
|0|0|1|The job ended with an error. The cause of the error is output at the STATUS parameter.|
|
||||
|0|0|0|No new job assigned.|
|
||||
|
||||
#### TCON and TDISCON
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
||---<br><br>**Note**<br><br>#### Initializing the communication parameters<br><br>After you insert the TCON instruction, use the "Properties" [of the instruction](https://support.industry.siemens.com/cs/mdm/109759862?c=86819412235&lc=en-kz&dl=en) to configure the [communication parameters](https://support.industry.siemens.com/cs/mdm/109759862?c=83326252299&lc=en-kz&dl=en). As you enter the parameters for the communication partners in the inspector window, STEP 7 enters the corresponding data in the instance DB for the instruction.<br><br>If you want to use a multi-instance DB, you must manually configure the DB on both CPUs.<br><br>---|
|
||||
|
||||
|
||||
|
||||
Table: TCON and TDISCON instructions
|
||||
|
||||
| | | |
|
||||
|---|---|---|
|
||||
|LAD / FBD||Description|
|
||||
|[](https://support.industry.siemens.com/dokumentation/image.aspx?docVersionId=114575606411&imageName=14772022155_DV_resource.Stream%2540PNG-en-US.png&Language=en-US)|"TCON_DB"( req:=_bool_in_, ID:=_undef_in_, done=>_bool_out_, busy=>_bool_out_, error=>_bool_out_, status=>_word_out_, connect:=_struct_inout_);|TCP and ISO on TCP: TCON initiates a communications connection from the CPU to a communication partner.|
|
||||
|[](https://support.industry.siemens.com/dokumentation/image.aspx?docVersionId=114575606411&imageName=14772064011_DV_resource.Stream%2540PNG-en-US.png&Language=en-US)|"TDISCON_DB"( req:=_bool_in_, ID:=_word_in_, done=>_bool_out_, busy=>_bool_out_, error=>_bool_out_, status=>_word_out_);|TCP and ISO on TCP: TDISCON terminates a communications connection from the CPU to a communication partner.|
|
||||
|
||||
1 STEP 7 automatically creates the DB when you insert the instruction.
|
||||
|
||||
|
||||
|
||||
Table: Data types for the parameters of TCON and TDISCON
|
||||
|
||||
| | | | |
|
||||
|---|---|---|---|
|
||||
|Parameter|Declaration|Data type|Description|
|
||||
|REQ|IN|Bool|Starts the job to establish the connection specified in the ID upon a rising edge.|
|
||||
|ID|IN|CONN_OUC (Word)|Reference to the assigned connection.<br><br>Range of values: W#16#0001 to W#16#0FFF|
|
||||
|CONNECT<br><br>(TCON)|IN_OUT|VARIANT|Pointer to the connection description<br><br>- For TCP or UDP, use the structure TCON_IP_v4<br> <br> For further information on TCON_IP_v4, refer to: ["Parameters for the PROFINET connection"](https://support.industry.siemens.com/cs/mdm/109759862?c=83326252299&lc=en-kz&dl=en).<br> <br>- For ISO-on-TCP, use the structure TCON_IP_RFC<br> <br> For further information on TCON_IP_RFC, refer to: ["Parameters for the PROFINET connection"](https://support.industry.siemens.com/cs/mdm/109759862?c=83326252299&lc=en-kz&dl=en).|
|
||||
|DONE|OUT|Bool|Status parameter with the following values:<br><br>- 0: Job not yet started or still in progress<br>- 1: Job executed without errors|
|
||||
|BUSY|OUT|Bool|Status parameter with the following values:<br><br>- 0: Job not yet started or already completed<br>- 1: Job not yet completed. A new job cannot be started|
|
||||
|ERROR|OUT|Bool|Status parameter ERROR:<br><br>- 0: No error<br>- 1: Error occurred|
|
||||
|STATUS|OUT|Word|Status of the instruction|
|
||||
|
||||
Both communication partners execute the TCON instruction to set up and establish the communication connection. You use parameters to specify the active and passive communication end point partners. After the connection is set up and established, it is automatically maintained and monitored by the CPU.
|
||||
|
||||
If the connection is terminated due to a line break or due to the remote communications partner, for example, the active partner attempts to re-establish the configured connection. You do not have to execute TCON again.
|
||||
|
||||
An existing connection is terminated and the set-up connection is removed when the TDISCON instruction is executed or when the CPU has gone into STOP mode. To set up and re-establish the connection, you must execute TCON again.
|
||||
|
||||
Table: ERROR and STATUS condition codes for TCON and TDISCON
|
||||
|
||||
| | | |
|
||||
| ----- | ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| ERROR | STATUS (W#16#...) | Explanation |
|
||||
| 0 | 0000 | Connection successfully established. |
|
||||
| 0 | 7000 | No job processing active |
|
||||
| 0 | 7001 | Start job execution; establish connection (TCON) or terminate connection (TDISCON). |
|
||||
| 0 | 7002 | Connection is being established (REQ irrelevant); establish connection (TCON) or terminate connection (TDISCON). |
|
||||
| 1 | 8085 | TCON: Connection ID is already in use. |
|
||||
| 1 | 8086 | TCON: The ID parameter is outside the valid range. |
|
||||
| 1 | 8087 | TCON: Maximum number of connections reached; no additional connection possible |
|
||||
| 1 | 8089 | TCON: The CONNECT parameter does not point to a connection description or the connection description was created manually. |
|
||||
| 1 | 809A | TCON: The structure at the CONNECT parameter is not supported or the length is invalid. |
|
||||
| 1 | 809B | TCON: The ID of the local device in the connection description does not correspond to the CPU or the CP, or it is "0". |
|
||||
| 1 | 80A0 | Group error for error codes W#16#80A1 and W#16#80A2. |
|
||||
| 1 | 80A1 | TCON: For TCP/UDP (TCON_IP_v4): Connection or port is already in use. |
|
||||
| 1 | 80A2 | TCON: Local or remote port is being used by the system. |
|
||||
| 1 | 80A3 | TCON: Value at the ID parameter is already being used by a connection (TCON) that was created using the user program. The connection uses the identical ID, but different connection settings at the parameter CONNECT. |
|
||||
| 1 | 80A4 | TCON: IP address of the remote endpoint of the connection is invalid or it corresponds to the IP address of the local partner. |
|
||||
| 1 | 80A5 | TCON: Connection ID is already in use. |
|
||||
| 1 | 80A7 | TCON: Communication error: You executed "TDISCON" before "TCON" had completed. |
|
||||
| 1 | 80B2 | TCON: The CONNECT parameter points to a data block that was generated with the attribute "Only store in load memory". |
|
||||
| 1 | 80B3 | Inconsistent parameter assignment: Group error for error codes W#16#80A0 to W#16#80A2, W#16#80A4, W#16#80B4 to W#16#80B9. |
|
||||
| 1 | 80B4 | TCON: Only with TCON_IP_RFC The local T selector was not specified or the first byte does not contain the value 0x0E or the local T selector starts with "SIMATIC-". |
|
||||
| 1 | 80B5 | TCON: Only passive connection establishment is permitted for connection type 13 = UDP (Parameter active_est of the structure TCON_IP_v4 has the value TRUE).. |
|
||||
| 1 | 80B6 | TCON: Parameter assignment error in the connection_type parameter of the data block for connection description.<br><br>- Only valid with TCON_IP_v4: 0x11, 0x0B and 0x13.<br>- Only valid with TCON_IP_RFC: 0x0C and 0x12 |
|
||||
| 1 | 80B7 | TCON: With TCON_IP_v4:<br><br>- TCP (active connection establishment): Remote port is "0".<br>- TCP (passive connection establishment): Local port is "0".<br>- UDP: Local port is "0".<br><br>TCON: With TCON_IP_RFC:<br><br>- Local (local_tselector) or remote (remote_tselector) T selector was specified with a length of more than 32 bytes.<br>- For TSelLength of the T selector (local or remote), a length greater than 32 was entered.<br>- Error in the length of the IP address of the specific connection partner. |
|
||||
| 1 | 80B8 | TCON: Parameter ID in the local connection description (structure at parameter CONNECT) and parameter ID of the instruction are different. |
|
||||
| 1 | 80C3 | TCON: All [connection](https://support.industry.siemens.com/cs/mdm/109759862?c=89820232331&lc=en-kz&dl=en) resources are in use. |
|
||||
| 1 | 80C4 | Temporary communication error:<br><br>- The connection cannot be established at this time (TCON).<br>- The interface is currently receiving new parameters (TCON and TDISCON).<br>- The configured connection is currently being removed by a "TDISCON" instruction (TCON). |
|
||||
| 1 | 80C5 | TCON: The remote partner refuses to establish the connection, has terminated the connection or actively ended it. |
|
||||
| 1 | 80C6 | TCON: The remote partner cannot be reached (network error). |
|
||||
| 1 | 80C7 | TCON: Execution timeout. |
|
||||
| 1 | 80C8 | TCON: ID is used by a connection created by the user program, which uses the same connection description at the CONNECT parameter. |
|
||||
| 1 | 80C9 | TCON: Validation of the remote partner failed. The remote partner that wants to establish the connection does not match the defined partner of the structure at the CONNECT parameter. |
|
||||
| 1 | 80CE | TCON: The IP address of the local interface is 0.0.0.0. |
|
||||
|
||||
#### TSEND and TRCV
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
||---<br><br>**Note**<br><br>When using PROFINET Open User communication, if you execute a TSEND instruction without a corresponding TRCV instruction executing on the remote device, then the TSEND instruction may reside indefinitely in a "Busy State", waiting for the TRCV instruction to receive the data. In this state, the TSEND instruction "Busy" output is set, and the "Status" output has a value of "0x7002". This condition may occur if you are transferring more than 4096 bytes of data. The issue is resolved at the next execution of the TRCV instruction.<br><br>---|
|
||||
|
||||
|
||||
|
||||
Table: TSEND and TRCV instructions
|
||||
|
||||
| | | |
|
||||
|---|---|---|
|
||||
|LAD / FBD|SCL|Description|
|
||||
|[](https://support.industry.siemens.com/dokumentation/image.aspx?docVersionId=114575606411&imageName=53306541323_DV_resource.Stream%2540PNG-en-US.png&Language=en-US)|"TSEND_DB"( req:=_bool_in_, ID:=_word_in_, len:=_udint_in_, done=>_bool_out_, busy=>_bool_out_, error=>_bool_out_, status=>_word_out_, data:=_variant_inout_);|TCP and ISO on TCP: TSEND sends data through a communication connection from the CPU to a partner station.|
|
||||
|[](https://support.industry.siemens.com/dokumentation/image.aspx?docVersionId=114575606411&imageName=53306537099_DV_resource.Stream%2540PNG-en-US.png&Language=en-US)|"TRCV_DB"( en_r:=_bool_in_, ID:=_word_in_, len:=_udint_in_, adhoc:=_bool_in_, ndr=>_bool_out_, busy=>_bool_out_, error=>_bool_out_, status=>_word_out_, rcvd_len=>_udint_out_, data:=_variant_inout_);|TCP and ISO on TCP: TRCV receives data through a communication connection from a partner station to the CPU.|
|
||||
|
||||
1 STEP 7 automatically creates the DB when you insert the instruction.
|
||||
|
||||
|
||||
|
||||
Table: Data types for the parameters of TSEND and TRCV
|
||||
|
||||
| | | | |
|
||||
|---|---|---|---|
|
||||
|Parameter and type| |Data type|Description|
|
||||
|REQ|IN|Bool|TSEND: Starts the send job on a rising edge. The data is transferred from the area specified by DATA and LEN.|
|
||||
|EN_R|IN|Bool|TRCV: Enables the CPU to receive; with EN_R = 1, the TRCV is ready to receive. The receive job is processed.|
|
||||
|ID|IN|CONN_OUC (Word)|Reference to the associated connection. ID must be identical to the associated parameter ID in the local connection description.<br><br>Value range: W#16#0001 to W#16#0FFF|
|
||||
|LEN|IN|UDInt|Maximum number of bytes to be sent (TSEND) or received (TRCV):<br><br>- Default = 0: The DATA parameter determines the length of the data to be sent (TSEND) or received (TRCV).<br>- Ad hoc mode = 65535: A variable length of data is set for reception (TRCV).|
|
||||
|ADHOC|IN|Bool|TRCV: Optional parameter (hidden)<br><br>Ad hoc mode request for connection type TCP.|
|
||||
|DATA|IN_OUT|Variant|Pointer to send (TSEND) or receive (TRCV) data area; data area contains the address and length. The address refers to I memory, Q memory, M memory, or a DB.|
|
||||
|DONE|OUT|Bool|TSEND:<br><br>- 0: Job not yet started or still running.<br>- 1: Job executed without error.|
|
||||
|NDR|OUT|Bool|TRCV:<br><br>- NDR = 0: Job not yet started or still running.<br>- NDR = 1: Job successfully completed.|
|
||||
|BUSY|OUT|Bool|- BUSY = 1: The job is not yet complete. A new job cannot be triggered.<br>- BUSY = 0: Job is complete.|
|
||||
|ERROR|OUT|Bool|ERROR = 1: Error occurred during processing. STATUS provides detailed information on the type of error|
|
||||
|STATUS|OUT|Word|Status information including error information. (Refer to the Error and Status condition codes in the table below.)|
|
||||
|RCVD_LEN|OUT|UDInt|TRCV: Amount of data actually received in bytes|
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
||---<br><br>**Note**<br><br>The TSEND instruction requires a low-to-high transition at the REQ input parameter to start a send job. The BUSY parameter is then set to 1 during processing. Completion of the send job is indicated by either the DONE or ERROR parameters being set to 1 for one scan. During this time, any low-to-high transition at the REQ input parameter is ignored.<br><br>---|
|
||||
|
||||
|
||||
|
||||
#### TRCV Operations
|
||||
|
||||
The TRCV instruction writes the received data to a receive area that is specified by the following two variables:
|
||||
|
||||
- Pointer to the start of the area
|
||||
- Length of the area or the value supplied at the LEN input if not 0
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
||---<br><br>**Note**<br><br>The default setting of the LEN parameter (LEN = 0) uses the DATA parameter to determine the length of the data being transmitted. It is recommended that the data transmitted by the TSEND instruction be the same size as the DATA parameter of the TRCV instruction.<br><br>If using the default setting of the LEN parameter and it is necessary to send the data in segments smaller than the DATA parameter size, the following applies. It is recommended to keep the EN_R bit high until the corresponding TSEND transfers the appropriate amount of data to fill the TRCV DATA parameter. If the size of the data transmitted from TSEND does not equal the TRCV DATA parameter size, TRCV remains in a busy status (status code: 7002) while the EN_R bit is high until the overall size of the data transmitted from TSEND equals the TRCV DATA parameter size. If the EN_R bit of TRCV is pulsed, it needs to be pulsed the same number of times as TSEND is executed to receive the data.<br><br>The TRCV DATA parameter buffer does not display the new data received until the data size equals the DATA parameter buffer size.<br><br>---|
|
||||
|
||||
|
||||
|
||||
|
||||
As soon as all the job data has been received, TRCV transfers it to the receive area and sets NDR to 1.
|
||||
|
||||
Table: Entering the data into the receive area
|
||||
|
||||
| | | | | |
|
||||
|---|---|---|---|---|
|
||||
|Protocol variant|Entering the data
in the receive area|Parameter
"connection_type"|Value of the LEN parameter|Value of the RCVD_LEN parameter (bytes)|
|
||||
|TCP|Ad hoc mode|B#16#11|Selected with the TRCV instruction ADHOC input|1 to 1472|
|
||||
|TCP|Data reception with specified length|B#16#11|0 (recommended) or 1 to 8192, except 65535|1 to 8192|
|
||||
|ISO on TCP|Ad hoc mode|B#16#12|65535|1 to 1472|
|
||||
|ISO on TCP|protocol-controlled|B#16#12|0 (recommended) or 1 to 8192, except 65535|1 to 8192|
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
||---<br><br>**Note**<br><br>#### Ad hoc mode<br><br>The "ad hoc mode" exists with the TCP and ISO on TCP protocol variants. To configure the TRCV instruction for ad hoc mode, set the ADHOC instruction input parameter. The receive area is identical to the area formed by DATA. The length of the received data will be output to the parameter RCVD_LEN. Immediately after receiving a block of data, TRCV enters the data in the receive area and sets NDR to 1.<br><br>If you store the data in an "optimized" DB (symbolic only), you can receive data only in arrays of Byte, Char, USInt, and SInt data types.<br><br>---|
|
||||
|
||||
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
||---<br><br>**Note**<br><br>#### Importing of S7-300/400 STEP 7 projects containing "ad hoc mode" into the S7-1200<br><br>In S7-300/400 STEP 7 projects, "ad hoc mode" is selected by assigning "0" to the LEN parameter. In the S7-1200, you configure the TRCV instruction for ad hoc mode by setting the ADHOC instruction input parameter.<br><br>If you import an S7-300/400 STEP 7 project containing "ad hoc mode" into the S7-1200, you must change the LEN parameter to "65535".<br><br>---|
|
||||
|
||||
|
||||
|
||||
Table: ERROR and STATUS condition codes for TSEND and TRCV
|
||||
|
||||
| | | |
|
||||
|---|---|---|
|
||||
|ERROR|STATUS|Description|
|
||||
|0|0000|- Send job completed without error (TSEND)<br>- New data accepted: The current length of the received data is shown in RCVD_LEN (TRCV).|
|
||||
|0|7000|- No job processing active (TSEND)<br>- Block not ready to receive (TRCV)|
|
||||
|0|7001|- Start of job processing, data being sent: During this processing the operating system accesses the data in the DATA send area (TSEND).<br>- Block is ready to receive, receive job was activated (TRCV).|
|
||||
|0|7002|- Follow-on instruction execution (REQ irrelevant), job being processed: The operating system accesses the data in the DATA send area during this processing (TSEND).<br>- Follow-on instruction execution, receive job being processed: Data is written to the receive area during this processing. For this reason, an error could result in inconsistent data in the receive area (TRCV).|
|
||||
|1|8085|- LEN parameter is greater than the largest permitted value (TSEND) and (TRCV).<br>- LEN or DATA parameter changed since the first instruction execution (TRCV).|
|
||||
|1|8086|The ID parameter is not in the permitted address range.|
|
||||
|1|8088|The LEN parameter is larger than the memory area specified in DATA.|
|
||||
|1|80A1|Communications error:<br><br>- The specified connection has not yet established (TSEND and TRCV).<br>- The specified connection is currently being terminated. Transmission or a receive job over this connection is not possible (TSEND and TRCV).<br>- The interface is being reinitialized (TSEND).<br>- The interface is receiving new parameters (TRCV).|
|
||||
|1|80C3|Internal lack of [connection](https://support.industry.siemens.com/cs/mdm/109759862?c=89820232331&lc=en-kz&dl=en) resources: A block with this ID is already being processed in a different priority class.|
|
||||
|1|80C4|Temporary communications error:<br><br>- The connection to the communications partner cannot be established at this time.<br>- The interface is receiving new parameter settings, or the connection is currently being established.|
|
||||
|
||||
#### Connection Ethernet protocols
|
||||
|
||||
Every CPU has an integrated PROFINET port, which supports standard PROFINET communications. The TSEND_C, TRCV_C, TSEND and TRCV instructions all support the TCP and ISO on TCP Ethernet protocols.
|
||||
|
||||
Refer to "Device Configuration: [Configuring the Local/Partner connection path](https://support.industry.siemens.com/cs/mdm/109759862?c=86819412235&lc=en-kz&dl=en)" for more information.
|
After Width: | Height: | Size: 106 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 65 KiB |
|
@ -0,0 +1,28 @@
|
|||
***
|
||||
|
||||
Rev. 0.1
|
||||
|
||||
Gestione Ordini e Backups tra SIDEL e TEKNORS
|
||||
|
||||
![[Pasted image 20250402162556.png]]
|
||||
|
||||
![[Pasted image 20250402162539.png]]
|
||||
|
||||
https://u.pcloud.link/publink/show?code=kZ0YbGVZfYOWcrHotzbr0wOoopeht0qJ9Y4V
|
||||
|
||||
#### Pcloud
|
||||
***
|
||||
1. Info Ordini
|
||||
SIDEL Carica le Informazioni e Documentazione dell’ordine assegnato nella carpetta **1-Info Ordini**
|
||||
2. Work in Progress
|
||||
TEKNORS **Sposta** la carpetta dell’ordine in lavorazione nella carpetta -> **2-Work in Progress**
|
||||
3. Per Sidel
|
||||
A progetto terminato TEKNORS **sposta** la carpetta del progetto da **2-Work in Progress** a **3-Per Sidel**
|
||||
4. Archiviati\Anno
|
||||
La carpetta copiata in **3-Per Sidel** deve essere copiata anche in **4-Archiviati>202x**
|
||||
5. In Avviamento
|
||||
Cartella da utilizzare per gli ordini in avviamento
|
||||
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 10 KiB |
|
@ -1,3 +1,5 @@
|
|||
***
|
||||
|
||||
|
||||
This script works with a DB like this:
|
||||
|
||||
|
@ -11,3 +13,212 @@ Use the XML file Exported from :
|
|||
|
||||
Then drag an drop in offline the DB to export on the Workspace area
|
||||
|
||||
|
||||
![[Pasted image 20250401210005.png|800]]
|
||||
Export the DB5100 to XML file
|
||||
|
||||
![[Pasted image 20250401210056.png]]
|
||||
|
||||
On the Excel Import the XML ==if needed==.
|
||||
|
||||
![[Pasted image 20250401210147.png|800]]
|
||||
|
||||
![[Pasted image 20250401210230.png|800]]
|
||||
|
||||
Next, use Excel to categorize each Alarm into Sections and hide any unused Alarms.
|
||||
|
||||
After editing the DB in Excel, export it back to the DB using the same XML file you used for importing. Always use the XML file generated by Tia Portal for exporting, as the Excel script requires its header to create the final file.
|
||||
|
||||
![[Pasted image 20250401210439.png|800]]
|
||||
|
||||
After this go to Tia Portal and Import the xml file
|
||||
|
||||
![[Pasted image 20250401210828.png]]
|
||||
|
||||
After this, the DB will only contain visible Alarms and will have every section configured.
|
||||
|
||||
|
||||
|
||||
* Set X on Hidden: will add X to every hidden row in the Excel sheet.
|
||||
* Restore Hidden: will hide all rows with an X in the Hidden column.
|
||||
* Unhide All: Will unhide all rows.
|
||||
* Import: will decode the XML file into the Excel sheet.
|
||||
* Export: The latest XML file exported from Tia Portal will be used to recreate the DB based on the current Excel sheet configuration.
|
||||
|
||||
***
|
||||
|
||||
# Tia Portal Alarm Management Tool Documentation - DB5100
|
||||
|
||||
## Overview
|
||||
|
||||
This Excel-based tool facilitates the management of alarms in Siemens TIA Portal projects by allowing users to:
|
||||
|
||||
- Import alarm configurations from TIA Portal XML exports
|
||||
- Modify alarm properties, comments, and section assignments
|
||||
- Export modified configurations back to TIA Portal
|
||||
- Generate alarm mapping files for SIPA supervision systems
|
||||
|
||||
The tool simplifies alarm management through a user-friendly Excel interface rather than working directly within TIA Portal.
|
||||
|
||||
## Main Workflow
|
||||
|
||||
1. Export the DB5100 (Alarm Database) from TIA Portal as XML
|
||||
2. Import the XML into this Excel tool
|
||||
3. Modify alarm properties, comments, and section assignments
|
||||
4. Hide unwanted alarms (rather than deleting them)
|
||||
5. Export the modified configuration back to XML
|
||||
6. Import the XML back into TIA Portal
|
||||
7. Optionally generate a SIPA supervision system export file
|
||||
|
||||
## Button Functions
|
||||
|
||||
### Import
|
||||
|
||||
![[Pasted image 20250401212140.png]]
|
||||
|
||||
**Function**: `ImportSiemensXML()`
|
||||
|
||||
This button imports alarm data from a Siemens TIA Portal XML file into the Excel sheet:
|
||||
|
||||
1. Prompts user to select an XML file
|
||||
2. Validates the file (checks for expiration date)
|
||||
3. Reads alarm configurations from the XML structure
|
||||
4. Populates the Excel sheet with:
|
||||
- Alarm numbers
|
||||
- DB addresses (DB, Byte, Bit)
|
||||
- Priority settings
|
||||
- Section assignments
|
||||
- Alarm descriptions
|
||||
5. Preserves existing row states (hidden/visible)
|
||||
|
||||
**Notes**:
|
||||
|
||||
- The import preserves existing configuration where possible
|
||||
- Alarms with value "0" are automatically hidden
|
||||
- Alarm sections are displayed as "X" marks in the appropriate columns
|
||||
|
||||
### Export
|
||||
|
||||
![[Pasted image 20250401212212.png]]
|
||||
**Function**: `ExportSiemensXML()`
|
||||
|
||||
This button exports the current Excel sheet data back to a Siemens XML file:
|
||||
|
||||
1. Prompts user to select the target XML file (typically the original import file)
|
||||
2. Validates input data (checks for duplicate alarm numbers)
|
||||
3. Updates XML structures with modified values from Excel:
|
||||
- Reads only visible rows (hidden rows are excluded from export)
|
||||
- Updates alarm sections, priorities, and other properties
|
||||
- Preserves alarm descriptions
|
||||
4. Saves the modified XML file for import into TIA Portal
|
||||
|
||||
**Notes**:
|
||||
|
||||
- Only visible rows are included in the export
|
||||
- The tool maintains the XML structure required by TIA Portal
|
||||
- The export correctly handles special data types (Bool, Byte, Int)
|
||||
|
||||
### Set X on Hidden
|
||||
|
||||
![[Pasted image 20250401212236.png]]
|
||||
**Function**: `MarcarFilasOcultas()`
|
||||
|
||||
This button marks all currently hidden rows with an "X" in the Hidden column (column 17):
|
||||
|
||||
1. Scans all rows in the sheet
|
||||
2. If a row is hidden, places an "X" in column 17
|
||||
3. If a row is visible, clears column 17
|
||||
|
||||
**Purpose**: This function allows you to "remember" which rows are hidden so you can restore this state later.
|
||||
|
||||
### Restore Hidden
|
||||
|
||||
![[Pasted image 20250401212251.png]]
|
||||
**Function**: `OcultarFilasSegunMarca()`
|
||||
|
||||
This button hides all rows that have an "X" in the Hidden column (column 17):
|
||||
|
||||
1. Makes all rows visible first
|
||||
2. Scans column 17 for all rows
|
||||
3. If an "X" is found, hides that row
|
||||
4. Displays a progress bar during processing
|
||||
5. Reports the number of rows hidden when complete
|
||||
|
||||
**Purpose**: Restores a previously saved hidden/visible state.
|
||||
|
||||
### Unhide All
|
||||
|
||||
![[Pasted image 20250401212305.png]]
|
||||
**Function**: `MostrarTodasLasFilas()`
|
||||
|
||||
This button makes all rows in the worksheet visible:
|
||||
|
||||
1. Simply removes the hidden state from all rows
|
||||
2. No other changes are made to the data
|
||||
|
||||
**Purpose**: Shows all alarms, including those previously hidden.
|
||||
|
||||
### Export to SIPA
|
||||
|
||||
![[Pasted image 20250401212322.png]]
|
||||
**Function**: `Exportar_A_SIPA()`
|
||||
|
||||
This button exports alarm data to a format compatible with SIPA supervision systems:
|
||||
|
||||
1. Validates input data (checks for duplicate alarm numbers)
|
||||
2. Transfers data to the "Per Supervisore SIPA" worksheet:
|
||||
- Reformats alarm/warning indicators
|
||||
- Creates appropriate tag names from DB/Byte/Bit values
|
||||
- Combines section assignments into a comma-separated list
|
||||
- Transfers priorities and descriptions
|
||||
- Indicates used/unused alarms
|
||||
3. Offers to save the SIPA worksheet as a separate Excel file
|
||||
4. Provides confirmation when complete
|
||||
|
||||
**Notes**:
|
||||
|
||||
- Only visible rows are included in the SIPA export
|
||||
- The "Per Supervisore SIPA" worksheet must exist
|
||||
- The export uses color-coding: blue for warnings, red for alarms
|
||||
|
||||
This button will generate a file based on the current state of the Excel Sheet definition.
|
||||
|
||||
![[Pasted image 20250401211017.png|800]]
|
||||
|
||||
## Data Structure
|
||||
|
||||
### Excel Sheet Layout
|
||||
|
||||
The main Excel sheet has the following column structure:
|
||||
|
||||
|Column|Content|Description|
|
||||
|---|---|---|
|
||||
|B|Alarm Number|Unique identifier for each alarm|
|
||||
|C|DB|Data Block number|
|
||||
|D|Byte|Byte address within DB|
|
||||
|E|Bit|Bit address within Byte|
|
||||
|F|Priority|Alarm priority level|
|
||||
|G-K|Section.1-5|"X" indicates alarm belongs to this section|
|
||||
|L|Value|Value status|
|
||||
|M|Disable|"X" indicates alarm is disabled|
|
||||
|N|Is Warning|"X" indicates this is a warning (not alarm)|
|
||||
|O|Ons|On/off status|
|
||||
|P|Description|Alarm text description|
|
||||
|Q|Hidden|Used by the tool to track hidden rows|
|
||||
|
||||
### SIPA Export Format
|
||||
|
||||
The "Per Supervisore SIPA" sheet has the following structure:
|
||||
|
||||
|Column|Content|Description|
|
||||
|---|---|---|
|
||||
|A|Alarm/Warning|Indicator with color coding|
|
||||
|B|Number|Alarm number|
|
||||
|C|Tag|DB address in format DBx.DBXy.z|
|
||||
|D|Sections|Comma-separated list of section numbers|
|
||||
|E|Priority|Priority level|
|
||||
|F|Description|Alarm text description|
|
||||
|G|Used|Symbol if alarm is active, "-" if disabled|
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1186,15 +1186,3 @@ End Function
|
|||
|
||||
The password for the VBA is: 3vpjTCr^AuyEw&
|
||||
|
||||
This script works with a DB like this:
|
||||
|
||||
![[Pasted image 20240924113131.png]]
|
||||
|
||||
Use the XML file Exported from :
|
||||
|
||||
![[Pasted image 20240924113222.png]]
|
||||
|
||||
![[Pasted image 20240924113305.png]]
|
||||
|
||||
Then drag an drop in offline the DB to export on the Workspace area
|
||||
|
||||
|
|
After Width: | Height: | Size: 133 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 98 KiB |
After Width: | Height: | Size: 873 B |
After Width: | Height: | Size: 435 B |
After Width: | Height: | Size: 459 B |
After Width: | Height: | Size: 677 B |
After Width: | Height: | Size: 735 B |
After Width: | Height: | Size: 517 B |
After Width: | Height: | Size: 862 B |
|
@ -0,0 +1,54 @@
|
|||
***
|
||||
### Filler : 10.1.20.11
|
||||
### Mixer : 10.1.33.11
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
| Links for bottle conveyors Sidel 92.1 (10.1.92.11) | | | | | | | | | | | | |
|
||||
| -------------------------------------------------- | -------------------------------------- | ---------- | --- | --- | --- | --- | ----- | ---------------------- | ---------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ---------------------- | --- |
|
||||
| Protocole | Local Tsap (ASC) <br>or port TCP/UDP | ID Number | | | | ACT | Sync. | Partner TCP/IP Address | Partner Tsap (ASC) <br>or port TCP/UDP | Partner PLC type/ref <br>Ethernet coupler used for communication <br>For Iso-on-tcp protocol, rack and slot | Partner Machine | |
|
||||
| TCP | 2001 | 1 | | | SR | no | 100ms | _ | _ | B&R | Combi | |
|
||||
| TCP | 2002 | 2 | | | SR | no | 100ms | _ | _ | Siemens S7-1500 | Tilter | |
|
||||
| TCP | 2003 | 3 | | | SR | no | 100ms | _ | _ | Siemens S7-1500 | Cooler | |
|
||||
| TCP | 2004 | 4 | | | SR | no | 100ms | _ | _ | ? | Sleever 1 | |
|
||||
| TCP | 2005 | 5 | | | SR | no | 100ms | _ | _ | ? | Sleever 2 | |
|
||||
| TCP | 2006 | 6 | | | SR | no | 100ms | _ | _ | ? | Packer | |
|
||||
| TCP | 2007 | 7 | | | SR | no | 100ms | _ | _ | Siemens S7-1500 | Pack divider | |
|
||||
| TCP | 2008 | 8 | | | SR | no | 100ms | _ | _ | ? | Palletizer | |
|
||||
| | | | | | | | | | | | | |
|
||||
| Links for Sidel Combi 20.1 | | | | | | | | | | | | |
|
||||
| Protocole | Local Tsap (ASC) <br>or port TCP/UDP | ID Number | | | M | ACT | Sync. | Partner TCP/IP Address | Partner Tsap (ASC) <br>or port TCP/UDP | Partner PLC type/ref <br>Ethernet coupler used for communication <br>For Iso-on-tcp protocol, rack and slot | Partner Machine | |
|
||||
| TCP | 2001 | 1 | | | SR | yes | 100ms | 10.1.92.11 | 2001 | Siemens S7-1516 | bottle & pack conveyor | |
|
||||
| | | | | | | | | | | | | |
|
||||
| Links for Vetromeccanica Tilter 6.1 | | | | | | | | | | | | |
|
||||
| Protocole | Local Tsap (ASC) <br>or port TCP/UDP | ID Number | | | M | ACT | Sync. | Partner TCP/IP Address | Partner Tsap (ASC) <br>or port TCP/UDP | Partner PLC type/ref <br>Ethernet coupler used for communication <br>For Iso-on-tcp protocol, rack and slot | Partner Machine | |
|
||||
| TCP | 2001 | - | | | SR | yes | - | 10.1.92.11 | 2002 | Siemens S7-1516 | bottle & pack conveyor | |
|
||||
| | | | | | | | | | | | | |
|
||||
| Links for Sidel Cooler 60.1 | | | | | | | | | | | | |
|
||||
| Protocole | Local Tsap (ASC) <br>or port TCP/UDP | ID Number | | | M | ACT | Sync. | Partner TCP/IP Address | Partner Tsap (ASC) <br>or port TCP/UDP | Partner PLC type/ref <br>Ethernet coupler used for communication <br>For Iso-on-tcp protocol, rack and slot | Partner Machine | |
|
||||
| TCP | 2001 | 1 | | | SR | Yes | 100ms | 10.1.92.11 | 2003 | Siemens S7-1516 | bottle & pack conveyor | |
|
||||
| | | | | | | | | | | | | |
|
||||
| Links for Clever sleever 38.1 | | | | | | | | | | | | |
|
||||
| Protocole | Local Tsap (ASC) <br>or port TCP/UDP | ID Number | | | M | ACT | Sync. | Partner TCP/IP Address | Partner Tsap (ASC) <br>or port TCP/UDP | Partner PLC type/ref <br>Ethernet coupler used for communication <br>For Iso-on-tcp protocol, rack and slot | Partner Machine | |
|
||||
| TCP | 2001 | 1 | | | SR | Yes | 100ms | 10.1.92.11 | 2004 | Siemens S7-1516 | bottle & pack conveyor | |
|
||||
| | | | | | | | | | | | | |
|
||||
| Links for Clever sleever 38.2 | | | | | | | | | | | | |
|
||||
| Protocole | Local Tsap (ASC) <br>or port TCP/UDP | ID Number | | | M | ACT | Sync. | Partner TCP/IP Address | Partner Tsap (ASC) <br>or port TCP/UDP | Partner PLC type/ref <br>Ethernet coupler used for communication <br>For Iso-on-tcp protocol, rack and slot | Partner Machine | |
|
||||
| TCP | 2001 | 1 | | | SR | Yes | 100ms | 10.21.92.11 | 2005 | Siemens S7-1516 | bottle & pack conveyor | |
|
||||
| | | | | | | | | | | | | |
|
||||
| Links for Sidel Packer 41.1 | | | | | | | | | | | | |
|
||||
| Protocole | Local Tsap (ASC) <br>or port TCP/UDP | ID Number | | | M | ACT | Sync. | Partner TCP/IP Address | Partner Tsap (ASC) <br>or port TCP/UDP | Partner PLC type/ref <br>Ethernet coupler used for communication <br>For Iso-on-tcp protocol, rack and slot | Partner Machine | |
|
||||
| TCP | 2001 | 1 | | | SR | yes | 100ms | 10.1.92.11 | 2006 | Siemens S7-1516 | bottle & pack conveyor | |
|
||||
| | | | | | | | | | | | | |
|
||||
| Links for LM Pack divider 10.1 | | | | | | | | | | | | |
|
||||
| Protocole | Local Tsap (ASC) <br>or port TCP/UDP | ID Number | | | M | ACT | Sync. | Partner TCP/IP Address | Partner Tsap (ASC) <br>or port TCP/UDP | Partner PLC type/ref <br>Ethernet coupler used for communication <br>For Iso-on-tcp protocol, rack and slot | Partner Machine | |
|
||||
| TCP | 2001 | 1 | | | SR | yes | 100ms | 10.1.92.11 | 2007 | Siemens S7-1516 | bottle & pack conveyor | |
|
||||
| | | | | | | | | | | | | |
|
||||
| Links for Palletizer 53.1 | | | | | | | | | | | | |
|
||||
| Protocole | Local Tsap (ASC) <br>or port TCP/UDP | ID Number | | | M | ACT | Sync. | Partner TCP/IP Address | Partner Tsap (ASC) <br>or port TCP/UDP | Partner PLC type/ref <br>Ethernet coupler used for communication <br>For Iso-on-tcp protocol, rack and slot | Partner Machine | |
|
||||
| TCP | 2001 | 1 | | | SR | yes | 100ms | 10.1.92.11 | 2008 | Siemens S7-1516 | bottle & pack conveyor | |
|
||||
|
||||
|
||||
![[H1002261 RG Brands Network layout rev02.png]]
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
## Legend of equivalences
|
||||
|
||||
- ___K_ : COMMAND RELAY - FEEDBACK SIGNAL (Señales de retroalimentación)
|
||||
- ___Q_ : TERMIC OVERLOAD SIGNAL (Señales de sobrecarga térmica)
|
||||
- P1 = WATER PUMP = SOFTSTART = 301
|
||||
- P2 = SYRUP PUMP = 302
|
||||
- P3 = OVERPRESSURE PRODUCT PUMP = 303
|
||||
- P6 = RECYCLE PUMP = 306
|
||||
|
||||
* Anton Paar = Analizatore
|
||||
|
||||
301 : WATER PUMP = P1
|
||||
302 : SYRUP = P2
|
||||
303 : PRODUCT = P3
|
||||
306 : RECIRCULATING = P6
|
||||
|
||||
NORGREN Valve has Analog Input and Ouput to control PCM306 - Gas Pressure Injection (CO2)
|
||||
NORGREN : Gasatura Produtto CO2
|
|
@ -0,0 +1,465 @@
|
|||
|
||||
| Tag Name | Type | Data Type | Tag Comment |
|
||||
| -------------------------------- | ------ | --------- | ----------------------------------------------------------------------- |
|
||||
| AI_CIP_CIP_Total_Time | Inputs | Int | "AI_CIP_CIP_Total_Time" |
|
||||
| AI_CIP_SetPoint_Temeperature | Inputs | Byte | "AI_CIP_SetPoint_Temeperature" |
|
||||
| AI_SYRUP_Cip_Phase | Inputs | Byte | "AI_SYRUP_Cip_Phase" |
|
||||
| AI_SYRUP_Cip_RemaningTime | Inputs | Byte | "AI_SYRUP_Cip_RemaningTime" |
|
||||
| AI_SYRUP_Cip_TotalTime | Inputs | Byte | "AI_SYRUP_Cip_TotalTime" |
|
||||
| DI_Air_InletPress_OK | Inputs | Bool | Air Pressure Switch |
|
||||
| DI_AlarmReset | Inputs | Bool | PB Machine Reset |
|
||||
| DI_Ammonia_High_Lev_Prod | Inputs | Bool | Product Chiller Ammonia High Level |
|
||||
| DI_AmmoniaHighLev_Water | Inputs | Bool | Water Chiller Ammonia High Level |
|
||||
| DI_AuxVoltage_On | Inputs | Bool | Electrical Panel Restored |
|
||||
| DI_AVM362_Close | Inputs | Bool | AVM362 - Feedback OFF |
|
||||
| DI_AVM362_Open | Inputs | Bool | AVM362 - Feedback ON |
|
||||
| DI_CIP_ChemicalProd | Inputs | Bool | CIP - Chemical Prod [for local CIP only] |
|
||||
| DI_CIP_CleaningCompleted | Inputs | Bool | CIP - Cip Cleaning Completed |
|
||||
| DI_CIP_CleaningFault | Inputs | Bool | CIP - Cip in Fault |
|
||||
| DI_CIP_FreeSodaTank | Inputs | Bool | CIP - Soda Tank is able to receive soda from mixer [for local CIP only] |
|
||||
| DI_CIP_HotWaterSending | Inputs | Bool | CIP - Hot Water Sending [for local CIP only] |
|
||||
| DI_CIP_TankFilling | Inputs | Bool | CIP - Flooding Request |
|
||||
| DI_CO2_InletPress_OK | Inputs | Bool | - CO2 Inlet Pressure Switch |
|
||||
| DI_DeairVacuumOk | Inputs | Bool | - Deairator Vaccum Switch |
|
||||
| DI_Emergency_Pilz_On | Inputs | Bool | Pilz Emergency |
|
||||
| DI_Emergency_Pressed | Inputs | Bool | Electrical Panel Emergency Button |
|
||||
| DI_Flr_CIP_CleaningAlarm | Inputs | Bool | FILLER - Alarm |
|
||||
| DI_Flr1_CIP_DrainComplete | Inputs | Bool | From FILLER - Cip Drain Complete |
|
||||
| DI_Flr_CIP_FloodingEnd | Inputs | Bool | FILLER - Flooding End |
|
||||
| DI_Flr1_CIP/RinseFiller | Inputs | Bool | From FILLER 1 - Cip/rinse |
|
||||
| DI_Flr_CIP_RecoverReq | Inputs | Bool | FILLER - Recover Request |
|
||||
| DI_Flr_CIP_RinseMode | Inputs | Bool | FILLER - Rinse Mode |
|
||||
| DI_Flr_EndProdLastBottleFilled | Inputs | Bool | From FILLER - Production done Last bottle filled |
|
||||
| DI_Flr_OpenAVM369 | Inputs | Bool | From FILLER - AVM369 Opening request |
|
||||
| DI_Flr1_PROD_Request | Inputs | Bool | From FILLER 1 - Product Request |
|
||||
| DI_CIP_Drain | Inputs | Bool | From CIP Drain |
|
||||
| DI_CIP_CIP_Rinse | Inputs | Bool | From CIP Running |
|
||||
| DI_CIP_CIP_Enable | Inputs | Bool | From CIP Enable |
|
||||
| DI_SYR_TANK_LEVEL | Inputs | Word | DI_Syrup Room Tank Level % |
|
||||
| DI_FSS301 | Inputs | Bool | FSS301 - Local Cip Return Flow Switch |
|
||||
| DI_HVM302_Sensor | Inputs | Bool | GCM302 - Manual Water Valve Closed (NO) |
|
||||
| DI_Log_Sidel | Inputs | Bool | Log son usuario Sidel |
|
||||
| DI_LSM302L | Inputs | Bool | LSM302_L - Product Tank Minimun Level |
|
||||
| DI_LSN301L | Inputs | Bool | LSN301_L - Deaireator Tank Minimun Level |
|
||||
| DI_MaxTempAlarm | Inputs | Bool | Electrical Cabinet High Temperature |
|
||||
| DI_Min_Deair2_Level | Inputs | Bool | LSN302_L - Deaireator Tank #2 Minimun Level |
|
||||
| DI_Min_Syrup_Level | Inputs | Bool | - Syrup Tank Minimun Level |
|
||||
| DI_PB_Machine_Start | Inputs | Bool | PB Machine Start |
|
||||
| DI_PB_Machine_Stop | Inputs | Bool | PB Machine Stop |
|
||||
| DI_PPM303_Ovrld | Inputs | Bool | PPM303 - Product Pump Overload |
|
||||
| DI_PPN301_Contactor | Inputs | Bool | PPN301 - Deaireator Pump Feedback |
|
||||
| DI_PPN301_Ovrld | Inputs | Bool | PPN301 - Deaireator Pump Overload |
|
||||
| DI_PPN301_SoftStOvr | Inputs | Bool | PPN301 - Deaireator Pump Softstarter Ready |
|
||||
| DI_PPN304_Contactor | Inputs | Bool | PPN304 - Vaccum Pump Feedback |
|
||||
| DI_PPM305_Ovrld | Inputs | Bool | PPM305 - Product Pump 2 Overload |
|
||||
| DI_PPP302_Contactor | Inputs | Bool | PPP302 - Syrup Pump Feedback |
|
||||
| DI_PPP302_Ovrld | Inputs | Bool | PPP302 - Syrup Pump Overload |
|
||||
| DI_Product_Analyzer_Prod_NO_OK | Inputs | Bool | |
|
||||
| DI_RMM301_Closed | Inputs | Bool | RMM301 - Feedback OFF (VM1WATER) |
|
||||
| DI_RMM303_Closed | Inputs | Bool | RMM303 - Feedback OFF (VM3 CO2) |
|
||||
| DI_RMM304_Closed | Inputs | Bool | RMM304 - Feedback OFF |
|
||||
| DI_RMP302_Closed | Inputs | Bool | RMP302 - Feedback OFF (VM2 SYRUP) |
|
||||
| DI_SyrRoom_Cip_Mode | Inputs | Bool | Syrup Room - Cip Mode |
|
||||
| DI_SyrRoom_Pump_Ready | Inputs | Bool | Syrup Room - Pump ready |
|
||||
| DI_SyrRoom_WatPumpReady | Inputs | Bool | From Syrup Room - Water Pump Ready |
|
||||
| DI_UPSBatteryReady | Inputs | Bool | UPS Battery ready |
|
||||
| DI_UV_Lamp_Ready | Inputs | Bool | Water UV Lamp Ready |
|
||||
| DI_Water_Pump2_Contactor | Inputs | Bool | PPN305 - Deaireator Pump #2 Feedback |
|
||||
| DI_Water_Pump2_Ovrld | Inputs | Bool | PPN305 - Deaireator Pump #2 Overload |
|
||||
| DI_WaterPipeCIP_Sensor | Inputs | Bool | MIX - N10_I32_ |
|
||||
| DO_Aux24DC | Output | Bool | MIX - 24DC ON |
|
||||
| DO_AVM312_Deair_Reflux | Output | Bool | MIX - N10_O41_ |
|
||||
| DO_AVM317_1 | Output | Bool | MIX - CIP to Syrup Tank Inlet |
|
||||
| DO_AVM327 | Output | Bool | MIX - Blendfill Still Water By-Pass Mixproof 1 |
|
||||
| DO_AVM328 | Output | Bool | MIX - Blendfill Still Water By-Pass Mixproof 2 |
|
||||
| DO_AVM329 | Output | Bool | MIX - Blendfill Still Water By-Pass Mixproof 3 |
|
||||
| DO_AVM330 | Output | Bool | MIX - Blendfill Still Water By-Pass Drain Inlet Deaireator Tank |
|
||||
| DO_AVM396 | Output | Bool | MIX - Steril Air Inlet |
|
||||
| DO_AVN325 | Output | Bool | MIX - Vacuum Pump PPN304 Water In |
|
||||
| DO_AVN329 | Output | Bool | MIX - Deaireator 2 Tank Spray Ball |
|
||||
| DO_AVN348 | Output | Bool | MIX - Deaireator Inlet |
|
||||
| DO_AVN349 | Output | Bool | MIX - Deaireator Bypass 1 |
|
||||
| DO_AVN373 | Output | Bool | MIX - Deaireator 2 Drain |
|
||||
| DO_AVN374 | Output | Bool | MIX - Deaireators Connection Drain |
|
||||
| DO_AVN377 | Output | Bool | |
|
||||
| DO_AVN378 | Output | Bool | |
|
||||
| DO_AVN390 | Output | Bool | |
|
||||
| DO_AVN347 | Output | Bool | MIX - Deaireator Tank Start CO2 Injection 1 |
|
||||
| DO_AVP363 | Output | Bool | MIX - Syrup Line In H2O |
|
||||
| DO_AVP391 | Output | Bool | MIX - |
|
||||
| DO_AVS331 | Output | Bool | MIX - CIP Venturi |
|
||||
| DO_AVS332 | Output | Bool | MIX - CIP Wash Venturi |
|
||||
| DO_AVS333 | Output | Bool | MIX - CIP Caustic |
|
||||
| DO_AVS334 | Output | Bool | MIX - CIP Acid |
|
||||
| DO_AVS335 | Output | Bool | MIX - CIP Peracetic Acid |
|
||||
| DO_AVS336 | Output | Bool | MIX - CIP Recirculation |
|
||||
| DO_AVS337 | Output | Bool | MIX - CIP Drain |
|
||||
| DO_AVS338 | Output | Bool | MIX - CIP Heater |
|
||||
| DO_CIP_CleaningFault | Output | Bool | CIP - Cleaning Fault |
|
||||
| DO_SyrupRoom_Aux1 | Output | Bool | To Syrup Room- Alarm |
|
||||
| DO_CIP_DrainCompleted | Output | Bool | CIP - Drain Completed |
|
||||
| DO_CIP_HotWaterReq | Output | Bool | CIP - Hot Water Request [for local CIP only] |
|
||||
| DO_CIP_RecoverCompleted | Output | Bool | CIP - Recover Completed |
|
||||
| DO_CIP_SendSodaReq | Output | Bool | CIP - Send Soda Request [for local CIP only] |
|
||||
| DO_CIP_SolutionReturn | Output | Bool | CIP - Solution Return |
|
||||
| DO_CIP_WaterPipe_Ready | Output | Bool | CIP - Water Pipe Ready [for local CIP only] |
|
||||
| DO_CO2_Counter_Pulse | Output | Bool | MIX - Water Counter Pulse ( 1 Pulse = 100 Kg) |
|
||||
| DO_CtrlCircuitRun | Output | Bool | Electrical Panel Reset |
|
||||
| DO_SyRm_SyrupReques | Output | Bool | To syrup Room Syrup Request |
|
||||
| DO_EV03_SyrupLvlCtrl | Output | Bool | MIX - N10_O06_ |
|
||||
| DO_EV04_SyrupFillUp | Output | Bool | MIX - N10_O07_ |
|
||||
| DO_EV66_FillerRinseWater | Output | Bool | MIX - N10_O97_ |
|
||||
| DO_EV67_SyrupLineDrain | Output | Bool | MIX - N10_O101_ |
|
||||
| DO_EV68_FillerRinseWater | Output | Bool | MIX - N10_O102_ |
|
||||
| DO_EV71_FillerPrPipeDrai | Output | Bool | MIX - N10_O104_ |
|
||||
| DO_EV71_FiRinseSprayBall | Output | Bool | MIX - N10_O105_ |
|
||||
| DO_EV72_FlrRinseTankDrai | Output | Bool | MIX - N10_O106_ |
|
||||
| DO_FillerNextRecipe | Output | Byte | MIX - |
|
||||
| DO_Flr_BottleStop | Output | Bool | FILLER - Bottles Stop |
|
||||
| DO_Flr1_CIP_CleaningEnd | Output | Bool | FILLER - Cip Cleaning Ended |
|
||||
| DO_Flr_CIP_CleaningFault | Output | Bool | FILLER - Cip Fault |
|
||||
| DO_Flr1_CIP_DrainRequest | Output | Bool | FILLER - Cip Drain Request |
|
||||
| DO_Flr_CIP_ProdSending | Output | Bool | FILLER - Cip Product Sending |
|
||||
| DO_Flr_CIP_RecoverReq | Output | Bool | FILLER - Cip Recover Request |
|
||||
| DO_Flr1_RinseMode | Output | Bool | FILLER - Rinse Mode |
|
||||
| DO_Flr_CIP_RinseSending | Output | Bool | FILLER - Rinse Sending |
|
||||
| DO_Flr_CIP_Running | Output | Bool | FILLER - Cip Running |
|
||||
| DO_Flr_CIP_TankFilling | Output | Bool | FILLER - Flooding Request |
|
||||
| DO_Flr_FastRinseRequest | Output | Bool | FILLER - Fast Change Over Rinse Request |
|
||||
| DO_Flr1_CIP/Rinse | Output | Bool | To Filler 1 CIP/Rinse |
|
||||
| DO_Flr1_PROD_Available | Output | Bool | FILLER - Product Available |
|
||||
| DO_Flr1_OpenBottleblock | Output | Bool | FILLER - Production Mode |
|
||||
| DO_Flr_PROD_Run_Out | Output | Bool | FILLER - Run Out Request |
|
||||
| DO_Flr_ProductCompleted | Output | Bool | FILLER - Product Completed |
|
||||
| DO_Flr_WaterRinseReady | Output | Bool | FILLER - Fast Change Over Water Ready |
|
||||
| DO_Green_Lamp | Output | Bool | DO_Green_Lamp |
|
||||
| DO_Horn | Output | Bool | DO_Horn |
|
||||
| DO_MES_CIP | Output | Bool | MES - CIP Mode |
|
||||
| DO_MES_FAULT | Output | Bool | MES - FAULT (1= FAULT) |
|
||||
| DO_MES_PRODUCTION | Output | Bool | MES - Production |
|
||||
| DO_MES_Running | Output | Bool | MES - Running 1(Running - 0 Stop) |
|
||||
| DO_CIP_Mode_En | Output | Bool | To CIP Modo Enable |
|
||||
| DO_MIXER _CIP_Temperature_Return | Output | Word | |
|
||||
| DO_CoolingON | Output | Bool | EV Cooling Enbled |
|
||||
| DO_MIXER _Rinse_mode | Output | Bool | MIXER en RinseMode |
|
||||
| DO_PB_Green_Lamp | Output | Bool | PB Machine Start Lamp |
|
||||
| DO_PCM306En | Output | Bool | DO_PCM306_Enabled Power On |
|
||||
| DO_PPM303_Run | Output | Bool | DO_PPM303_Run |
|
||||
| DO_PPN301_1053K1 | Output | Bool | DO_PPN301_ElectonicStart |
|
||||
| DO_PPN301_Run | Output | Bool | DO_PPN301_SoftStartPower |
|
||||
| DO_PPN304_Run | Output | Bool | DO_PPN304_Run |
|
||||
| DO_PPP302_Run | Output | Bool | DO_PPP302_Run |
|
||||
| DO_Red_Lamp | Output | Bool | DO_Red_Lamp |
|
||||
| DO_RVN301_Level | Output | Bool | MIX - Deaireator Level Control |
|
||||
| DO_SyrRoom_SyrupRequest | Output | Bool | SYRUP ROOM - Syrup Request |
|
||||
| DO_Syrup_Counter_Pulse | Output | Bool | MIX - Syrup Counter Pulse ( 1 Pulse = 100 Lt.) |
|
||||
| DO_SyrupRoomPump_Run | Output | Bool | Syrup Room - Syrup Pump Request |
|
||||
| DO_SyrupRoomWaterReq | Output | Bool | Syrup Room - Water Pump Request |
|
||||
| DO_Water_Counter_Pulse | Output | Bool | DO_Water_Counter_Pulse |
|
||||
| DO_Yellow_Lamp | Output | Bool | DO_Yellow_Lamp |
|
||||
| MaselliSpare | Output | Bool | Maselli Spare |
|
||||
| MaselliHold | Output | Bool | Masseli Hold activated |
|
||||
| P_AI_TTM306 | Inputs | Word | TTM306 - Chiller Temperature |
|
||||
| P_AI_LTM302 | Inputs | Word | LTM302 - Product Tank Level |
|
||||
| P_AI_LTP303 | Inputs | Word | LTP303 - Syrup Tank Level |
|
||||
| P_AI_PCM306 | Inputs | Word | PCM306 - Gas Pressure Injection |
|
||||
| P_AI_ProductCO2 | Inputs | Word | Product Analizer - Product CO2 |
|
||||
| P_AI_PTF203 | Inputs | Word | PTF203 - Differential Pressure |
|
||||
| P_AI_PTM304 | Inputs | Word | PTM304 - Product Tank Pressure |
|
||||
| P_AI_PTP338 | Inputs | Word | PTP338 - Syrup Inlet Pressure |
|
||||
| P_AI_RVM301 | Inputs | Word | RVM301 - Product Tank Pressure Valve |
|
||||
| P_AI_RVN304 | Inputs | Word | RVN304 - Deaireation Valve |
|
||||
| P_AI_TTN321 | Inputs | Word | TTN321 - Deaireator Temperature |
|
||||
| P_AO_CIPCausticCond | Output | Word | Recorder - Local Cip Delivery Conductivity [0.0 … 200.0 mS] |
|
||||
| P_AO_CIPReturnTemperature | Output | Word | Recorder - Local Cip Return Temperaure [0.0 … 100.0 °C] |
|
||||
| P_AO_CIPWaterCond | Output | Word | Recorder - Local Cip Return Conductivity [0.0 … 2000.0 mS] |
|
||||
| P_AO_PCM306 | Output | Word | PCM306 - Gas Injection Pressure Control |
|
||||
| P_AO_ProductRunOutAmount | Output | Word | FILLER - Product Run Out Amount [200.0 … 800.0 L] |
|
||||
| P_AO_RMM301 | Output | Word | RMM301 - Water Flow Control |
|
||||
| P_AO_RMM303 | Output | Word | RMM303 - Gas Flow Control |
|
||||
| P_AO_RMM304 | Output | Word | RMM304 - Gas 2 Flow Control |
|
||||
| P_AO_RMP302 | Output | Word | RMP302 - Syrup Flow Control |
|
||||
| P_AO_RVM301 | Output | Word | RVM301 - Product Tank Pressure Valve |
|
||||
| P_AO_RVM302 | Output | Word | RVM302 - Deaireation Tank Level / Product Tank Level Valve |
|
||||
| P_AO_RVM319 | Output | Word | RVM319 - Chiller Temperature control |
|
||||
| P_AO_RVN302 | Output | Word | RVN302 - Deaireation Tank Level Valve |
|
||||
| P_AO_RVN304 | Output | Word | RVN304 - Deaireation Valve |
|
||||
| P_AO_RVP303 | Output | Word | RVP303 - Syrup Tank Level Valve |
|
||||
| P_AO_RVS318 | Output | Word | RVS318 - Local Cip Heating Valve |
|
||||
| P_AO_ToFillerEqPress | Output | Word | FILLER - Product Saturation Pressure [0.0 … 100.0 Bar/10] |
|
||||
| P_CTS301_Conductiv_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_CTS301_Conductivity | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_CTS301_Temperat_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_CTS301_Temperature | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_CTS302_Conductiv_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_CTS302_Conductivity | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_CTS302_Temperat_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_CTS302_Temperature | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTM303_Tot_Ctrl | Output | Byte | MIX - |
|
||||
| P_FTM303_Density | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTM303_Density_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTM303_EPD | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTM303_Flow | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTM303_Flow_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTM303_Temperature_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTM303_Temperature | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTM303_Totalizer | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTM303_Totalizer_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTN301_Flow | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTN301_Flow_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTN301_Tot_Ctrl | Output | Byte | MIX - |
|
||||
| P_FTN301_Totaliz_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTN301_Totalizer | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTP302_Brix | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTP302_Brix_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTP302_Tot_Ctrl | Output | Byte | MIX - |
|
||||
| P_FTP302_Density | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTP302_Density_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTP302_Flow | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTP302_Flow_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTP302_Temp | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_FTP302_Temp_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTP302_Totaliz_State | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_FTP302_Totalizer | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_gMaselli_AlcoholVolume | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_gMaselli_ProdPerStandard | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_gMaselli_ProductBrix | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_gMaselli_ProductCO2 | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_gMaselli_ProductNumber | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gMaselli_ProductTemp | Inputs | Real | MIX - Profibus Variables |
|
||||
| P_gMaselli_ProfibusStatus | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gMaselli_RecipeSetNum | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gMaselli_RecipeSetNumStr | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_0 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_1 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_10 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_11 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_12 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_13 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_14 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_15 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_16 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_17 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_18 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_19 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_2 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_20 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_21 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_22 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_23 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_24 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_25 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_26 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_27 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_28 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_29 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_3 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_4 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_5 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_6 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_7 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_8 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock01_9 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_30 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_31 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_32 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_33 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_34 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_35 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_36 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_37 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_38 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_39 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_40 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_41 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_42 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_43 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_44 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_45 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_46 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_47 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_48 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_49 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_50 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_51 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_52 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_53 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_54 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_55 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_56 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_57 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_58 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_59 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_60 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock02_61 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_62 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_63 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_64 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_65 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_66 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_67 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_68 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_69 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_70 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_71 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_72 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_73 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_74 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_75 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_76 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_77 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_78 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_79 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_80 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_81 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_82 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_83 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_84 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_INBlock03_85 | Inputs | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_0 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_1 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_10 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_11 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_12 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_13 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_14 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_15 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_16 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_17 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_18 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_19 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_2 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_20 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_21 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_22 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_23 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_24 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_25 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_26 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_27 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_3 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_4 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_5 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_6 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_7 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_8 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPAmPDS_OUTBlock01_9 | Output | Byte | MIX - Profibus Variables |
|
||||
| P_gPPM303_VFC_ActualValue | Inputs | Word | MIX - Product Pump - Profibus Variables |
|
||||
| P_gPPM303_VFC_ControlWord | Output | Word | MIX - Product Pump - Profibus Variables |
|
||||
| P_gPPM303_VFC_Refvalue | Output | Word | MIX - Product Pump - Profibus Variables |
|
||||
| P_gPPM303_VFC_StatusWord | Inputs | Word | MIX - Product Pump - Profibus Variables |
|
||||
| P_gPPM307_VFC_ActualVaule | Inputs | Int | MIX - ProductPump - Profibus Variables |
|
||||
| P_gPPM307_VFC_ControlWord | Output | Word | |
|
||||
| P_gPPM307_VFC_Refvalue | Output | Word | |
|
||||
| P_gPPM307_VFC_StatusWord | Inputs | Word | |
|
||||
| P_gPPN301_VFC_ActualValue | Inputs | Word | MIX - Water Pump - Profibus Variables |
|
||||
| P_gPPN301_VFC_ControlWord | Output | Word | MIX - Product Pump - Profibus Variables |
|
||||
| P_gPPN301_VFC_Refvalue | Output | Word | MIX - Product Pump - Profibus Variables |
|
||||
| P_gPPN301_VFC_StatusWord | Inputs | Word | MIX - Water Pump - Profibus Variables |
|
||||
| P_gPPP302_VFC_ActualValue | Inputs | Word | MIX - Syrup Pump - Profibus Variables |
|
||||
| P_gPPP302_VFC_ControlWord | Output | Word | MIX - Product Pump - Profibus Variables |
|
||||
| P_gPPP302_VFC_Refvalue | Output | Word | MIX - Product Pump - Profibus Variables |
|
||||
| P_gPPP302_VFC_StatusWord | Inputs | Word | MIX - Syrup Pump - Profibus Variables |
|
||||
| PPN301_SoftStart_Averia | Inputs | Bool | PPN301_SoftStart_Averia |
|
||||
| Tag_24 | Inputs | Real | |
|
||||
| DI_UPSsupply | Inputs | Bool | UPS supply OK |
|
||||
| DI_PB_HornReset | Inputs | Bool | PB Horn Reset |
|
||||
| DO_PB_HornReset | Output | Bool | DO PB horn Reset |
|
||||
| DI_Flr1_PROD_ok | Inputs | Bool | From Filler Producion Filling Bottles |
|
||||
| DI_Flr_RinseMode | Inputs | Bool | From FILLER Rinse Mode |
|
||||
| DO_FlrProdMode | Output | Bool | T o Filler Production Mode |
|
||||
| DO_Flr1_Productionmode | Output | Bool | To Filler 1 Production Mode |
|
||||
| DO_Flr1_CIPMode | Output | Bool | To Filler CIP Mode |
|
||||
| DO_ Flr_CIPRinseSending | Output | Bool | To Filler CIP/Rinse Sending solution |
|
||||
| DO_Flr_RinseMode | Output | Bool | To Filler Rinse Mode |
|
||||
| DO_SyRm_Fault | Output | Bool | To Syrup Room Fault |
|
||||
| DO_SyRm_ProdMode | Output | Bool | To Syrup Room Prod Mode |
|
||||
| DO_SyRm_WaterRequest | Output | Bool | To syrup Room Water Request |
|
||||
| DO_CIP_Fault | Output | Bool | To CIP Fault |
|
||||
| DO_CIP_Empty | Output | Bool | To CIP Mixer filler empty |
|
||||
| DO_CIP_RdyChmcl | Output | Bool | To CIP Ready to receive Chimical (dummy bottles in) |
|
||||
| DO_CIP_Flpflp | Output | Bool | To CIP Drain Valves Flip Flop Done |
|
||||
| DI_CIP_Fault | Inputs | Bool | From CIP Fault |
|
||||
| DI_CIP_End | Inputs | Bool | From CIP End (Completed) |
|
||||
| DI_CIP_FlpflpEn | Inputs | Bool | From CIP Flip flop Drain Valve Enable |
|
||||
| DI_CIP_FirstRinsedone | Inputs | Bool | From CIP First Rinse Done (without dummy Bottles |
|
||||
| DI_SYR_COUNTER_LT | Inputs | Word | DI_Syrup Room Liter Counter |
|
||||
| DI_SyrRoom_SyrPump_Running | Inputs | Bool | From Syrup Room - Syrup Pump Running |
|
||||
| DI_SYRUP_Runout | Inputs | Bool | |
|
||||
| DO_Flr1_Fault | Output | Bool | To Filler 1 Fault |
|
||||
| DO_Flr_ProdAvailable | Output | Int | To Filler Product Available liters |
|
||||
| DI_Flr2_PROD_Request | Inputs | Bool | From FILLER 2 - Product Request |
|
||||
| DI_Flr2_CIP/RinseFiller | Inputs | Bool | From FILLER 2 - Cip/Rinse |
|
||||
| DO_Flr2_CIP/Rinse | Output | Bool | To Filler 2 CIP/Rinse |
|
||||
| DO_Flr2_Fault | Output | Bool | To Filler 2 Fault |
|
||||
| P_gPPM305_VFC_StatusWord | Inputs | Word | MIX - Product Pump 2 - Profibus Variables |
|
||||
| P_gPPM305_VFC_ActualValue | Inputs | Word | MIX - Product Pump 2 - Profibus Variables |
|
||||
| P_gPPM305_VFC_ControlWord | Output | Word | MIX - Product Pump 2 - Profibus Variables |
|
||||
| P_gPPM305_VFC_Refvalue | Output | Word | MIX - Product Pump 2 - Profibus Variables |
|
||||
| DO_AVM363 | Output | Bool | MIX - Blender to filler 1 |
|
||||
| DO_RVM301 | Output | Bool | MIX - Deaireator Level Control |
|
||||
| DO_AVP317_1 | Output | Bool | MIX - CIP To Syrup |
|
||||
| DO_AVM353 | Output | Bool | MIX - Blender to filler 2 Drain |
|
||||
| DO_Blu_Lamp | Output | Bool | DO_Blu_Lamp |
|
||||
| P_AO_RVN305 | Output | Word | |
|
||||
| DI_PPN301_SoftStart_Ovrld | Inputs | Bool | PPN301 - Water_Pump_SoftStart_Ovrld |
|
||||
| DI_PPM306_Contactor | Inputs | Bool | PPM306 - Recirculating Pump Feedback |
|
||||
| DI_Ammonia_CompressorReady | Inputs | Bool | Cooler Power Supply |
|
||||
| DI_Flr2_CIP_DrainComplete | Inputs | Bool | From FILLER 2 - Cip Drain Complete |
|
||||
| DI_PPM306_Ovrld | Inputs | Bool | PPM306 - Recirculating Pump Overload |
|
||||
| DI_Flr1_WaterRequest | Inputs | Bool | From FILLER - Water Request |
|
||||
| DO_Flr1_Spare0 | Output | Bool | Spare |
|
||||
| DO_CIP_Spare | Output | Bool | Spare |
|
||||
| DO_SyrupValve_Enable | Output | Bool | Valve Power Enable (Power Supply Analog Signal) |
|
||||
| DO_AVM382 | Output | Bool | Mix - Product Recirculation though chiller |
|
||||
| DO_AVP355 | Output | Bool | CIP |
|
||||
| DO_AVN350 | Output | Bool | |
|
||||
| P_AI_CIPHeaterTemperature | Inputs | Word | TTS305 - Local Cip Heating Temperature |
|
||||
| P_AI_FTM305 | Inputs | Word | FTM305 - Storage Tank Baialage Flow |
|
||||
| P_AI_PTM308 | Inputs | Word | PTM308 - PCM306 Infeed Pressure |
|
||||
| P_AI_CTS302 | Inputs | Word | CTS302 - Local Cip Delivery Conductivity |
|
||||
| P_AI_CTS301 | Inputs | Word | CTS301 - Local Cip Return Conductivity |
|
||||
| P_AI_CIPReturnTemperature | Inputs | Word | TTS305_1 - Local Cip Return Temperature |
|
||||
| P_AI_FillerLevel | Inputs | Word | Filler level |
|
||||
| P_AI_CTM304 | Inputs | Word | CTM304 - Product Conductivity |
|
||||
| P_AI_PTN313 | Inputs | Word | PTN313 - Deaireator Pressure (vacuostato) |
|
||||
| P_AI_RVN305 | Inputs | Word | RVN305 - Deaireation Valve |
|
||||
| P_AI_ProductO2 | Inputs | Word | Product Analizer - Product O2 |
|
||||
| DO_HMIPowerSupply | Output | Bool | Cut Power to PC |
|
||||
| DO_PPM306_Run | Output | Bool | DO_PPM306_Run |
|
||||
| DI_HVP301_Sensor | Inputs | Bool | GCP301 - Manual Syrup Valve Closed (NO) |
|
||||
| DI_AVM346_Close | Inputs | Bool | AVM346 - Feedback OFF |
|
||||
| DI_AVM346_Open | Inputs | Bool | AVM346 - Feedback ON |
|
||||
| DI_UPSAlarm | Inputs | Bool | UPS Alarm |
|
||||
| E0.7 | Inputs | Bool | Spare |
|
||||
| E3.1 | Inputs | Bool | Spare |
|
||||
| DO_RVM301_Discharge | Output | Bool | DO_RVM301_Discharge |
|
||||
| DO_SyrupRoom_Aux2 | Output | Bool | |
|
||||
| DO_Glycol_LineEnabled | Output | Bool | Glycol Line Enabled |
|
||||
| DO_Glycol_ColdRequest | Output | Bool | Glycol Cold Request |
|
||||
| DO_Glycol_LineCIP | Output | Bool | Glycol Line CIP |
|
||||
| DO_EV1_SubCarb | Output | Bool | EV1 Sub Carbo Customer |
|
||||
| DO_EV2_SubCarb | Output | Bool | EV2 Sub Carbo Customer |
|
||||
| DO_EV3_SubCarb | Output | Bool | EV3 Sub Carbo Customer |
|
||||
| DO_EV4_SubCarb | Output | Bool | EV4 Sub Carbo Customer |
|
||||
| DO_BoosterPump_SubCarb | Output | Bool | Booster Pump Sub Carbo Customer |
|
||||
| DO_200V26 | Output | Bool | Spare |
|
||||
| DO_EV100_WaterInlet | Output | Bool | Spare |
|
||||
| DO_200V28 | Output | Bool | Spare |
|
||||
| DO_AVM340 | Output | Bool | MIX - Still Water By-Pass Product Intercept |
|
||||
| DO_AVM339 | Output | Bool | MIX - Still Water By-Pass Deaireator Tank |
|
||||
| DO_AVM341 | Output | Bool | MIX - CO2 Inlet |
|
||||
| DO_AVM342 | Output | Bool | MIX - N2 Inlet |
|
||||
| DO_AVM346 | Output | Bool | MIX - Filler CO2 |
|
||||
| DO_AVM380 | Output | Bool | MIX - Product Recirculation Without Chiller |
|
||||
| DO_EV102_Syrup And CIP Inlet | Output | Bool | Spare |
|
||||
| DO_EV103_WaterInterception | Output | Bool | Spare |
|
||||
| DO_WaterBypass1 | Output | Bool | Spare |
|
||||
| DO_EV105_WaterBypass | Output | Bool | Spare |
|
||||
| CARLOS_TESTE | Inputs | Bool | |
|
||||
| DI_PPM303_Contactor | Inputs | Bool | PPM303 - Product Pump Feedback |
|
||||
| DI_SyrRoom_Alarm_Reset | Inputs | Bool | From Syrup Room - Alarm Reset |
|
||||
| DO_Analayzer_Enable | Output | Bool | To Analayzer ENABLE |
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 830 KiB |
|
@ -0,0 +1,416 @@
|
|||
# Índice de Contenido
|
||||
|
||||
- [Foglio di Modifica](#foglio-di-modifica)
|
||||
|
||||
---
|
||||
|
||||
<!-- 55d497c1cbb481fba77215e550c617f0 -->
|
||||
|
||||
## Foglio di Modifica
|
||||
|
||||
*Origen: FDM RNF032 E5.007299 - mv.htm*
|
||||
|
||||
**FDM Name****** | CIP RETURN PUMP | |
|
||||
---|---|---|---
|
||||
**FDM Number****** | 0001 | **Date****** | 16/01/2025
|
||||
**Affaire****** | RNF0032, E5.007299-EXMU01UF, EQPT24542 | |
|
||||
**Master****** | _Eplan5 - > Eplan2.8 Creata revisione 02 di schema el._ | |
|
||||
**Author****** | Santini Paolo | |
|
||||
|
||||
****
|
||||
|
||||
BOM MODIFICATION |
|
||||
---|---
|
||||
**Numero**** modifica lancio****** | 816479
|
||||
**Pilota Generale****** | EQPT24542****
|
||||
**Pilota Elettrico (****NFT)****** | 43756949
|
||||
**Materiale**** Elettrico ****(NFT)****** | 43756950
|
||||
**Materiale test/programmazione E5.00 xxxx (****NFT)****** | 43756951
|
||||
**Etichetta**** Elettrica ****(NFT)****** | 43756953
|
||||
**Schema Elettrico ****(PEA)****** | 43756955
|
||||
**Pilota Originale Macchina 04260779401** |
|
||||
**Numero**** Modifica Aggiornamento Pilota** | 816494
|
||||
|
||||
EPLAN P5 -> EPLAN 2.8 Codici Archiviazione Revisioni |
|
||||
---|---
|
||||
**Numero**** modifica creazione versione 01.****** | 815955
|
||||
**Disegno elettrico numero.****** | **43756137**
|
||||
**Numero**** modifica creazione versione 02.****** |
|
||||
**Numero**** modifica creazione versione 03.****** |
|
||||
**Numero**** modifica creazione versione 04.****** |
|
||||
**Numero**** modifica creazione versione 05.****** |
|
||||
**Numero modifica creazione versione 06 XX****** |
|
||||
|
||||
****
|
||||
|
||||
|
||||
|
||||
|
||||
FDM DESCRIPTION
|
||||
|
||||
<img src='image001.png' width='width="43"' height='height="14"' />
|
||||
|
||||
<img src='image002.png' width='width="42"' height='height="28"' />
|
||||
|
||||
**1- ****Pag.54 Nuova pagina Pompa CIP.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image003.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
**2- ****Pag.58 Rimando per 0V.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image004.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
**3- ****Pag.283 Inserite schede AI.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image005.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
**4- ****Pag.285 Inserite schede DI e AI per nuove utenze.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image006.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
**5- ****Pag.321 Allineata isola pneumatica a disegno pneumatico.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image007.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
**6- ****Pag.327 Inserito nuovo inverter su rete profibus.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image008.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
**7- ****Pag.356 Segnale di set per conduttivimetro.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image009.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
**8- ****Pag.380 Nuove morsettiere per 24V safety emergenze.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image010.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
**9- ****Pag.400 Segnali da flussimetro e conduttivimetro.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image011.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
**10- ****Pag.657 Nuova pagina Sensori pressione e temperatura ritorno CIP.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image012.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
**11- ****Pag.418 Nuova pagina Gestione flussimetro e conduttivimetro.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image013.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
**12- ****Pag.657 Pressostato e temperatura ritorno CIP.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image014.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
**13- ****Pag.659 Flowswitch ritorno CIP.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image015.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
**14- ****Pag.660 Nuova pagina Feedback valvole drenaggio.**
|
||||
|
||||
****
|
||||
|
||||
<img src='image016.png' width='width="35"' height='height="24"' />****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
-Nota per il tecnico cablatore : Controllare sempre il materiale evaso in distinta ( sotto allegata ) e
|
||||
|
||||
portare con se il materiale di consumo e lattrezzatura necessaria per
|
||||
|
||||
**** la corretta realizzazione dellUpgrade.
|
||||
|
||||
-Note for the cabling technician : Always check the processed material in the list ( attached below )
|
||||
|
||||
and bring with you the consumables and equipment necessary for
|
||||
|
||||
the correct implementation of the Upgrade.
|
||||
|
||||
****
|
||||
|
||||
__In caso di sotituzione inverter ripetere tutte le prove di arresto in emergenza (con verifica rampe) e nel caso motore macchina anche di marcia jog con porte chiuse e porte aperte.__
|
||||
|
||||
****
|
||||
|
||||
__If the inverter is replaced, repeat all the emergency stop test (whit ramp check) and, in the case of the machine motor, also the jog running tests whit doors closed and doors open.__****
|
||||
|
||||
****
|
||||
|
||||
<img src='image017.png' width='width="43"' height='height="12"' />
|
||||
|
||||
<img src='image018.png' width='width="43"' height='height="9"' />****
|
||||
|
||||
****
|
||||
|
||||
<img src='image019.png' width='width="43"' height='height="16"' />****
|
||||
|
||||
****
|
||||
|
||||
**15. Simatic S7 Software:**
|
||||
|
||||
****
|
||||
|
||||
· Aggiunto FC136, FB136, DB288, modificato OB1 Segmento 11 per chiamare FC136
|
||||
|
||||
· Modificato in FB136 DB160 per DB120. Aggiunto UDT80, UDT 82, UDT 84, UDT 85
|
||||
|
||||
· Aggiunto al hardware Danfoss 54U2 - Nodo 16
|
||||
|
||||
· Programmato VLT con rampa a 3s
|
||||
|
||||
****
|
||||
|
||||
**<img src='image020.png' width='width="30"' height='height="12"' />******
|
||||
|
||||
****
|
||||
|
||||
· Nodo 16:
|
||||
|
||||
****
|
||||
|
||||
<img src='image021.png' width='width="20"' height='height="11"' />
|
||||
|
||||
· Nodo 3:
|
||||
|
||||
<img src='image022.png' width='width="32"' height='height="14"' />
|
||||
|
||||
· Nodo 18:
|
||||
|
||||
<img src='image023.png' width='width="33"' height='height="18"' />
|
||||
|
||||
· Aggiunto nodo profibus 16 PEW 640-647 / PAW 640-647
|
||||
|
||||
****
|
||||
|
||||
**<img src='image024.png' width='width="22"' height='height="25"' />******
|
||||
|
||||
· Chiamata a FC136 CIP Return Pump Control -> FC136 chiama a FB136
|
||||
|
||||
<img src='image025.png' width='width="29"' height='height="35"' />
|
||||
|
||||
· Aggiornati PEW/PAW per il VLT
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
**
|
||||
**
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
****
|
||||
|
||||
|
||||
## Imágenes Asociadas
|
||||
|
||||
![[image001.png]]
|
||||
|
||||
![[image002.png]]
|
||||
|
||||
![[image003.png]]
|
||||
|
||||
![[image004.png]]
|
||||
|
||||
![[image005.png]]
|
||||
|
||||
![[image006.png]]
|
||||
|
||||
![[image007.png]]
|
||||
|
||||
![[image008.png]]
|
||||
|
||||
![[image009.png]]
|
||||
|
||||
![[image010.png]]
|
||||
|
||||
![[image011.png]]
|
||||
|
||||
![[image012.png]]
|
||||
|
||||
![[image013.png]]
|
||||
|
||||
![[image014.png]]
|
||||
|
||||
![[image015.png]]
|
||||
|
||||
![[image016.png]]
|
||||
|
||||
![[image017.png]]
|
||||
|
||||
![[image018.png]]
|
||||
|
||||
![[image019.png]]
|
||||
|
||||
![[image020.png]]
|
||||
|
||||
![[image021.png]]
|
||||
|
||||
![[image022.png]]
|
||||
|
||||
![[image023.png]]
|
||||
|
||||
![[image024.png]]
|
||||
|
||||
![[image025.png]]
|
||||
|
||||
---
|
||||
|
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 212 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 116 KiB |
After Width: | Height: | Size: 108 KiB |
After Width: | Height: | Size: 142 KiB |
After Width: | Height: | Size: 104 KiB |
After Width: | Height: | Size: 132 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 110 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 124 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 75 KiB |
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 125 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 37 KiB |
|
@ -0,0 +1,243 @@
|
|||
# Índice de Contenido
|
||||
|
||||
- [Foglio di Modifica](#foglio-di-modifica)
|
||||
|
||||
---
|
||||
|
||||
<!-- 105407529388101f726de26910bad43b -->
|
||||
|
||||
## Foglio di Modifica
|
||||
|
||||
*Origen: FDM RNF032 E5.007299 - mv.htm*
|
||||
|
||||
FDM Name | CIP RETURN PUMP | |
|
||||
- | | |
|
||||
**FDM Number | 0001 | Date | 16/01/2025
|
||||
**Affaire | RNF0032, E5.007299-EXMU01UF, EQPT24542 | |
|
||||
**Master | _Eplan5 - > Eplan2.8 Creata revisione 02 di schema el._ | |
|
||||
**Author | Santini Paolo | |
|
||||
|
||||
---
|
||||
|
||||
BOM MODIFICATION |
|
||||
- |
|
||||
**Numero modifica lancio | 816479
|
||||
**Pilota Generale | EQPT24542
|
||||
**Pilota Elettrico ( NFT) | 43756949
|
||||
**Materiale Elettrico (NFT) | 43756950
|
||||
**Materiale test/programmazione E5.00 xxxx ( NFT) | 43756951
|
||||
**Etichetta Elettrica (NFT) | 43756953
|
||||
**Schema Elettrico (PEA) | 43756955
|
||||
**Pilota Originale Macchina 04260779401 |
|
||||
**Numero Modifica Aggiornamento Pilota | 816494
|
||||
|
||||
EPLAN P5 -> EPLAN 2.8 Codici Archiviazione Revisioni |
|
||||
- |
|
||||
**Numero modifica creazione versione 01. | 815955
|
||||
**Disegno elettrico numero. | 43756137
|
||||
**Numero modifica creazione versione 02. |
|
||||
**Numero modifica creazione versione 03. |
|
||||
**Numero modifica creazione versione 04. |
|
||||
**Numero modifica creazione versione 05. |
|
||||
**Numero modifica creazione versione 06 XX |
|
||||
|
||||
---
|
||||
|
||||
|
||||
|
||||
|
||||
FDM DESCRIPTION
|
||||
|
||||
<img src='image001.png' width='width="43"' height='height="14"' />
|
||||
|
||||
<img src='image002.png' width='width="42"' height='height="28"' />
|
||||
|
||||
**1- Pag.54 Nuova pagina Pompa CIP.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image003.png' width='width="35"' height='height="24"' /> -
|
||||
**2- Pag.58 Rimando per 0V.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image004.png' width='width="35"' height='height="24"' /> -
|
||||
**3- Pag.283 Inserite schede AI.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image005.png' width='width="35"' height='height="24"' /> -
|
||||
**4- Pag.285 Inserite schede DI e AI per nuove utenze.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image006.png' width='width="35"' height='height="24"' /> -
|
||||
**5- Pag.321 Allineata isola pneumatica a disegno pneumatico.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image007.png' width='width="35"' height='height="24"' /> -
|
||||
**6- Pag.327 Inserito nuovo inverter su rete profibus.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image008.png' width='width="35"' height='height="24"' /> -
|
||||
**7- Pag.356 Segnale di set per conduttivimetro.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image009.png' width='width="35"' height='height="24"' /> -
|
||||
**8- Pag.380 Nuove morsettiere per 24V safety emergenze.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image010.png' width='width="35"' height='height="24"' /> -
|
||||
**9- Pag.400 Segnali da flussimetro e conduttivimetro.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image011.png' width='width="35"' height='height="24"' /> -
|
||||
**10- Pag.657 Nuova pagina Sensori pressione e temperatura ritorno CIP.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image012.png' width='width="35"' height='height="24"' /> -
|
||||
**11- Pag.418 Nuova pagina Gestione flussimetro e conduttivimetro.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image013.png' width='width="35"' height='height="24"' /> -
|
||||
**12- Pag.657 Pressostato e temperatura ritorno CIP.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image014.png' width='width="35"' height='height="24"' /> -
|
||||
**13- Pag.659 Flowswitch ritorno CIP.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image015.png' width='width="35"' height='height="24"' /> -
|
||||
**14- Pag.660 Nuova pagina Feedback valvole drenaggio.**
|
||||
|
||||
---
|
||||
|
||||
<img src='image016.png' width='width="35"' height='height="24"' /> -
|
||||
-Nota per il tecnico cablatore : Controllare sempre il materiale evaso in distinta ( sotto allegata ) e
|
||||
|
||||
portare con se il materiale di consumo e lattrezzatura necessaria per
|
||||
|
||||
- la corretta realizzazione dellUpgrade.
|
||||
|
||||
-Note for the cabling technician : Always check the processed material in the list ( attached below )
|
||||
|
||||
and bring with you the consumables and equipment necessary for
|
||||
|
||||
the correct implementation of the Upgrade.
|
||||
|
||||
---
|
||||
|
||||
__In caso di sotituzione inverter ripetere tutte le prove di arresto in emergenza (con verifica rampe) e nel caso motore macchina anche di marcia jog con porte chiuse e porte aperte.__
|
||||
|
||||
---
|
||||
|
||||
__If the inverter is replaced, repeat all the emergency stop test (whit ramp check) and, in the case of the machine motor, also the jog running tests whit doors closed and doors open.__ -
|
||||
<img src='image017.png' width='width="43"' height='height="12"' />
|
||||
|
||||
<img src='image018.png' width='width="43"' height='height="9"' /> -
|
||||
<img src='image019.png' width='width="43"' height='height="16"' /> -
|
||||
**15. Simatic S7 Software:**
|
||||
|
||||
---
|
||||
|
||||
· Aggiunto FC136, FB136, DB288, modificato OB1 Segmento 11 per chiamare FC136
|
||||
|
||||
· Modificato in FB136 DB160 per DB120. Aggiunto UDT80, UDT 82, UDT 84, UDT 85
|
||||
|
||||
· Aggiunto al hardware Danfoss 54U2 - Nodo 16
|
||||
|
||||
· Programmato VLT con rampa a 3s
|
||||
|
||||
---
|
||||
|
||||
**<img src='image020.png' width='width="30"' height='height="12"' /> -
|
||||
· Nodo 16:
|
||||
|
||||
---
|
||||
|
||||
<img src='image021.png' width='width="20"' height='height="11"' />
|
||||
|
||||
· Nodo 3:
|
||||
|
||||
<img src='image022.png' width='width="32"' height='height="14"' />
|
||||
|
||||
· Nodo 18:
|
||||
|
||||
<img src='image023.png' width='width="33"' height='height="18"' />
|
||||
|
||||
· Aggiunto nodo profibus 16 PEW 640-647 / PAW 640-647
|
||||
|
||||
---
|
||||
|
||||
**<img src='image024.png' width='width="22"' height='height="25"' /> -
|
||||
|
||||
· Chiamata a FC136 CIP Return Pump Control -> FC136 chiama a FB136
|
||||
|
||||
<img src='image025.png' width='width="29"' height='height="35"' />
|
||||
|
||||
· Aggiornati PEW/PAW per il VLT
|
||||
|
||||
---
|
||||
|
||||
|
||||
![[image001.png]]
|
||||
|
||||
![[image002.png]]
|
||||
|
||||
![[image003.png]]
|
||||
|
||||
![[image004.png]]
|
||||
|
||||
![[image005.png]]
|
||||
|
||||
![[image006.png]]
|
||||
|
||||
![[image007.png]]
|
||||
|
||||
![[image008.png]]
|
||||
|
||||
![[image009.png]]
|
||||
|
||||
![[image010.png]]
|
||||
|
||||
![[image011.png]]
|
||||
|
||||
![[image012.png]]
|
||||
|
||||
![[image013.png]]
|
||||
|
||||
![[image014.png]]
|
||||
|
||||
![[image015.png]]
|
||||
|
||||
![[image016.png]]
|
||||
|
||||
![[image017.png]]
|
||||
|
||||
![[image018.png]]
|
||||
|
||||
![[image019.png]]
|
||||
|
||||
![[image020.png]]
|
||||
|
||||
![[image021.png]]
|
||||
|
||||
![[image022.png]]
|
||||
|
||||
![[image023.png]]
|
||||
|
||||
![[image024.png]]
|
||||
|
||||
![[image025.png]]
|
||||
|
||||
---
|
||||
|
|
@ -0,0 +1 @@
|
|||
{}
|
|
@ -0,0 +1,16 @@
|
|||
|
||||
TIA Mixer :
|
||||
![[Pasted image 20250403152457.png]]
|
||||
Filler:
|
||||
![[Pasted image 20250403152601.png]]
|
||||
|
||||
|
||||
|
||||
![[Pasted image 20250403152526.png]]
|
||||
|
||||
![[Pasted image 20250403152544.png]]
|
||||
|
||||
|
||||
|
||||
|
||||
![[Pasted image 20250404152028.png]]
|
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 77 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 35 KiB |
|
@ -0,0 +1,8 @@
|
|||
|
||||
|
||||
|
||||
|
||||
| Mixer | Local TSAP | Remote TSAP | |
|
||||
| ------ | ---------- | ----------- | --- |
|
||||
| Mixer | 2 | 1 | |
|
||||
| Filler | 1 | 2 | |
|
|
@ -10,8 +10,6 @@ tags: [excalidraw]
|
|||
# Excalidraw Data
|
||||
|
||||
## Text Elements
|
||||
500 ^l6oej9lH
|
||||
|
||||
## Embedded Files
|
||||
12c4a92df27e232b436a203a090a3e2a0e21b789: [[04275224102000 P&ID SAE346.png]]
|
||||
|
||||
|
@ -22,16 +20,16 @@ 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
|
||||
```
|
||||
%%
|
|
@ -0,0 +1,217 @@
|
|||
---
|
||||
|
||||
excalidraw-plugin: parsed
|
||||
tags: [excalidraw]
|
||||
|
||||
---
|
||||
==⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠== You can decompress Drawing data with the command palette: 'Decompress current Excalidraw file'. For more info check in plugin settings under 'Saving'
|
||||
|
||||
|
||||
# Excalidraw Data
|
||||
|
||||
## Text Elements
|
||||
0166M1 - DANFOSS 7.5KW ^2WS6h2sp
|
||||
|
||||
P3 OVERPRESSURE PUMP ^kRndMZnC
|
||||
|
||||
0169M2 - 169K8 ^mQBW5II4
|
||||
|
||||
RECYRCLE PUMP P6 ^u9CJsoog
|
||||
|
||||
801U4 - WATER MOTOR VALVE
|
||||
801U0 - PROMAG H300 (FTN301) ^QVGBoFht
|
||||
|
||||
802U4 - SYRUP FLOWMETER
|
||||
802U0 - PROMASS F300 (FTN302) ^5mC6EjGI
|
||||
|
||||
801U4 - CO2 MOTOR VALVE
|
||||
803U0 - PROMASS F300 (FTM303) ^GnvtHJHy
|
||||
|
||||
805B1 CO2 TANK PRESSURE CONTROL ^ceduwcvF
|
||||
|
||||
806U1 NORGREN VALVE Herion VP23
|
||||
CO2 FLOW REGULATION ^EJ3dKEq6
|
||||
|
||||
807B1 AIR VACUUM CO2 FLOW CONTROL ^aY9WFS3X
|
||||
|
||||
802U0 - ANTON PAAR ^NNZGEOk6
|
||||
|
||||
0160M2 - 160K4 ^DAslJAjv
|
||||
|
||||
WATER PUMP P1 - SOFTSTART ^ioAuVLXq
|
||||
|
||||
0163M2 - 163K8 - 163U1 - 18.5KW ^4QZA5jRL
|
||||
|
||||
SYRUP PUMP P2 ^2sKCeWbG
|
||||
|
||||
## Embedded Files
|
||||
1ab8bc830f8dd9e36c8d12702b9a902ce76832a9: [[motorS.svg]]
|
||||
|
||||
%%
|
||||
## Drawing
|
||||
```compressed-json
|
||||
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
|
||||
```
|
||||
%%
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
|
||||
![[Pasted image 20250401163835.png]]
|
||||
|
||||
![[Pasted image 20250401163951.png]]
|
|
@ -0,0 +1,117 @@
|
|||
# Mapping SAE346-Master Tia18
|
||||
|
||||
## Inputs (DI → E)
|
||||
|
||||
| Software Side | Software Address | Software Description | PLC Side | PLC Description | Coincidencia | Equival. |
|
||||
| ----------------------------- | ---------------- | ---------------------------------------- | ----------------- | -------------------------------- | ------------ | -------- |
|
||||
| DI_PPM303_Contactor | E2.5 | PPM303 - Product Pump Feedback | - | - | - | P3/303 |
|
||||
| DI_Emergency_Pressed | M3005.3 | Electrical Panel Emergency Button | E5.0 | ==MAX TEMPERATURE ALARM== | | |
|
||||
| DI_Emergency_Pilz_On | E0.0 | Pilz Emergency | E5.1 (0760K1) | AUXILIARY CIRC. ON | Alta | - |
|
||||
| | | | E5.2 | ==EMERGENCY EMERGENZA== | | |
|
||||
| DI_UPSBatteryReady | E1.4 | UPS Battery ready | E5.3 (0925A1/4) | BUFFER BATTERY READY | Alta | - |
|
||||
| DI_UPSAlarm | E1.1 | UPS Alarm | E5.4 (0925A1/5) | UPS ALARM | Alta | - |
|
||||
| DI_UPSsupply | E1.2 | UPS supply OK | E5.5 (0925A1/6) | BATTERY POWER SUPPLY | Alta | - |
|
||||
| ==DI_PPN301_SoftStart_Ovrld== | E1.3 | PPN301 - Water_Pump_SoftStart_Ovrld | E10.0 (0160Q2) | P1 WATER PUMP OVERLOAD SWITCH | Alta | P1/301 |
|
||||
| ==DI_PPN301_Ovrld== | E2.0 | PPN301 - Deaireator Pump Overload | E10.0 (0160Q2) | P1 WATER PUMP OVERLOAD SWITCH | Alta | P1/301 |
|
||||
| DI_PPP302_Ovrld | E2.2 | PPP302 - Syrup Pump Overload | E10.1 (0163Q2) | SYRUP PUMP OVERLOAD | Alta | P2/302 |
|
||||
| DI_PPM303_Ovrld | E2.4 | PPM303 - Product Pump Overload | E10.2 (0166Q2) | OVERPRESSURE PUMP THERMIC SWITCH | Alta | P3/303 |
|
||||
| DI_PPM306_Ovrld | E2.6 | PPM306 - Recirculating Pump Overload | E10.3 (0169Q2) | RECIRCULATION PUMP OVERLOAD | Alta | P6/306 |
|
||||
| DI_PPN301_Contactor | E2.1 | PPN301 - Deaireator Pump Feedback | E11.0 (0160K4) | P1 WATER PUMP FAULT / Feedback | Alta | P1/301 |
|
||||
| DI_PPP302_Contactor | E2.3 | PPP302 - Syrup Pump Feedback | E11.1 (0163K8) | SYRUP PUMP FAULT / Feedback | Alta | P2/302 |
|
||||
| DI_PPM306_Contactor | E2.7 | PPM306 - Recirculating Pump Feedback | E11.3 (0169K8) | PRODUCT RECYCLE PUMP | Alta | P6/306 |
|
||||
| | | | E12.0 | ==SOFTSTART RUNNING== | | |
|
||||
| | | | E12.1 | ==OVERLOAD ANTON PAAR== | | |
|
||||
| DI_Air_InletPress_OK | E4.1 | Air Pressure Switch | E12.4 (0934S1) | AIR PRESSURE | Alta | - |
|
||||
| DI_LSN301L | E0.6 | LSN301_L - Deaireator Tank Minimun Level | E12.5 (0934B3) | DEARETOR 1 MINIMUM LEVELPROBE | Alta | - |
|
||||
| DI_LSM302L | E1.0 | LSM302_L - Product Tank Minimun Level | E12.6 (0934B6) | STORE TANK MIN LEVELPROBE | Alta | - |
|
||||
| DI_CIP_CIP_Enable | E303.2 | From CIP Enable | E60.0 | CIP MODE | Alta | |
|
||||
| DI_CIP_CIP_Rinse | E3.5 | From CIP Running | E60.1 | RINSE MODE | Media | |
|
||||
| DI_CIP_Drain | E3.6 | From CIP Drain | E60.2 | CIP DRAINAGE REQUEST | Alta | |
|
||||
| DI_CIP_End | E3.7 | From CIP End (Completed) | E60.3 | CIP COMPLETED | Alta | |
|
||||
| DI_SyrRoom_SyrPump_Running | E3.0 | From Syrup Room - Syrup Pump Running | E68.0 (SYR.0) | SYRUPS ROOM PUMP RUN | Alta | |
|
||||
| DI_SyrRoom_WatPumpReady | E3.2 | From Syrup Room - Water Pump Ready | E68.1 (SYR.1) | WATER PUMP SYRUP ROOM | Alta | |
|
||||
| DI_AVM346_Open | E304.6 | AVM346 - Feedback ON | E102.2 (0951S6) | AVM346 OPEN | Alta | |
|
||||
| DI_AVM362_Open | E304.4 | AVM362 - Feedback ON | E102.3 (0951S8) | AVM362 OPEN | Alta | |
|
||||
| DI_AVM346_Close | E304.7 | AVM346 - Feedback OFF | E112.2 (0967A1/3) | AVM346 CLOSED | Alta | |
|
||||
| DI_AVM362_Close | E304.5 | AVM362 - Feedback OFF | E112.3 (0967A1/4) | AVM362 CHIUSA | Alta | |
|
||||
| DI_RMM301_Closed | E1.5 | RMM301 - Feedback OFF (VM1WATER) | E112.4 (0967A1/5) | CLOSED VALVE RMM301 | Alta | - |
|
||||
| DI_RMP302_Closed | E1.6 | RMP302 - Feedback OFF (VM2 SYRUP) | E112.5 (0967A1/6) | CLOSED VALVE RMP302 | Alta | - |
|
||||
| DI_RMM303_Closed | E1.7 | RMM303 - Feedback OFF (VM3 CO2) | E112.6 (0967A1/7) | CLOSED VALVE RMM303 | Alta | - |
|
||||
|
||||
## Salidas Digitales (DO → A)
|
||||
|
||||
| Software Side | Software Address | Software Description | PLC Side | PLC Description | Coincidencia | Equival. |
|
||||
| ------------------------ | ---------------- | ----------------------------------------------- | -------------- | ------------------------------------------------------ | ------------ | -------- |
|
||||
| DO_PPM303_Run | A2.6 | DO_PPM303_Run | - | - | - | P3/303 |
|
||||
| DO_HMIPowerSupply | A2.7 | Cut Power to PC | A5.0 | HMI POWER SUPPLY RESTORE | Alta | - |
|
||||
| | | | ==A5.1== | ==CONTROL CIRCUIT RUN== | | |
|
||||
| DO_Yellow_Lamp | A2.3 | DO_Yellow_Lamp | A5.5 (1046H0) | YELLOW | Alta | - |
|
||||
| DO_Horn | A2.0 | DO_Horn | A5.7 (1046H0) | ACOUSTIC ALARM | Alta | - |
|
||||
| DO_PPN301_Run | A2.4 | DO_PPN301_SoftStartPower | A11.0 (1052K1) | WATER PUMP CONTROL | Alta | P1/301 |
|
||||
| DO_PPP302_Run | A2.5 | DO_PPP302_Run | A11.1 | SYRUP PUMP CONTROL | Alta | P2/302 |
|
||||
| DO_PPM306_Run | A0.7 | DO_PPM306_Run | A11.3 | RECIRCULATION PUMP CONTROL | Alta | P6/306 |
|
||||
| DO_SyrupValve_Enable | A0.0 | Valve Power Enable (Power Supply Analog Signal) | A11.6 (1053K6) | SYRUP VALVE ENABLE | Alta | |
|
||||
| DO_Flr1_CIP_DrainRequest | A1.4 | FILLER - Cip Drain Request | A60.0 (1055U0) | CIP REQUEST | Media | |
|
||||
| DO_Flr1_CIP_CleaningEnd | A1.5 | FILLER - Cip Cleaning Ended | A60.1 (1055U2) | CIP DRAINAGE FINISHED | Media | |
|
||||
| DO_SyRm_SyrupReques | A1.0 | To syrup Room Syrup Request | A68.0 (1062U0) | SIRUP REQUEST | Alta | |
|
||||
| DO_SyRm_WaterRequest | A7.6 | To syrup Room Water Request | A68.1 (1062U2) | ==WATER REQUEST== | Alta | |
|
||||
| DO_AVM311 | A16.0 | MIX - Product Tank Blow Off | A100.0 | SFIATO SATURATORE / CARBONATOR BLOW-OFF | Alta | |
|
||||
| DO_AVM313 | A16.1 | MIX - Product Recirculation | A100.1 | RICIRCOLO PRODOTTO / PRODUCT RECYCLE | Alta | |
|
||||
| DO_AVN314 | A16.2 | MIX - Deaireator Drain | A100.2 | SCARICO DEAREATORE / DEAREATOR BLOW-OFF | Alta | |
|
||||
| DO_AVM315 | A16.3 | MIX - Product Tank Drain | A100.3 | SCARICO SATURATORE / CARBONATOR DISCHARGE | Alta | |
|
||||
| DO_AVP316 | A16.4 | MIX - Syrup Tank Drain | A100.4 | SCARICO SCIROPPO / SYRUP BLOW-OFF | Alta | |
|
||||
| DO_AVM317 | A16.5 | MIX - Product Tank Spray Ball | A100.5 | DIVOSFERA SATURATORE / CARBONATOR SPRAY BALL | Alta | |
|
||||
| DO_AVN318 | A16.6 | MIX - Deaireator Over Fill | A100.6 | PIENO TROPPO DEAREATORE / DEAREATOR OVERLOAD | Alta | |
|
||||
| DO_AVM321 | A16.7 | MIX - Product Tank Over Fill | A100.7 | TROPPO PIENO SATURATORE / CARBONATOR OERLOAD | Alta | |
|
||||
| DO_AVM322 | A17.0 | MIX - Water Pump PPN301 Priming | A101.0 | SFIATO ARIA POMPA PRODOTTO / PRODUCT PUMP AIR BLOW-OFF | Media | |
|
||||
| DO_AVM326 | A17.3 | MIX - CO2 Injection Shut Off | A101.3 | INTERCETTAZIONE INIETT.CO2 / CO2 INJECTOR INTERCEPTION | Alta | |
|
||||
| DO_AVN327 | A17.4 | MIX - Deaireator Tank Spray Ball | A101.4 | DEAREATORE DIVOSFERA / DEAREATOR SPRAY BALL | Alta | |
|
||||
| DO_AVP344 | A17.6 | MIX - Syrup Line Drain | A101.6 | SCARICO TUBO SCIROPPO / SYRUP PIPE BLOW-OFF | Alta | |
|
||||
| DO_AVM345 | A17.7 | MIX - Product Chiller Drain | A101.7 | SCARICO SCAMBIATORE / EXCHANGER R DISCHARGE | Media | |
|
||||
| DO_AVM362 | A18.1 | MIX - Product Outlet | A102.1 | USCITA PRODOTTO / PRODUCT OUTLET | Alta | |
|
||||
| DO_AVM381 | A18.3 | MIX - Product Recirculation With Chiller | A102.3 | RICIRCOLO PRODOTTO / PRODUCT RECYCLE | Alta | |
|
||||
| DO_AVP361 | A18.0 | MIX - Syrup Tank Spray Ball | A102.6 | DIVOSFERA SCIROPPO / SYRUP SPRAY BALL | Alta | |
|
||||
| DO_RVN302 | A19.0 | MIX - Deaireator Floater | A103.4 | GALLEGGIANTE DEAREATORE / DEAREATOR FLOATER | Alta | |
|
||||
| DO_RVN302_1 | A19.1 | MIX - Deaireator 2 Fill Up | A103.5 | INVASAMENTO DEAREATORE / DEAREATOR MAX. FILL | Media | |
|
||||
|
||||
## Analog Inputs (AI → IW)
|
||||
|
||||
| Software Side | Software Address | Software Description | PLC Side | PLC Description | Coincidencia |
|
||||
| ------------- | ---------------- | ------------------------------------ | --------------------- | ------------------------------------------- | ------------ |
|
||||
| P_AI_TTN321 | EW112 | TTN321 - Deaireator Temperature | IW800 (990U2 - 990B2) | H2O DEAREATOR TEMP | Alta |
|
||||
| P_AI_LTM302 | EW100 | LTM302 - Product Tank Level | IW804 (991B2) | STORAGE TANK LEVEL | Alta |
|
||||
| P_AI_PTM304 | EW102 | PTM304 - Product Tank Pressure | IW806 (991B6) | STORAGE TANK PRESSURE SENSOR | Alta |
|
||||
| P_AI_LTP303 | EW110 | LTP303 - Syrup Tank Level | IW808 (992B2) | SYROP TANK LEVEL | Alta |
|
||||
| P_AI_PTF203 | EW118 | PTF203 - Differential Pressure | IW810 (992B6) | DIFFERENTIAL PRESSURE GAUGE | Alta |
|
||||
| P_AI_TTM306 | EW108 | TTM306 - Chiller Temperature | IW812 (993U2 - 993B2) | PRODUCT TEMPERATURE SENSOR | Media |
|
||||
| P_AI_PTP338 | P_AI_PTP338 | PTP338 - Syrup Inlet Pressure | IW816 (994B3) | INLET SYRUP PRESSURE SENSOR | Baja |
|
||||
| P_AI_RVN304 | EW104 | RVN304 - Deaireation Valve | IW820 | AIR VACUUM CO2 FLOW CONTROL | Baja |
|
||||
| P_AI_PCM306 | EW114 | PCM306 - Gas Pressure Injection | IW824 | NORGREN (PV) VALVE ANALOG OUTPUT CO2 PCM306 | Baja |
|
||||
| P_AI_RVM301 | EW106 | RVM301 - Product Tank Pressure Valve | IW826 | ==CO2 TANK PRESSURE CONTROL== | |
|
||||
|
||||
NORGREN Gasatura Produtto CO2
|
||||
|
||||
## Analog Outputs (AO → AW)
|
||||
|
||||
| Software Side | Software Address | Software Description | PLC Side | PLC Description | Coincidencia |
|
||||
| ------------- | ---------------- | --------------------------------------- | -------- | ---------------------------------- | ------------ |
|
||||
| P_AO_RMM301 | AW100 | RMM301 - Water Flow Control | AW800 | WATER MOTOR VALVE | Alta |
|
||||
| P_AO_RMM303 | AW104 | RMM303 - Gas Flow Control | AW802 | CO2 MOTOR VALVE | Alta |
|
||||
| P_AO_RMP302 | AW102 | RMP302 - Syrup Flow Control | AW804 | SYRUP MOTOR VALVE | Alta |
|
||||
| P_AO_RVP303 | AW112 | RVP303 - Syrup Tank Level Valve | AW806 | SYRUP INFEED VALVE | Media |
|
||||
| P_AO_RVM319 | AW110 | RVM319 - Chiller Temperature control | AW812 | PRODUCT TEMPERATURE | Alta |
|
||||
| P_AO_RVN304 | AW108 | RVN304 - Deaireation Valve | AW820 | AIR VACUUM CO2 FLOW CONTROL | Media |
|
||||
| P_AO_RVM301 | AW106 | RVM301 - Product Tank Pressure Valve | AW826 | CO2 TANK PRESSURE CONTROL | Media |
|
||||
| P_AO_PCM306 | AW114 | PCM306 - Gas Injection Pressure Control | AW824 | NOGREN VALVE ANALOGICAL INPUT (SP) | Alta |
|
||||
|
||||
## Legend of equivalences
|
||||
|
||||
- ___K_ : COMMAND RELAY - FEEDBACK SIGNAL (Señales de retroalimentación)
|
||||
- ___Q_ : TERMIC OVERLOAD SIGNAL (Señales de sobrecarga térmica)
|
||||
- P1 = WATER PUMP = SOFTSTART = 301 (160Q2:E10.0 = 160K4:E11.0)
|
||||
- P2 = SYRUP PUMP = 302 (163Q2:E10.1 = 163K8:E11.1)
|
||||
- P3 = OVERPRESSURE PRODUCT PUMP = 303 (166Q2:E10.2)
|
||||
- P6 = RECYCLE PUMP = 306 (169Q2:E10.3 = 169K8:E11.3)
|
||||
|
||||
* Anton Paar = Analizatore
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
|
||||
### PLC
|
||||
***
|
||||
|
||||
| IO | Tag | Descripcion | Descripcion |
|
||||
| ------ | ------------- | ---------------------------------- | ---------------------------- |
|
||||
| E5.0 | | MAX TEMPERATURE ALARM | |
|
||||
| E5.1 | 0760K1 | AUXILIARY CIRC. ON | |
|
||||
| E5.2 | 0760S4 | EMERGENCY EMERGENZA | |
|
||||
| E5.3 | 0925A1/4 | BUFFER BATTERY READY | |
|
||||
| E5.4 | 0925A1/5 | UPS ALARM | |
|
||||
| E5.5 | 0925A1/6 | BATTERY POWER SUPPLY | |
|
||||
| E10.0 | 0160Q2 | P1 WATER PUMP OVERLOAD SWITCH | |
|
||||
| E10.1 | 0163Q2 | SYRUP PUMP OVERLOAD | |
|
||||
| E10.2 | 0166Q2 | OVERPRESSURE PUMP THERMIC SWITCH | |
|
||||
| E10.3 | 0169Q2 | RECIRCULATION PUMP OVERLOAD | |
|
||||
| E11.0 | 0160K4 | P1 WATER PUMP FAULT / Feedback | |
|
||||
| E11.1 | 0163K8 | SYRUP PUMP FAULT / Feedback | |
|
||||
| E11.3 | 0169K8 | PRODUCT RECYCLE PUMP | |
|
||||
| E12.0 | | SOFTSTART RUNNING | |
|
||||
| E12.1 | 0820F8 | OVERLOAD ANTON PAAR | |
|
||||
| E12.4 | 0934S1 | AIR PRESSURE | |
|
||||
| E12.5 | 0934B3 | DEARETOR 1 MINIMUM LEVELPROBE | |
|
||||
| E12.6 | 0934B6 | STORE TANK MIN LEVELPROBE | |
|
||||
| E60.0 | | CIP MODE | |
|
||||
| E60.1 | | RINSE MODE | |
|
||||
| E60.2 | | CIP DRAINAGE REQUEST | |
|
||||
| E60.3 | | CIP COMPLETED | |
|
||||
| E68.0 | SYR.0 | SYRUPS ROOM PUMP RUN | |
|
||||
| E68.1 | SYR.1 | WATER PUMP SYRUP ROOM | |
|
||||
| E102.3 | 0951S8 | AVM362 OPEN | |
|
||||
| E102.2 | 0951S6 | AVM346 OPEN | |
|
||||
| E112.2 | 0967A1/3 | AVM346 CLOSED | |
|
||||
| E112.3 | 0967A1/4 | AVM362 CHIUSA | |
|
||||
| E112.4 | 0967A1/5 | CLOSED VALVE RMM301 | |
|
||||
| E112.5 | 0967A1/6 | CLOSED VALVE RMP302 | |
|
||||
| E112.6 | 0967A1/7 | CLOSED VALVE RMM303 | |
|
||||
| | | | |
|
||||
| IW800 | 990U2 - 990B2 | H2O DEAREATOR TEMP | |
|
||||
| IW804 | 991B2 | STORAGE TANK LEVEL | |
|
||||
| IW806 | 991B6 | STORAGE TANK PRESSURE SENSOR | |
|
||||
| IW808 | 992B2 | SYROP TANK LEVEL | |
|
||||
| IW810 | 992B6 | DIFFERENTIAL PRESSURE GAUGE | |
|
||||
| IW812 | 993U2 - 993B2 | PRODUCT TEMPERATURE SENSOR | |
|
||||
| IW816 | 994B3 | INLET SYRUP PRESSURE SENSOR | |
|
||||
| IW820 | | AIR VACUUM CO2 FLOW CONTROL | |
|
||||
| IW824 | | NORGREN (PV) VALVE ANALOG OUTPUT | |
|
||||
| IW826 | 805B1 | CO2 TANK PRESSURE CONTROL | |
|
||||
| | | | |
|
||||
| AW800 | | WATER MOTOR VALVE | |
|
||||
| AW802 | | CO2 MOTOR VALVE | |
|
||||
| AW804 | | SYRUP MOTOR VALVE | |
|
||||
| AW806 | | SYRUP INFEED VALVE | |
|
||||
| AW812 | | PRODUCT TEMPERATURE | |
|
||||
| AW820 | | AIR VACUUM CO2 FLOW CONTROL | |
|
||||
| AW824 | | NOGREN VALVE ANALOGICAL INPUT (SP) | |
|
||||
| AW826 | | CO2 TANK PRESSURE CONTROL | |
|
||||
| A5.0 | | HMI POWER SUPPLY RESTORE | |
|
||||
| A5.1 | | CONTROL CIRCUIT RUN | |
|
||||
| A5.5 | 1046H0 | YELLOW | |
|
||||
| A5.7 | 1046H0 | ACOUSTIC ALARM | |
|
||||
| A11.0 | 1052K1 | WATER PUMP CONTROL | |
|
||||
| A11.1 | | SYRUP PUMP CONTROL | |
|
||||
| A11.3 | | RECIRCULATION PUMP CONTROL | |
|
||||
| A11.6 | 1053K6 | SYRUP VALVE ENABLE | |
|
||||
| A60.0 | 1055U0 | CIP REQUEST | |
|
||||
| A60.1 | 1055U2 | CIP DRAINAGE FINISHED | |
|
||||
| A68.0 | 1062U0 | SIRUP REQUEST | |
|
||||
| A68.1 | 1062U2 | WATER REQUEST | |
|
||||
| | | | |
|
||||
| A100.0 | | SFIATO SATURATORE | CARBONATOR BLOW-OFF |
|
||||
| A100.1 | | RICIRCOLO PRODOTTO | PRODUCT RECYCLE |
|
||||
| A100.2 | | SCARICO DEAREATORE | DEAREATOR BLOW-OFF |
|
||||
| A100.3 | | SCARICO SATURATORE | CARBONATOR DISCHARGE |
|
||||
| A100.4 | | SCARICO SCIROPPO | SYRUP BLOW-OFF |
|
||||
| A100.5 | | DIVOSFERA SATURATORE | CARBONATOR SPRAY BALL |
|
||||
| A100.6 | | PIENO TROPPO DEAREATORE | DEAREATOR OVERLOAD |
|
||||
| A100.7 | | TROPPO PIENO SATURATORE | CARBONATOR OERLOAD |
|
||||
| A101.0 | | SFIATO ARIA POMPA PRODOTTO | PRODUCT PUMP AIR BLOW-OFF |
|
||||
| A101.1 | | SCARICO SERPENTINA | TUBULAR EL. BLOW-OFF |
|
||||
| A101.2 | | RICICLO SCIROPPO START-UP | SYRUP RECIRCULATING START-UP |
|
||||
| A101.3 | | INTERCETTAZIONE INIETT.CO2 | CO2 INJECTOR INTERCEPTION |
|
||||
| A101.4 | | DEAREATORE DIVOSFERA | DEAREATOR SPRAY BALL |
|
||||
| A101.5 | | DEAREAZ. ACOUA IN RISCIACOUO | DEAREATOR RINSING WATER |
|
||||
| A101.6 | | SCARICO TUBO SCIROPPO | SYRUP PIPE BLOW-OFF |
|
||||
| A101.7 | | SCARICO SCAMBIATORE | EXCHANGER R DISCHARGE |
|
||||
| A102.1 | | USCITA PRODOTTO | PRODUCT OUTLET |
|
||||
| A102.3 | | RICIRCOLO PRODOTTO | PRODUCT RECYCLE |
|
||||
| A102.4 | | SANIFICAZIONE | SANITIZING |
|
||||
| A102.5 | | DRENAGGIO TUB. SANIFIC. | SANITIZING PIPE DRAINAGE |
|
||||
| A102.6 | | DIVOSFERA SCIROPPO | SYRUP SPRAY BALL |
|
||||
| A103.4 | | GALLEGGIANTE DEAREATORE | DEAREATOR FLOATER |
|
||||
| A103.5 | | INVASAMENTO DEAREATORE | DEAREATOR MAX. FILL |
|
After Width: | Height: | Size: 954 KiB |