Variables defined within a module are called local variables. These variables have separate values for each instance of the module where they are defined. For example, if a module called FeedPump has a variable called Flow, and there are two instances of the module, then there are two instances of the local variable Flow. Each instance may have different values (i.e. each pump may have a different flow rate).