73 lines
2.0 KiB
Markdown
73 lines
2.0 KiB
Markdown
***
|
||
|
||
![[Pasted image 20250511144146.png]]
|
||
|
||
|
||
![[Pasted image 20250511151234.png|1100]]
|
||
|
||
```plantuml
|
||
@startuml "Process Monitoring System"
|
||
|
||
' Title and styling
|
||
title Process Monitoring System with Signal Conversion
|
||
skinparam componentStyle rectangle
|
||
skinparam backgroundColor white
|
||
skinparam defaultTextAlignment center
|
||
|
||
' Define main packages
|
||
package "Syrup Line" {
|
||
rectangle "Syrup Pipe" as syrup #ADD8E6
|
||
|
||
component "Maselli UR29\nRefractometer" as ur29 #FFDD88
|
||
component "ADAM Module\n(RS485 to 4-20mA)" as adam1 #ADD8E6
|
||
note bottom of adam1: Converts RS485 to 4-20mA
|
||
|
||
component "Maselli UR62\nRefractometer" as ur62 #FFDD88
|
||
component "ADAM Module\n(RS485 to 4-20mA)" as adam2 #ADD8E6
|
||
note bottom of adam2: Converts RS485 to 4-20mA
|
||
}
|
||
|
||
package "Water Line" {
|
||
rectangle "Water Pipe" as water #ADD8E6
|
||
|
||
component "Conductivity 401U3\nProbe" as probe #FFDD88
|
||
component "2405 Knick\nTransmitter" as knick #B6D7A8
|
||
note bottom of knick: Converts conductivity signals to 4-20mA
|
||
}
|
||
|
||
component "PLC\nControl System" as plc #D5A6BD
|
||
|
||
' Connections
|
||
syrup --> ur29 : "Process\nMeasurement"
|
||
syrup --> ur62 : "Process\nMeasurement"
|
||
water --> probe : "Process\nMeasurement"
|
||
|
||
ur29 --> adam1 : "RS485"
|
||
ur62 --> adam2 : "RS485"
|
||
probe --> knick : "Conductivity\nSignal"
|
||
|
||
adam1 --> plc : "4-20mA"
|
||
adam2 --> plc : "4-20mA"
|
||
knick --> plc : "4-20mA"
|
||
|
||
@enduml
|
||
```
|
||
### The equipment we tested was:
|
||
***
|
||
* Syrup / Brix:
|
||
* Maselli UR29 - Reflectometer
|
||
* ADAM 4021 converters for connecting the PLC
|
||
* [ur24_gb_hr.pdf](file:///C:%5CTrabajo%5CManuales%5CMaselli%5Cur24_gb_hr.pdf)
|
||
* Maselli UR62 - Reflectometer
|
||
* ADAM 4021 converters for connecting the PLC
|
||
* [ur62_gb_hr.pdf](file:///C:%5CTrabajo%5CManuales%5CMaselli%5Cur62_gb_hr.pdf)
|
||
* Water :
|
||
* Clritalia: Conductivity - 401U3-B3C0Y0
|
||
* K=1 cm (campo di misura 0-50000 uS)
|
||
* [401U -gb](https://www.clritalia.com/index.php?option=com_content&view=article&id=288:401u&catid=112&Itemid=265&lang=en)
|
||
* Stratos Eco 2405 Knick converter for transmitting to the PLC
|
||
|
||
|
||
|
||
|