· The basic types of discrete logic problems are,
e.g. if the temperature is too high and there is an ingot in only one bay, turn on fan 1.
T1 = temperature overheat sensor
in Boolean F1 = T1 * (B1 EOR B2)
or F1 = T1 * (( B1 * B2 ) + ( B2 * B1 ))
or F1 = T1 * B1 * B2 + T1 * B2 * B1
e.g., when an oven is on, the PLC adjusts temperature.When it is off doors can be opened/closed.
· Try the example shown below,
· Consider the more complicated design that follows,