Write a program that will make a rto behave like a ton

Assignment Help Other Subject
Reference no: EM132371761

PLC LAB 5: TIMERS PART 2

PROGRAM 1: Write a program that will make a RTO behave like a TON. Use NO1 to start your timer, and NC1 to stop it. When the timer is enabled, the RED lamp is on. While the timer is timing, the AMBER lamp should flash. When the timer is done, the GREEN lamp should be on solid.

PROGRAM 2: Sequential start your two CONTACTORS. Use a set of buttons for each contactor (N01/NC1 for CONTACTOR 1; NO2/NC2 for CONTACTOR 2).

Use two lights to show if the contactors are running (one light for each). If the E-STOP is pressed, all contactors should turn off and there should be a 5 second delay before they can be turned on again. During the delay The red lamp should flash. Red lamp should be solid when both Contactors are off.

PROGRAM 3:

While on SELECTOR A, pressing NO-1 should immediately start CONTACTOR 1. After 2 seconds, CONTACTOR 2 should start and CONTACTOR 1 should stop. After 2 more seconds, CONTACTOR 1 should re-start and CONTACTOR 2 should stop. BOTH CONTACTORS SHOULD ALTERNATE ON/OFF CONTINUOUSLY. GREEN lamp should be on solid while CONTACTOR 1 is running. RED LAMP should be on solid while CONTACTOR 2 is running. Switching to SELECTOR B should reset the sequence, allowing a restart once on SELECTOR A again.

PROGRAM 4:
Pressing NOPB 1 will simultaneously energize both contactors. Pressing NCPB 1 will instantly de-energize contactor 2. There should be 5 sec delay before contactor 1 goes off. When both contactors are off, Red light will be on. Amber light will be solid when contactor 1 is on and Green Light will be solid when contactor 2 is on. However, during the 5 sec delay, amber light will be flashing.

PROGRAM 5:

If you press NO-1, CONTACTOR 1 starts immediately and CONTACTOR 2 turns on after 3 seconds. When you press NC-1, CONTACTOR 2 turns off immediately, then CONTACTOR 1 turns off after 3 secs. If you press NO 2, CONTACTOR 1 starts immediately then CONTACTOR 2 turns on after 5 secs. By pressing NC-2 CONTACTOR 2 turns off immediately. Then CONTACTOR 1 turns off after 5 secs.

When both contactors are off, Red lamp should be on. When contactor 1 is energized using NO 1 Amber lamp is solid, after 3 secs green lamp is solid when contactor 2 is energized.

When contactor 1 is energized using NO 2 Amber lamp will be flashing, then 5 secs later green will be flashing when contactor 2 is energized.

Note: You should never have any two lamps on at the same time. Both programs that is, the 3sec and 5 sec should not run at the same time.

PLC LAB 6: COUNTERS

Program 1: An introduction to the CTU - Count Up Instruction

- Pushing NOPB-1 will increment Counter C5:0
-Every increment of Counter C5:0 will momentarily energize Amber light
-When Counter C5:0 reaches the count of 5, Green light will be energized.
- Pushing NOPB-3 will reset Counter C5:0.
While running the program, open your C5 COUNTER data file and pay attention to
when C5:0/CU (count-up bit) and C5:0/DN (counter done bit) close.

Program 2: Using a CTU

- Every press of NO-1 increments a CTU counter (C5:0) while on SELECTOR A
- When C5:0 is below the count of 4, RED lamp is solid
- As soon as C5:0 reaches a count of 4 and above, RED goes off, GREEN lamp is solid
- Turning to SELECTOR B resets C5:0 and starts AMBER lamp flashing, Red is off.
- Every press of NO-2 increments a CTU counter (C5:1) while on SELECTOR B
- When C5:1 is below the count of 4, AMBER lamp remains flashing
- As soon as C5:1 reaches a count of 4 and above, AMBER lamp goes solid
- Pressing NC-2 should reset counter C5:1.

Program 3: Creating and Using an Up-Down Counter
- Program 2 stays intact and should work AS - IS
- A CTD counter is added to decrement Counter C5:0
- Another CTD counter is added to decrement Counter C5:1
- NO-3 decrements C5:0 while on SELECTOR A
- NO-3 decrements C5:1 while on SELECTOR B
- Pressing either NC-1 or NC-2 should reset ALL counters

Program 4: Cascading Counters.

- While on selector A, after pushing NOPB 1 three times Contactor 1 will be energized. While Contactor 1 is energized, amber light will be flashing
- When Contactor 1 is on, pushing NOPB 2 twice will energize Contactor 2
- When Both Contactors are on, Amber and Green lights will flash alternately
- Pushing NOPB 3 Once while Contactor 1 and Contactor 2 are energized, will cause Both Contactors to turn off and Amber light and Green light will flash at the same rate while the Red lamp remains Off.
- By pushing any NCPB will de- energize any device that is energized and will also reset all the Counters.
- Red light should be on only when all other devices, including Amber lamp and Green lamp are off.

PLC LAB 7: (DAY-7) COMPARISON / MATH / OSR / JSR

Program 1: COMPARISON INSTRUCTION
- A TON Timer (T4:0) is timing on a continuous cycle of 9-seconds while on SELECTOR A
- From 0 - 2 seconds, RED is on
- From 3 - 5 seconds, Amber is on
- From 6 - 8 seconds, Green is on
- The cycle continues until the selector switch is turned to SELECTOR B
- Turning to SELECTOR B does steps 1-4 above, but now the lamps are FLASHING

Program 2: MATH AND COMPARISON INSTRUCTIONS
- Pressing NO - 1 increments a CTU counter C5:0
- Pressing NO - 2 increments a CTU counter C5:1
- On the incrementing counts of C5:0 OR C5:1, CONTACTOR 1 energizes
- NC - 1 decrements C5:0; NC - 2 decrements C5:1
- On the decrementing counts of C5:0 OR C5:1 CONTACTOR 2 energizes
- When C5:0 and C5:1 combine for a count of 6, RED lamp goes on solid
- When the difference between C5:0 and C5:1 is 2, the AMBER lamp flashes
- When C5:0 is twice as much as C5:1, GREEN lamp flashes
- NO -3 resets both counters

Program 3: TIMING AND COUNTING
- Pressing NO - 1 will begin flashing ALL lamps at the same rate
- After 5 seconds, ALL lamps will flash at a FASTER RATE
- Counter C5:0 monitors the flashing of GREEN
- Counter C5:1 monitors the flashing of AMBER
- Counter C5:2 monitors the flashing of RED
- When GREEN has flashed 15 times, GREEN goes solid and CONTACTOR 1 energizes
- When AMBER has flashed 25 times, AMBER goes solid and CONTACTOR 2 energizes
- When RED has flashed 35 times, RED goes solid and both contactors turn off
- NC-1 resets ALL counters and turns off ALL lamps

Program 4: COUNTING, COMPARISON AND One-Shot Rising (OSR)
- Program a latching motor starter on rung 1, using NOPB 1 and NCPB 1
- Rung 2 is to count pulses from the S4:3 status bit only if the motor is running.
- When the counter is between 25 and 50, the YELLOW light should be solid.
- The RED light should be on if the motor is off.
- The GREEN light should flash if the motor is running.
- When the counter is between 50 and 99, the YELLOW should flash, alternating with the GREEN light.
- When the counter reaches 100, the motor should stop.
- Pressing start should reset the counter and run the motor again.
- If the operator is holding down the start button, the counter will constantly be resetting, and you need to fix that.

Reference no: EM132371761

Questions Cloud

Write and submit an essay on ethical frameworks : Write and submit an essay on Ethical Frameworks - Discuss shortcomings of this theory and Demonstrate that you have considered at least two other theories
What is the Pearson Correlation value : Statistics NURS 605 Assignment - Given the following numbers. What is the Pearson's Correlation value between the variable X and the variable Y
What was the cultural context of the event : Describe the information presented in the source. If it is a visual, what do you see? If it is textual, does it contain facts, opinion, analysis
The impact of nursing informatics on patient outcomes : The Impact of Nursing Informatics on Patient Outcomes and Patient Care Efficiencies. Identify the stakeholders impacted by this project.
Write a program that will make a rto behave like a ton : Write a program that will make a RTO behave like a TON. Use NO1 to start your timer, and NC1 to stop it. When the timer is enabled
Interpret information governance reference model diagram : In order to interpret the Information Governance Reference Model (IGRM) diagram. It is recommended that we start from the outside of the diagram.
Annoted bibliography on enterprise risk management : Annoted Bibliography on Enterprise Risk Management on about 20 research articles each contains a summary of 150 to 200 words
Explain the concept of the human resources life cycle : BSBHRM405 Support the recruitment, selection and induction of staff-Richmond School of Business-Australia-Explain the concept of the Human Resources Life Cycle.
What did the two articles say about your target article : Identify 2 articles that cited your target article. This can be accomplished by navigating to Google Scholar, locating the target article, and then selecting.

Reviews

Write a Review

Other Subject Questions & Answers

  Cross-cultural opportunities and conflicts in canada

Short Paper on Cross-cultural Opportunities and Conflicts in Canada.

  Sociology theory questions

Sociology are very fundamental in nature. Role strain and role constraint speak about the duties and responsibilities of the roles of people in society or in a group. A short theory about Darwin and Moths is also answered.

  A book review on unfaithful angels

This review will help the reader understand the social work profession through different concepts giving the glimpse of why the social work profession might have drifted away from its original purpose of serving the poor.

  Disorder paper: schizophrenia

Schizophrenia does not really have just one single cause. It is a possibility that this disorder could be inherited but not all doctors are sure.

  Individual assignment: two models handout and rubric

Individual Assignment : Two Models Handout and Rubric,    This paper will allow you to understand and evaluate two vastly different organizational models and to effectively communicate their differences.

  Developing strategic intent for toyota

The following report includes the description about the organization, its strategies, industry analysis in which it operates and its position in the industry.

  Gasoline powered passenger vehicles

In this study, we examine how gasoline price volatility and income of the consumers impacts consumer's demand for gasoline.

  An aspect of poverty in canada

Economics thesis undergrad 4th year paper to write. it should be about 22 pages in length, literature review, economic analysis and then data or cost benefit analysis.

  Ngn customer satisfaction qos indicator for 3g services

The paper aims to highlight the global trends in countries and regions where 3G has already been introduced and propose an implementation plan to the telecom operators of developing countries.

  Prepare a power point presentation

Prepare the power point presentation for the case: Santa Fe Independent School District

  Information literacy is important in this environment

Information literacy is critically important in this contemporary environment

  Associative property of multiplication

Write a definition for associative property of multiplication.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd