Emerson FM-3 Installationshandbuch Seite 109

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 230
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 108
95
Programming
Auger Filler with Inputs to Adjust the Fill Amount
Incremental indexes are used to squirt a specified amount of food product into a box. Inputs are
used to adjust the index distance. It would be much simpler to adjust the index distance with an
OIT-3165 operator interface panel, but inputs could be used as described below.
ModuleOutput.3=OFF
ModuleOutput.4=OFF
Do While (TRUE) ‘Repeat until the program is halted
If (ModuleInput.2=ON) Then ‘Fill a box if the “Go” input is on.
Index.1.Initiate ‘Incremental,Dist=16.00oz,Vel=16.0oz/s
Wait For Index.AnyCommandComplete
Endif
‘Increase the fill amount once every time ModuleInput.3 is pressed
If((ModuleInput.3=ON) AND (ModuleOutput.3=OFF)) Then
Index.1.Dist = Index.1.Dist + 0.10 ‘ounces
ModuleOutput.3=ON
‘ModuleOutput.3 is used to make sure that the distance is
‘incriminated only once each time ModuleInput.3 is pressed.
If (Index.1.Dist > 20) Then
ModuleOutput.1=ON ‘Long index output
Else
ModuleOutput.1=OFF
Endif
Endif
If((ModuleInput.3=OFF) AND (ModuleOutput.3=ON)) Then
ModuleOutput.3=OFF
Endif
‘Increase the fill amount once every time ModuleInput.4 is pressed.
If ((ModuleInput.4=ON) AND (ModuleOutput.4=OFF)) Then
Index.1.Dist = Index.1.Dist - 0.10 ‘ounces
ModuleOutput.4=ON
‘ModuleOutput.4 is used to make sure that the distance is
‘incriminated only once each time ModuleInput.4 is pressed.
If (Index.1.Dist < 12) Then
ModuleOutput.2=ON ‘Short index output
Else
ModuleOutput.2=OFF
Endif
Endif
If((ModuleInput.4=OFF) AND (ModuleOutput.4=ON)) Then
ModuleOutput.4=OFF
Endif
Loop
Seitenansicht 108
1 2 ... 104 105 106 107 108 109 110 111 112 113 114 ... 229 230

Kommentare zu diesen Handbüchern

Keine Kommentare