0
  1. Trang chủ >
  2. Kỹ Thuật - Công Nghệ >
  3. Tự động hóa >

plc programmable logic controller

plc programmable logic controller

plc programmable logic controller

... general PLC issues• To be able to write simple ladder logic programs• Understand the operation of a PLC PLC History• Ladder Logic and Relays• PLC Programming• PLC Operation• An Example plc ... to make simple logicalcontrol decisions. The development of low cost computer has brought the most recent rev-olution, the Programmable Logic Controller (PLC) . The advent of the PLC began in ... before failure.2.1.1 Ladder Logic Ladder logic is the main programming method used for PLCs. As mentionedbefore, ladder logic has been developed to mimic relay logic. The decision to use the...
  • 846
  • 625
  • 4
Giáo trình Kỹ thuật PLC ( Programable Logic Controller)

Giáo trình Kỹ thuật PLC ( Programable Logic Controller)

... 27 PLC -Programmable Logic Controller 1TRƯỜNG CAO ĐẲNG CÔNG NGHIỆP VIỆT ĐỨC- TỔ MÔN ĐIỆN TỬ -KỸ THUẬT PLC (Programmable Logic Controller) Tài liệu lưu hành nội bộ PLC -Programmable Logic Controller U1-U2 ... (R) 4 byte ~ Double Word 16 PLC -Programmable Logic Controller Chương 1 -TỔNG QUAN VỀ PLC I. Các kiến thức cơ bản về PLC (Programmable Logic Control)-Bộ điều khiển logic khả trình)Hình thành ... vào và ra được nối đến PLC như thế nào để chương trình trong PLC đã viết có thể vận hành đúng theo ý đồ đã thiết kế. Đường nguồn (logic 1)22 PLC -Programmable Logic Controller Lệnh ngõ ra...
  • 32
  • 626
  • 5
Tài liệu Programmable logic controllers Basic level TP301 – Textbook ppt

Tài liệu Programmable logic controllers Basic level TP301 – Textbook ppt

... networked PLC systems etc. Consequently, PLC systems by different manufacturers required entirely different programming. Since 1992, an international standard now exists for programmable logic controllers ... B-30 TP301 • Festo Didactic B-1 Chapter 1 The PLC in automation technology 1.1 Introduction The first Programmable Logic Controller (PLC) was developed by a group of engineers at General ... Contents Chapter 1 Automating with a PLC B-1 1.1 Introduction B-1 1.2 Areas of application of a PLC B-2 1.3 Basic design of a PLC B-5 1.4 The new PLC standard EN 61131 (IEC 61131) B-8 ...
  • 214
  • 691
  • 4
Programmable logic controllers v1 0 1

Programmable logic controllers v1 0 1

... Fax (573) 341‐2672 3 | Page  Purpose   MachMotion’s CNC software, Mach3, is designed to serially communicate with ModBus devices. For extra I/O or tool changers, PLCs can be easily interfaced with our control.  In this manual you will learn how to setup the ModBus protocol to communicate with your PLC.  Also, you will examine the addressing scheme and the I/O mapping used to easily access the external I/O and internal registers in your PLC.  Although some of this manual may be challenging to understand, the examples included should help clear up any uncertainty.   Note: If your PLC uses 484 or 584/984 addressing modes, your PLC addressing scheme is completely different than shown in this manual.   Overview Let’s begin with an overview of how we are going to communicate with the PLC.  Every PLC has a section of memory that can be used for general applications. By writing and reading data to these locations, we can control external I/O or just transfer information to and from a PLC.  You can designate a certain range of memory inside the PLC for inputs (data to Mach3) and a certain range for outputs (data from Mach3).  To ensure that the PLC is communicating correctly, the PLC and Mach3 are continually toggling two bits. If the PLC doesn’t respond for a specific amount of time, the control’s emergency stop will activate. After your PLC is programmed with the communication check (as described above), you are ready to read and write to memory inside your PLC.   To simplify your job of accessing external I/O, our control maps user LEDs and pin numbers of port 0 to 4 different registers. This allows for a maximum of 64 inputs and 64 outputs. If you write those registers to the PLC I/O, reading I/O is as simple as simple as setting up ports and pins or accessing user LEDs.   Viewing the Serial ModBus Configuration To open the serial modbus control, select Function Cfg’s from the menu bar and then click on Setup Serial Modbus Control as shown below. 8 | Page  _____________________________________________________________________________________ EXAMPLE 3: Based on the configuration used in example 2, write to V1206 and read from V1407. Example 2 used V memory 1200 to 1215 as Mach3 outputs (writing to the PLC)  so our base is V1200. Therefore V1206 is equivalent to Base + 6. Using the table above, Base + 6 is mapped to DRO 1506. So writing to DRO 1506 writes that word (16 bits) to the PLCs memory location V1206. You can write to it in VB using SetUserDRO(1506,Value) where Value is the number you want to write.  Subsequently, example 2 used V memory 1400 to 1415 as inputs from Mach3 so our base is V1400. Therefore V1407 is equivalent to Base + 7. Using the table above, Base + 7 is mapped to DRO 1607. So reading DRO 1607 should give us the word (16 bits) from the PLCs memory location V1407. You can read from V1407 in VB by using GetUserDRO(1607). _____________________________________________________________________________________  I/O Mapping As shown above DROs 1601‐1604 and 1501‐1504 are used for I/O. A total of 64 inputs and 64 outputs can be accessed in these 4 registers. User LEDs and port 0 and pin 0‐63 are used to write to the data inside Mach3. To utilize the I/O from Mach3, the V memory locations Base + 1 through Base + 4 must be written to the actual outputs on the PLC.    _____________________________________________________________________________________ EXAMPLE 4: Based on the configuration used in example 2, program the PLC to use the first 16 inputs and outputs. From the table above we know that the first sixteen inputs and outputs are written to Base + 1. For the Mach3 outputs we load this register (V1401) and output it to Y0‐Y17. For the Mach3 inputs we read the input port and output it to register V1201. See the program below:  6 | Page   Step 3: Press Apply and your changes will be updated.  _____________________________________________________________________________________  Programming the Communication Check To ensure that your control does not continue to operate after your PLC is disconnected, two bits are toggled back and forth. The first bit of the register of the inputs and of the outputs is used for this communication check. For an example, assume that the ModBus Configuration is setup as follows:   The program below shows how the toggling works with the above configuration.   4 | Page   You should see the following window:   Configuring the ModBus Registers The two fields you may need to update are the Address ModBus(Var) and the # of Registers. The Address ModBus(Var)  is the decimal equivalent of the V memory location in the PLC.  Automation direct PLCs automatically calculate the offsets for the input and output holding registers. Therefore, writing or reading from a register is as simple as placing the desired register (in decimal) in this column.  _____________________________________________________________________________________ EXAMPLE 1: Read from register V400 and write to register V600 in the PLC.   5 | Page  Step 1: Convert the V memory locations to decimal using the Window’s calculator. 400 octal = 256 in decimal    600 octal = 384 in decimal Step 2: Enter those values into the serial modbus control window.   Step 3: Press Apply and your changes will be updated.  In the configuration above, registers V400‐V407 are being read from the PLC and registers V600‐V607 are being written to the PLC.  _____________________________________________________________________________________  The maximum number of registers you can send or receive is 100. If more are needed, you will have to by‐pass the MachMotion plugin and do the data processing directly in Mach3.   WARNING: Make sure to leave the first Cfg as inputs and the second Cfg as outputs. The ModBus communications will not work if you move the CFG positions.  _____________________________________________________________________________________ EXAMPLE 2: Read from registers V1200‐V1215 and write to registers V1400‐V1415.  Step 1: Convert the V memory locations to decimal and find the range. 1215‐1200 in octal is 15 or in decimal, 13. 1200 octal = 640 in decimal  1400 octal = 768 in decimal Step 2: Enter these numbers into the serial modbus control window. 12 | Page  _____________________________________________________________________________________ MachMotion  Version 1.0.2 MACHMOTION Programmable Logic Controllers Using ModBus to Interface PLCs with Mach3     12/7/2010             Everything you need to know to interface Mach3 with your programmable logic controller.  11 | Page  _____________________________________________________________________________________ EXAMPLE 5: Turn on output Y3 and read from X5 of example 4. For Y3 is bit 3 of Base + 1. That means you can use LED 2103 or port 0 pin 3 to turn on Y3. SetUserLED(2103,1) will turn it on. X5 is bit 5 of Base + 1. That means that you can use LED 2205 or port 0 pin 5 to read the state of X5. _____________________________________________________________________________________  _____________________________________________________________________________________ EXAMPLE 6: Setup a D0‐06 PLC as external I/O. Below is the serial modbus configuration:  Below is the PLC program:  ... Fax (573) 341‐2672 3 | Page  Purpose   MachMotion’s CNC software, Mach3, is designed to serially communicate with ModBus devices. For extra I/O or tool changers, PLCs can be easily interfaced with our control.  In this manual you will learn how to setup the ModBus protocol to communicate with your PLC.  Also, you will examine the addressing scheme and the I/O mapping used to easily access the external I/O and internal registers in your PLC.  Although some of this manual may be challenging to understand, the examples included should help clear up any uncertainty.   Note: If your PLC uses 484 or 584/984 addressing modes, your PLC addressing scheme is completely different than shown in this manual.   Overview Let’s begin with an overview of how we are going to communicate with the PLC.  Every PLC has a section of memory that can be used for general applications. By writing and reading data to these locations, we can control external I/O or just transfer information to and from a PLC.  You can designate a certain range of memory inside the PLC for inputs (data to Mach3) and a certain range for outputs (data from Mach3).  To ensure that the PLC is communicating correctly, the PLC and Mach3 are continually toggling two bits. If the PLC doesn’t respond for a specific amount of time, the control’s emergency stop will activate. After your PLC is programmed with the communication check (as described above), you are ready to read and write to memory inside your PLC.   To simplify your job of accessing external I/O, our control maps user LEDs and pin numbers of port 0 to 4 different registers. This allows for a maximum of 64 inputs and 64 outputs. If you write those registers to the PLC I/O, reading I/O is as simple as simple as setting up ports and pins or accessing user LEDs.   Viewing the Serial ModBus Configuration To open the serial modbus control, select Function Cfg’s from the menu bar and then click on Setup Serial Modbus Control as shown below. 8 | Page  _____________________________________________________________________________________ EXAMPLE 3: Based on the configuration used in example 2, write to V1206 and read from V1407. Example 2 used V memory 1200 to 1215 as Mach3 outputs (writing to the PLC)  so our base is V1200. Therefore V1206 is equivalent to Base + 6. Using the table above, Base + 6 is mapped to DRO 1506. So writing to DRO 1506 writes that word (16 bits) to the PLCs memory location V1206. You can write to it in VB using SetUserDRO(1506,Value) where Value is the number you want to write.  Subsequently, example 2 used V memory 1400 to 1415 as inputs from Mach3 so our base is V1400. Therefore V1407 is equivalent to Base + 7. Using the table above, Base + 7 is mapped to DRO 1607. So reading DRO 1607 should give us the word (16 bits) from the PLCs memory location V1407. You can read from V1407 in VB by using GetUserDRO(1607). _____________________________________________________________________________________  I/O Mapping As shown above DROs 1601‐1604 and 1501‐1504 are used for I/O. A total of 64 inputs and 64 outputs can be accessed in these 4 registers. User LEDs and port 0 and pin 0‐63 are used to write to the data inside Mach3. To utilize the I/O from Mach3, the V memory locations Base + 1 through Base + 4 must be written to the actual outputs on the PLC.    _____________________________________________________________________________________ EXAMPLE 4: Based on the configuration used in example 2, program the PLC to use the first 16 inputs and outputs. From the table above we know that the first sixteen inputs and outputs are written to Base + 1. For the Mach3 outputs we load this register (V1401) and output it to Y0‐Y17. For the Mach3 inputs we read the input port and output it to register V1201. See the program below:  6 | Page   Step 3: Press Apply and your changes will be updated.  _____________________________________________________________________________________  Programming the Communication Check To ensure that your control does not continue to operate after your PLC is disconnected, two bits are toggled back and forth. The first bit of the register of the inputs and of the outputs is used for this communication check. For an example, assume that the ModBus Configuration is setup as follows:   The program below shows how the toggling works with the above configuration.   4 | Page   You should see the following window:   Configuring the ModBus Registers The two fields you may need to update are the Address ModBus(Var) and the # of Registers. The Address ModBus(Var)  is the decimal equivalent of the V memory location in the PLC.  Automation direct PLCs automatically calculate the offsets for the input and output holding registers. Therefore, writing or reading from a register is as simple as placing the desired register (in decimal) in this column.  _____________________________________________________________________________________ EXAMPLE 1: Read from register V400 and write to register V600 in the PLC.   5 | Page  Step 1: Convert the V memory locations to decimal using the Window’s calculator. 400 octal = 256 in decimal    600 octal = 384 in decimal Step 2: Enter those values into the serial modbus control window.   Step 3: Press Apply and your changes will be updated.  In the configuration above, registers V400‐V407 are being read from the PLC and registers V600‐V607 are being written to the PLC.  _____________________________________________________________________________________  The maximum number of registers you can send or receive is 100. If more are needed, you will have to by‐pass the MachMotion plugin and do the data processing directly in Mach3.   WARNING: Make sure to leave the first Cfg as inputs and the second Cfg as outputs. The ModBus communications will not work if you move the CFG positions.  _____________________________________________________________________________________ EXAMPLE 2: Read from registers V1200‐V1215 and write to registers V1400‐V1415.  Step 1: Convert the V memory locations to decimal and find the range. 1215‐1200 in octal is 15 or in decimal, 13. 1200 octal = 640 in decimal  1400 octal = 768 in decimal Step 2: Enter these numbers into the serial modbus control window. 12 | Page  _____________________________________________________________________________________ MachMotion  Version 1.0.2 MACHMOTION Programmable Logic Controllers Using ModBus to Interface PLCs with Mach3     12/7/2010             Everything you need to know to interface Mach3 with your programmable logic controller.  11 | Page  _____________________________________________________________________________________ EXAMPLE 5: Turn on output Y3 and read from X5 of example 4. For Y3 is bit 3 of Base + 1. That means you can use LED 2103 or port 0 pin 3 to turn on Y3. SetUserLED(2103,1) will turn it on. X5 is bit 5 of Base + 1. That means that you can use LED 2205 or port 0 pin 5 to read the state of X5. _____________________________________________________________________________________  _____________________________________________________________________________________ EXAMPLE 6: Setup a D0‐06 PLC as external I/O. Below is the serial modbus configuration:  Below is the PLC program:  ... Fax (573) 341‐2672 3 | Page  Purpose   MachMotion’s CNC software, Mach3, is designed to serially communicate with ModBus devices. For extra I/O or tool changers, PLCs can be easily interfaced with our control.  In this manual you will learn how to setup the ModBus protocol to communicate with your PLC.  Also, you will examine the addressing scheme and the I/O mapping used to easily access the external I/O and internal registers in your PLC.  Although some of this manual may be challenging to understand, the examples included should help clear up any uncertainty.   Note: If your PLC uses 484 or 584/984 addressing modes, your PLC addressing scheme is completely different than shown in this manual.   Overview Let’s begin with an overview of how we are going to communicate with the PLC.  Every PLC has a section of memory that can be used for general applications. By writing and reading data to these locations, we can control external I/O or just transfer information to and from a PLC.  You can designate a certain range of memory inside the PLC for inputs (data to Mach3) and a certain range for outputs (data from Mach3).  To ensure that the PLC is communicating correctly, the PLC and Mach3 are continually toggling two bits. If the PLC doesn’t respond for a specific amount of time, the control’s emergency stop will activate. After your PLC is programmed with the communication check (as described above), you are ready to read and write to memory inside your PLC.   To simplify your job of accessing external I/O, our control maps user LEDs and pin numbers of port 0 to 4 different registers. This allows for a maximum of 64 inputs and 64 outputs. If you write those registers to the PLC I/O, reading I/O is as simple as simple as setting up ports and pins or accessing user LEDs.   Viewing the Serial ModBus Configuration To open the serial modbus control, select Function Cfg’s from the menu bar and then click on Setup Serial Modbus Control as shown below. 8 | Page  _____________________________________________________________________________________ EXAMPLE 3: Based on the configuration used in example 2, write to V1206 and read from V1407. Example 2 used V memory 1200 to 1215 as Mach3 outputs (writing to the PLC)  so our base is V1200. Therefore V1206 is equivalent to Base + 6. Using the table above, Base + 6 is mapped to DRO 1506. So writing to DRO 1506 writes that word (16 bits) to the PLCs memory location V1206. You can write to it in VB using SetUserDRO(1506,Value) where Value is the number you want to write.  Subsequently, example 2 used V memory 1400 to 1415 as inputs from Mach3 so our base is V1400. Therefore V1407 is equivalent to Base + 7. Using the table above, Base + 7 is mapped to DRO 1607. So reading DRO 1607 should give us the word (16 bits) from the PLCs memory location V1407. You can read from V1407 in VB by using GetUserDRO(1607). _____________________________________________________________________________________  I/O Mapping As shown above DROs 1601‐1604 and 1501‐1504 are used for I/O. A total of 64 inputs and 64 outputs can be accessed in these 4 registers. User LEDs and port 0 and pin 0‐63 are used to write to the data inside Mach3. To utilize the I/O from Mach3, the V memory locations Base + 1 through Base + 4 must be written to the actual outputs on the PLC.    _____________________________________________________________________________________ EXAMPLE 4: Based on the configuration used in example 2, program the PLC to use the first 16 inputs and outputs. From the table above we know that the first sixteen inputs and outputs are written to Base + 1. For the Mach3 outputs we load this register (V1401) and output it to Y0‐Y17. For the Mach3 inputs we read the input port and output it to register V1201. See the program below:  6 | Page   Step 3: Press Apply and your changes will be updated.  _____________________________________________________________________________________  Programming the Communication Check To ensure that your control does not continue to operate after your PLC is disconnected, two bits are toggled back and forth. The first bit of the register of the inputs and of the outputs is used for this communication check. For an example, assume that the ModBus Configuration is setup as follows:   The program below shows how the toggling works with the above configuration.   4 | Page   You should see the following window:   Configuring the ModBus Registers The two fields you may need to update are the Address ModBus(Var) and the # of Registers. The Address ModBus(Var)  is the decimal equivalent of the V memory location in the PLC.  Automation direct PLCs automatically calculate the offsets for the input and output holding registers. Therefore, writing or reading from a register is as simple as placing the desired register (in decimal) in this column.  _____________________________________________________________________________________ EXAMPLE 1: Read from register V400 and write to register V600 in the PLC.   5 | Page  Step 1: Convert the V memory locations to decimal using the Window’s calculator. 400 octal = 256 in decimal    600 octal = 384 in decimal Step 2: Enter those values into the serial modbus control window.   Step 3: Press Apply and your changes will be updated.  In the configuration above, registers V400‐V407 are being read from the PLC and registers V600‐V607 are being written to the PLC.  _____________________________________________________________________________________  The maximum number of registers you can send or receive is 100. If more are needed, you will have to by‐pass the MachMotion plugin and do the data processing directly in Mach3.   WARNING: Make sure to leave the first Cfg as inputs and the second Cfg as outputs. The ModBus communications will not work if you move the CFG positions.  _____________________________________________________________________________________ EXAMPLE 2: Read from registers V1200‐V1215 and write to registers V1400‐V1415.  Step 1: Convert the V memory locations to decimal and find the range. 1215‐1200 in octal is 15 or in decimal, 13. 1200 octal = 640 in decimal  1400 octal = 768 in decimal Step 2: Enter these numbers into the serial modbus control window. 12 | Page  _____________________________________________________________________________________ MachMotion  Version 1.0.2 MACHMOTION Programmable Logic Controllers Using ModBus to Interface PLCs with Mach3     12/7/2010             Everything you need to know to interface Mach3 with your programmable logic controller.  11 | Page  _____________________________________________________________________________________ EXAMPLE 5: Turn on output Y3 and read from X5 of example 4. For Y3 is bit 3 of Base + 1. That means you can use LED 2103 or port 0 pin 3 to turn on Y3. SetUserLED(2103,1) will turn it on. X5 is bit 5 of Base + 1. That means that you can use LED 2205 or port 0 pin 5 to read the state of X5. _____________________________________________________________________________________  _____________________________________________________________________________________ EXAMPLE 6: Setup a D0‐06 PLC as external I/O. Below is the serial modbus configuration:  Below is the PLC program: ...
  • 12
  • 725
  • 0
Programmable logic controllers 5ed P1

Programmable logic controllers 5ed P1

... washingcycle is completed.1.1.2 The Programmable Logic Controller A programmable logic controller (PLC) is a special form of microprocessor-based controller that uses programmable memory to store instructions ... answerfrom the answer options.1. The term PLC stands for:A. Personal logic computerB. Programmable local computerC. Personal logic controller D. Programmable logic controller 2. Decide whether each ... inputs and outputs already inside the controller Program PLC Inputs OutputsFigure 1.3: A programmable logic controller. www.newnespress.com Programmable Logic Controllers 3Pipe connections, that...
  • 50
  • 806
  • 11
Programmable logic controllers 5ed P2

Programmable logic controllers 5ed P2

... cable.CommunicationmoduleCommunicationportUnits located some distance from the PLC Other input/outputmodules PLC PLCMaster PLC Figure 4.19: Use of remote input/output PLC systems.7 6 5 4 3 2 1 0BitsBits76543210(a)(b)Figure ... processing is carried out by themaster PLC. The cables used for communicating data between remote input/output modules and a central PLC, or remote PLCs and the master PLC are typically twisted-pair ... some situations a number of PLCs may be linked together with a master PLC unitsending and receiving input/output data from the other units (Figure 4.19). The distant PLCsdo not contain the control...
  • 50
  • 730
  • 8
Programmable logic controllers 5ed P3

Programmable logic controllers 5ed P3

... ring. Often PLCs figure in a hierarchy of communications, with input andoutput devices at the lowest level, at the next level small PLCs or computers, and at the nextlevel, larger PLCs and computers. ... RSLogix from Rockwell Automation Inc. for Allen-BradleyPLCs, MELSOFTÀGX Developer for Mitsubishi PLCs, and STEP 7ÀMicro/WIN V4 forSiemens PLCs. The software operates on the Windows operating system ... such as those of the logic gates, counters, ortimers, or have functions defined by the user, such as a block to obtain an average valueof inputs (Figure 5.24c).5.6.1 Logic GatesPrograms are...
  • 50
  • 776
  • 8
Programmable logic controllers 5ed P4

Programmable logic controllers 5ed P4

... diagram.SRInputI0,0SETO0,0InputI0,1RESETO0,0Figure 7.14: SET and RESET (Telemecanique PLC) .SRInput111/05Latch020/00Input 111/06Unlatch020/00Figure 7.15: Latch and unlatch (Allen-Bradley PLC) .www.newnespress.com190 Chapter 77.6 ... 197Figures 7.9b and 7.9c show the built-in facilities with Allen-Bradley and Mitsubishi PLCs.With the Mitsubishi PLC (Figure 7.9c), the output internal relay—say, M100—is activatedwhen the trigger ... one of the elements included amongthe special built-in functions with PLCs and are very widely used in programming. A small PLC might have a hundred or more internal relays, some of them battery...
  • 50
  • 571
  • 7

Xem thêm

Từ khóa: plc programmable logic controller training plc softwarecấu trúc cơ bản của bộ điều khiển logic lập trình plc programmable logic controllerprogrammable logic controller plc tutorial siemens simatic s7200 pdfprogrammable logic controller plc applicationsprogrammable logic controllers plc function block programmingprogrammable logic controllers plc state machine programmingapplications of programmable logic controller plc on automationprogrammable logic controllers plc technician programprogrammable logic controllers textbook w plc simulation softwareprogrammable logic controllers plc pdfprogrammable logic controller plc pptprogrammable logic controllers trainingprogrammable logic controllers petruzella pdfprogrammable logic controllers bookprogrammable logic controllers hardware and programmingBáo cáo thực tập tại nhà thuốc tại Thành phố Hồ Chí Minh năm 2018Nghiên cứu sự hình thành lớp bảo vệ và khả năng chống ăn mòn của thép bền thời tiết trong điều kiện khí hậu nhiệt đới việt namGiáo án Sinh học 11 bài 13: Thực hành phát hiện diệp lục và carôtenôitGiáo án Sinh học 11 bài 13: Thực hành phát hiện diệp lục và carôtenôitGiáo án Sinh học 11 bài 13: Thực hành phát hiện diệp lục và carôtenôitĐỒ ÁN NGHIÊN CỨU CÔNG NGHỆ KẾT NỐI VÔ TUYẾN CỰ LY XA, CÔNG SUẤT THẤP LPWANQuản lý hoạt động học tập của học sinh theo hướng phát triển kỹ năng học tập hợp tác tại các trường phổ thông dân tộc bán trú huyện ba chẽ, tỉnh quảng ninhPhát triển mạng lưới kinh doanh nước sạch tại công ty TNHH một thành viên kinh doanh nước sạch quảng ninhTrả hồ sơ điều tra bổ sung đối với các tội xâm phạm sở hữu có tính chất chiếm đoạt theo pháp luật Tố tụng hình sự Việt Nam từ thực tiễn thành phố Hồ Chí Minh (Luận văn thạc sĩ)Phát triển du lịch bền vững trên cơ sở bảo vệ môi trường tự nhiên vịnh hạ longThiết kế và chế tạo mô hình biến tần (inverter) cho máy điều hòa không khíTổ chức và hoạt động của Phòng Tư pháp từ thực tiễn tỉnh Phú Thọ (Luận văn thạc sĩ)BT Tieng anh 6 UNIT 2Tăng trưởng tín dụng hộ sản xuất nông nghiệp tại Ngân hàng Nông nghiệp và Phát triển nông thôn Việt Nam chi nhánh tỉnh Bắc Giang (Luận văn thạc sĩ)Giáo án Sinh học 11 bài 15: Tiêu hóa ở động vậtchuong 1 tong quan quan tri rui roGiáo án Sinh học 11 bài 14: Thực hành phát hiện hô hấp ở thực vậtGiáo án Sinh học 11 bài 14: Thực hành phát hiện hô hấp ở thực vậtChiến lược marketing tại ngân hàng Agribank chi nhánh Sài Gòn từ 2013-2015MÔN TRUYỀN THÔNG MARKETING TÍCH HỢP