Friday, December 2, 2011

The mbed Microcontrollers LPC1768


The mbed Microcontrollers LPC1768  from ARM..

You can see picture

LPC1768 have 40 PIN or 40 I/O
Microcontrollers excess Ethernet so its is can connect to world

The mbed microcontrollers support lots of interfaces, so you can connect them to all sorts of input and output circuits and modules.
Downloading programs is as simple as using a USB Flash Drive. Plug it in, drop on your program binary, and you're up and running!
Read more >>

Sunday, July 24, 2011

Analog Input PLC

An analog input is an input signal that has a continuous signal. Typical analog inputs may vary from 0 to 20 milliamps, 4 to 20 milliamps, or 0 to 10 volts. In the following example, a level transmitter monitors the level of liquid in a tank. Depending on the level transmitter, the signal to the PLC can either increase or decrease as the level increases or decreases. 

Read more >>

Discrete Input PLC

A discrete input, also referred to as a digital input, is an input that is either in an ON or OFF condition. Pushbuttons, toggle switches, limit switches, proximity switches, and contact closures are examples of discrete sensors which are connected to the PLCs discrete or digital inputs. In the ON condition a discrete input may be referred to as a logic 1 or a logic high. In the OFF condition a discrete input may be referred to as a logic 0 or a logic low.

Read more >>

Tuesday, June 28, 2011

Actuator With Programmable Logic Controller (PLC)

The language of PLCs consists of a commonly used set of terms; many of which are unique to PLCs. In order to understand the ideas and concepts of PLCs, an understanding of these terms is necessary

Actuator With PLC
 
Actuators  : Actuators convert an electrical signal from the PLC into a physical condition. Actuators are connected to the PLC output. A motor starter is one example of an actuator that is connected to the PLC output. Depending on the output PLC signal the motor starter will either start or stop the motor.
Read more >>

Monday, June 27, 2011

Sensor With Programmable Logic Controller (PLC)

The language of PLCs consists of a commonly used set of terms; many of which are unique to PLCs. In order to understand the ideas and concepts of PLCs, an understanding of these terms is necessary.


Sensor With PLC

Sensor :  A sensor is a device that converts a physical condition into an electrical signal for use by the PLC. Sensors are connected to the input of a PLC. A pushbutton is one example of a sensor that is connected to the PLC input. An electrical signal is sent from the pushbutton to the PLC indicating the condition (open/ closed) of the pushbutton contacts.


Read more >>

Basic PLC

Programmable Logic Controllers (PLCs), also referred to as programmable controllers, are in the computer family.They are used in commercial and industrial applications. A PLC monitors inputs, makes decisions based on its program, and controls outputs to automate a process or machine.This course is meant to supply you with basic information on the functions and configurations of PLCs

Interface PLC

Basic PLC Operation     PLCs consist of input modules or points, a Central Processing Unit (CPU), and output modules or points. An input accepts a variety of digital or analog signals from various field devices (sensors) and converts them into a logic signal that can be used by the CPU.The CPU makes decisions and executes control instructions based on program instructions in memory. Output modules convert control instructions from the CPU into a digital or analog signal that can be used to control various field devices (actuators). A programming device is used to input the desired instructions.These instructions determine what the PLC will do for a specific input. An operator interface device allows process information to be displayed and new control parameters to be entered


Read more >>

Friday, April 29, 2011

Coding Step Respon In Mathlab

It is tutorial how to making listing step Respon in Software Matlab..
1. Open Mathlab

2. File .
        M file
Inside code   exsample


m=2;
b=5;
k=3;
A=[0 1;-k/m -b/m];
B=[0;1/m];
C=[1 0];
D=0;
state_space=ss(A,B,C,D)
press F5 
a =
         x1    x2
   x1     0     1
   x2  -1.5  -2.5
b =
        u1
   x1    0
   x2  0.5
c =
       x1  x2
   y1   1   0
d =
       u1
   y1   0
>> [A,B,C,D]=ssdata(state_space)
A =
         0    1.0000
   -1.5000   -2.5000

B =
         0
    0.5000
C =
     1     0
D =
     0
>> step(state_space)
you get it

And find transfer function you can make it.

>> tutorial_tf=tf(state_space)
Transfer function:
       0.5
-----------------
s^2 + 2.5 s + 1.5

>> 
Read more >>