Formosa Ha Tinh Steel Corporation Making Steel Plant
The document introduces various PLC programming languages including Ladder Logic (LAD), Statement List (STL), Function Block Diagram (FBD), Sequential Function Chart (SFC), and Continuous Function Chart (CFC). It discusses the strengths of each language and notes that CFC is a non-standard language developed for Siemens processors and drives. In the afternoon, the document covers programming an Intouch HMI to control three fans that can rotate left and right using a meter and window scripts.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
95 views3 pages
Formosa Ha Tinh Steel Corporation Making Steel Plant
The document introduces various PLC programming languages including Ladder Logic (LAD), Statement List (STL), Function Block Diagram (FBD), Sequential Function Chart (SFC), and Continuous Function Chart (CFC). It discusses the strengths of each language and notes that CFC is a non-standard language developed for Siemens processors and drives. In the afternoon, the document covers programming an Intouch HMI to control three fans that can rotate left and right using a meter and window scripts.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3
FORMOSA HA TINH STEEL CORPORATION
MAKING STEEL PLANT
NUMBER : VNW0008967 NAME: DATE: 2016/19/11 SUBJECT: PLC Siemen, Intouch HMI. The morning : Teacher introduce about programming language. They have LAD, STD, FBD, SFC, CFC, CSC. LAD: Laddler logic is a visual programming language based on the concept of representing each individual network as it would be shown In a circuit diagram for relay logic. This language is best for people who come from an electrical background. STD: statement list is often the quickest way to write your PLC. Copy and paste is quicker, making small modifications is quicker. Performing more complex operations like loops and jumps and indirect addressing become easier in STL. FBD: function block diagram is better for people coming from an electronic or computer science background as it is a visual re presentation based on logic gates. SFC: is defined as a PLC language as per IEC61131-3; as such; it is independent of any other language in the same standard. CFC: is a non- standard language develpped for siemen . its processeors and drives. It combination with SFC. Afternoon, I study Intuoch HMI. The sample: the switch control 3 fans. And fan rotate the right and left. With a meter With window scrips : IF TL < 100 AND SW==1 THEN TL = TL + 1; ENDIF; IF TL >= 100 AND SW==1 THEN
TL=0; ENDIF; IF TL > 100 AND SW==0 THEN TL =TL - 1 ; ENDIF; IF TL <= 0 AND SW==0 THEN TL = 100; ENDIF; The fist statement: