Free Essay

Plc Introduction

In:

Submitted By sameer84
Words 3478
Pages 14
5

2. PROGRAMMABLE LOGIC CONTROLLERS

Topics: • PLC History • Ladder Logic and Relays • PLC Programming • PLC Operation • An Example Objectives: • Know general PLC issues • To be able to write simple ladder logic programs • Understand the operation of a PLC

2.1 INTRODUCTION
Control engineering has evolved over time. In the past humans were the main method for controlling a system. More recently electricity has been used for control and early electrical control was based on relays. These relays allow power to be switched on and off without a mechanical switch. It is common to use relays to make simple logical control decisions. The development of low cost computer has brought the most recent revolution, the Programmable Logic Controller (PLC). The advent of the PLC began in the 1970s, and has become the most common choice for manufacturing controls. PLCs have been gaining popularity on the factory floor and will probably remain predominant for some time to come. Most of this is because of the advantages they offer. • Cost effective for controlling complex systems. • Flexible and can be reapplied to control other systems quickly and easily. • Computational abilities allow more sophisticated control. • Trouble shooting aids make programming easier and reduce downtime. • Reliable components make these likely to operate for years before failure.

2.1.1 Ladder Logic
Ladder logic is the main programming method used for PLCs. As mentioned before, ladder logic has been developed to mimic relay logic. The decision to use the relay logic diagrams was a strategic one. By selecting ladder logic as the main programming method, the amount of retraining needed for engineers and tradespeople was greatly reduced. Modern control systems still include relays, but these are rarely used for logic. A relay is a simple device that uses a magnetic field to control a switch, as pictured in Figure 2. When a voltage is

6

applied to the input coil, the resulting current creates a magnetic field. The magnetic field pulls a metal switch (or reed) towards it and the contacts touch, closing the switch. The contact that closes when the coil is energized is called normally open. The normally closed contacts touch when the input coil is not energized. Relays are normally drawn in schematic form using a circle to represent the input coil. The output contacts are shown with two parallel lines. Normally open contacts are shown as two lines, and will be open (non-conducting) when the input is not energized. Normally closed contacts are shown with two lines with a diagonal line through them. When the input coil is not energized the normally closed contacts will be closed (conducting).

input coil

OR

normally closed

normally open

OR

Figure 2

Simple Relay Layouts and Schematics

Relays are used to let one power source close a switch for another (often high current) power source, while keeping them isolated. An example of a relay in a simple control application is shown in Figure 3. In this system the first relay on the left is used as normally closed, and will allow current to flow until a voltage is applied to the input A. The second relay is normally open and will not allow current to flow until a voltage is applied to the input B. If current is flowing through the first two relays

7

then current will flow through the coil in the third relay, and close the switch for output C. This circuit would normally be drawn in the ladder logic form. This can be read logically as C will be on if A is off and B is on.

115VAC wall plug

relay logic

input A (normally closed)

input B (normally open)

output C (normally open)

A

B

C ladder logic

Figure 3

A Simple Relay Controller

The example in Figure 3 does not show the entire control system, but only the logic. When we consider a PLC there are inputs, outputs, and the logic. Figure 4 shows a more complete representation of the PLC. Here there are two inputs from push buttons. We can imagine the inputs as activating 24V DC relay coils in the PLC. This in turn drives an output relay that switches 115V AC, that will turn on a light. Note, in actual PLCs inputs are never relays, but outputs are often relays. The ladder logic in the PLC is actually a computer program that the user can enter and change. Notice that both of the input push buttons are normally open, but the ladder logic inside the PLC has one normally open contact, and one normally closed contact. Do not think that the ladder logic in the PLC needs to match the inputs or outputs. Many beginners will get caught trying to make the ladder logic match the input types.

8

push buttons

power supply +24V com.

PLC inputs ladder logic

A

B

C

outputs

115Vac AC power neut. Figure 4 A PLC Illustrated With Relays

light

Many relays also have multiple outputs (throws) and this allows an output relay to also be an input simultaneously. The circuit shown in Figure 5 is an example of this, it is called a seal in circuit. In this circuit the current can flow through either branch of the circuit, through the contacts labelled A or B. The input B will only be on when the output B is on. If B is off, and A is energized, then B will turn on. If B turns on then the input B will turn on, and keep output B on even if input A goes off. After B is turned on the output B will not turn off.

9

A

B

B

Note: When A is pushed, the output B will turn on, and the input B will also turn on and keep B on permanently - until power is removed. Note: The line on the right is being left off intentionally and is implied in these diagrams.

Figure 5

A Seal-in Circuit

2.1.2 Programming
The first PLCs were programmed with a technique that was based on relay logic wiring schematics. This eliminated the need to teach the electricians, technicians and engineers how to program a computer - but, this method has stuck and it is the most common technique for programming PLCs today. An example of ladder logic can be seen in Figure 6. To interpret this diagram imagine that the power is on the vertical line on the left hand side, we call this the hot rail. On the right hand side is the neutral rail. In the figure there are two rungs, and on each rung there are combinations of inputs (two vertical lines) and outputs (circles). If the inputs are opened or closed in the right combination the power can flow from the hot rail, through the inputs, to power the outputs, and finally to the neutral rail. An input can come from a sensor, switch, or any other type of sensor. An output will be some device outside the PLC that is switched on or off, such as lights or motors. In the top rung the contacts are normally open and normally closed. Which means if input A is on and input B is off, then power will flow through the output and activate it. Any other combination of input values will result in the output X being off.

10

HOT A B X

NEUTRAL

C

D

G

Y

E

F

H

INPUTS

OUTPUTS

Note: Power needs to flow through some combination of the inputs (A,B,C,D,E,F,G,H) to turn on outputs (X,Y). Figure 6 A Simple Ladder Logic Diagram

The second rung of Figure 6 is more complex, there are actually multiple combinations of inputs that will result in the output Y turning on. On the left most part of the rung, power could flow through the top if C is off and D is on. Power could also (and simultaneously) flow through the bottom if both E and F are true. This would get power half way across the rung, and then if G or H is true the power will be delivered to output Y. In later chapters we will examine how to interpret and construct these diagrams. There are other methods for programming PLCs. One of the earliest techniques involved mnemonic instructions. These instructions can be derived directly from the ladder logic diagrams and entered into the PLC through a simple programming terminal. An example of mnemonics is shown in Figure 7. In this example the instructions are read one line at a time from top to bottom. The first line 00000 has the instruction LDN (input load and not) for input A. This will examine the input to the PLC and if it is off it will remember a 1 (or true), if it is on it will remember a 0 (or false). The next line uses an LD (input load) statement to look at the input. If the input is off it remembers a 0, if the input is on it remembers a 1 (note: this is the reverse of the LDN). The AND statement recalls the last two numbers remembered and if the are both true the result is a 1, otherwise the result is a 0. This result now replaces the two numbers that were recalled, and there is only one number remembered. The process is repeated for lines 00003 and 00004, but when these are done there are now three numbers remembered. The oldest number is from the AND, the newer numbers are from the two LD instructions. The AND in line 00005 combines the results from the last LD instructions and now there are two numbers remembered. The OR instruction takes the two numbers now remaining and if either one is a 1 the result is a 1, otherwise the result is a 0. This result replaces the two numbers, and there is now a single number there. The last instruction is the ST (store output) that will look at the last value stored and if it is 1, the output will be turned on, if it is 0 the output will be turned off.

11

00000 00001 00002 00003 00004 00005 00006 00007 00008

LDN LD AND LD LD AND OR ST END

A B C D X A

the mnemonic code is equivalent to the ladder logic below

B

X

C

D

END

Note: The notation shown above is not standard Allen-Bradley notation. The program to the right would be the A-B equivalent.

SOR BST XIC A XIO B NXB XIO C XIO D BND OTE X EOR END

Figure 7

An Example of a Mnemonic Program and Equivalent Ladder Logic

The ladder logic program in Figure 7, is equivalent to the mnemonic program. Even if you have programmed a PLC with ladder logic, it will be converted to mnemonic form before being used by the PLC. In the past mnemonic programming was the most common, but now it is uncommon for users to even see mnemonic programs. Sequential Function Charts (SFCs) have been developed to accommodate the programming of more advanced systems. These are similar to flowcharts, but much more powerful. The example seen in Figure 8 is doing two different things. To read the chart, start at the top where is says start. Below this there is the double horizontal line that says follow both paths. As a result the PLC will start to follow the branch on the left and right hand sides separately and simultaneously. On the left there are two functions the first one is the power up function. This function will run until it decides it is done, and the power down function will come after. On the right hand side is the flash function, this will run until it is done. These functions look unexplained, but each function, such as power up will be a small ladder

12

logic program. This method is much different from flowcharts because it does not have to follow a single path through the flowchart.

Start

power up

Execution follows multiple paths flash

power down

End

Figure 8

An Example of a Sequential Function Chart

Structured Text programming has been developed as a more modern programming language. It is quite similar to languages such as BASIC. A simple example is shown in Figure 9. This example uses a PLC memory location i. This memory location is for an integer, as will be explained later in the book. The first line of the program sets the value to 0. The next line begins a loop, and will be where the loop returns to. The next line recalls the value in location i, adds 1 to it and returns it to the same location. The next line checks to see if the loop should quit. If i is greater than or equal to 10, then the loop will quit, otherwise the computer will go back up to the REPEAT statement continue from there. Each time the program goes through this loop i will increase by 1 until the value reaches 10.

i := 0; REPEAT i := i + 1; UNTIL i >= 10 END_REPEAT;

Figure 9

An Example of a Structured Text Program

2.1.3 PLC Connections
When a process is controlled by a PLC it uses inputs from sensors to make decisions and update

13

outputs to drive actuators, as shown in Figure 10. The process is a real process that will change over time. Actuators will drive the system to new states (or modes of operation). This means that the controller is limited by the sensors available, if an input is not available, the controller will have no way to detect a condition.

PROCESS

Feedback from sensors/switches PLC

Connections to actuators

Figure 10

The Separation of Controller and Process

The control loop is a continuous cycle of the PLC reading inputs, solving the ladder logic, and then changing the outputs. Like any computer this does not happen instantly. Figure 11 shows the basic operation cycle of a PLC. When power is turned on initially the PLC does a quick sanity check to ensure that the hardware is working properly. If there is a problem the PLC will halt and indicate there is an error. For example, if the PLC power is dropping and about to go off this will result in one type of fault. If the PLC passes the sanity check it will then scan (read) all the inputs. After the inputs values are stored in memory the ladder logic will be scanned (solved) using the stored values - not the current values. This is done to prevent logic problems when inputs change during the ladder logic scan. When the ladder logic scan is complete the outputs will be scanned (the output values will be changed). After this the system goes back to do a sanity check, and the loop continues indefinitely. Unlike normal computers, the entire program will be run every scan. Typical times for each of the stages is in the order of milliseconds.

PLC program changes outputs by examining inputs THE CONTROL LOOP Read inputs

Set new outputs Power turned on Process changes and PLC pauses while it checks its own operation

Figure 11

The Scan Cycle of a PLC

14

2.1.4 Ladder Logic Inputs
PLC inputs are easily represented in ladder logic. In Figure 12 there are three types of inputs shown. The first two are normally open and normally closed inputs, discussed previously. The IIT (Immediate InpuT) function allows inputs to be read after the input scan, while the ladder logic is being scanned. This allows ladder logic to examine input values more often than once every cycle. (Note: This instruction is not available on the ControlLogix processors, but is still available on older models.)

x Normally open, an active input x will close the contact and allow power to flow. x Normally closed, power flows when the input x is not open. x IIT immediate inputs will take current values, not those from the previous input scan. (Note: this instruction is actually an output that will update the input table with the current input values. Other input contacts can now be used to examine the new values.) Figure 12 Ladder Logic Inputs

2.1.5 Ladder Logic Outputs
In ladder logic there are multiple types of outputs, but these are not consistently available on all PLCs. Some of the outputs will be externally connected to devices outside the PLC, but it is also possible to use internal memory locations in the PLC. Six types of outputs are shown in Figure 13. The first is a normal output, when energized the output will turn on, and energize an output. The circle with a diagonal line through is a normally on output. When energized the output will turn off. This type of output is not available on all PLC types. When initially energized the OSR (One Shot Relay) instruction will turn on for one scan, but then be off for all scans after, until it is turned off. The L (latch) and U (unlatch) instructions can be used to lock outputs on. When an L output is energized the output will turn on indefinitely, even when the output coil is deenergized. The output can only be turned off using a U output. The last instruction is the IOT (Immediate OutpuT) that will allow outputs to be updated without having to wait for the ladder logic scan to be completed.

15

When power is applied (on) the output x is activated for the left output, but turned off for the output on the right. x x

An input transition on will cause the output x to go on for one scan (this is also known as a one shot relay) x OSR When the L coil is energized, x will be toggled on, it will stay on until the U coil is energized. This is like a flip-flop and stays set even when the PLC is turned off. x x L U Some PLCs will allow immediate outputs that do not wait for the program scan to end before setting an output. (Note: This instruction will only update the outputs using the output table, other instruction must change the individual outputs.) IOT x

Note: Outputs are also commonly shown using parentheses -( )- instead of the circle. This is because many of the programming systems are text based and circles cannot be drawn.

Figure 13

Ladder Logic Outputs

2.2 A CASE STUDY
Problem: Try to develop (without looking at the solution) a relay based controller that will allow three switches in a room to control a single light.

16

Solution: There are two possible approaches to this problem. The first assumes that any one of the switches on will turn on the light, but all three switches must be off for the light to be off. switch 1 switch 2 switch 3 The second solution assumes that each switch can turn the light on or off, regardless of the states of the other switches. This method is more complex and involves thinking through all of the possible combinations of switch positions. You might recognize this problem as an exclusive or problem. switch 1 switch 2 switch 3 switch 1 switch 2 switch 3 switch 1 switch 2 switch 3 switch 1 switch 2 switch 3 light

light

Note: It is important to get a clear understanding of how the controls are expected to work. In this example two radically different solutions were obtained based upon a simple difference in the operation.

2.3 SUMMARY
• Normally open and closed contacts. • Relays and their relationship to ladder logic. • PLC outputs can be inputs, as shown by the seal in circuit. • Programming can be done with ladder logic, mnemonics, SFCs, and structured text. • There are multiple ways to write a PLC program.

2.4 PRACTICE PROBLEMS
1. Give an example of where a PLC could be used.

17

2. Why would relays be used in place of PLCs? 3. Give a concise description of a PLC. 4. List the advantages of a PLC over relays. 5. A PLC can effectively replace a number of components. Give examples and discuss some good and bad applications of PLCs. 6. Explain why ladder logic outputs are coils? 7. In the figure below, will the power for the output on the first rung normally be on or off? Would the output on the second rung normally be on or off?

8. Write the mnemonic program for the Ladder Logic below. A Y

B

2.5 ASSIGNMENT PROBLEMS
1. Explain the trade-offs between relays and PLCs for contro applications. 2. Develop a simple ladder logic program that will turn on an output X if inputs A and B, or input C is on.

18

Similar Documents

Premium Essay

Product Life Circle

...withdrawal of the product from the marketplace. It is characterized by specific stages, including research, development, introduction, maturity, decline, and finally obsolescence as the product is removed from the market (discontinued). Each stage is often linked with changes in the flows of raw materials, parts and distribution to markets as production (input costs) is adjusted to face increasing competition. The Product Life Cycle (PLC) is used to map the lifespan of a product. There are generally four stages in the life of a product. These four stages are the Introduction stage, the Growth stage, the Maturity stage and the Decline stage. The following graph illustrates the four stages of the PLC: There is no set time period for the PLC and the length of each stage may vary. One product's entire life cycle could be over in a few months. Another product could last for years. Also, the Introduction stage may last much longer than the Growth stage and vice versa. The Four Stages of the Product Life Cycle 1. Introduction:  This stage mainly concerns the development of a new product, from the time is was initially conceptualized to the point it is introduced on the market. Introduction is a period of slow sales growth as the product is introduced in the market. Profits are non existent in this stage because of heavy expenspes of product introduction. The The great majority of ideas do not reach the promotion stage. The corporation having an innovative idea first will...

Words: 1111 - Pages: 5

Premium Essay

Lifebuoy

...the concept of PLC useful? Product life cycle concept is useful for firms to develop sustainability strategies towards their products (i.e. how to allocate marketing funds in accordance with the phase of the cycle the product has entered). The PLC defines that a product goes through a cycle during their lifetime, which starts when the product is launched where the product cycle grows until one day, it falls to an end. The good aspect about this model is that it divides the life of a product in several stages with different characteristics based on sales level and growth of the product: introduction; growth; maturity; decline. This allows the adoption of different strategies according to the consumer behaviour and considering the sales of the product. The PLC model is not capable in predicting the duration of the phases since that depends on the product and industry (i.e. PLC of a smartphone is much smaller than the PLC of a shampoo). In addition, a sudden drop of sales does not really result in new product cycle since this change can be provoked by external events or factors like changes in market or consumer preferences or the introduction of substitutes by the competition can turn planning based on a product life cycle prediction totally useless. There is little or no guarantee that a product will even make it out of the introduction stage, or it may move through the cycle faster or slower than anticipated. The PLC can also prove...

Words: 898 - Pages: 4

Premium Essay

Dfdadfasdf

...ADVOCACY ESSAY: PEER REVIEW MEMO When you are ready to review a peer’s essay, open this document in one window and the essay in another window (you’ll be cutting and pasting information from the essay into this memo. Place your cursor in the gray field to record your answer. Refer to specific parts of paper by paragraph number. Reviewer’s Name: Karen Adame Title of Essay Reviewed: Intervention Programs for Youth to Reduce Deliquency Author’s Name: Jessica Leal-Rosas Date: 6/4/13 GENERAL COMMENTS Begin by reading your peer’s essay all the way through. Mark areas that are difficult to read, or don’t make sense, or that you think have some grammatical/usage problems. When you have read through the entire essay, come back and choose up to five sentences/areas that you marked for readability. Copy the text and insert it here, along with the paragraph number. You do not have to identify the error or fix it… just locate problems. No more than five sentences:      For the past decades, researchers such as Peter Greenwood have focused their attention…      Indeed, any program that is introduced to help reduce… After having read the whole paper through the first time, write out a few “big picture” comments. What one element of the paper do you think needs the most work before your peer turns it in as a final draft?      There are several grammar errors and to explain what are concepts such as zero tolerance and get tough on crime. If you had to grade it right now based...

Words: 1539 - Pages: 7

Premium Essay

Vwefvefv

...How to Write a Critique The critique is a rigorous critical reading of a passage. As such, it picks up where the objective summary leaves off. In fact, a critique often includes a brief summary so that its readers will be able to quickly grasp the main ideas and proofs of the passage under examination. Critiques come in all shapes and sizes, but a good way to get used to writing critically is to plan your earliest critiques along the following lines. First, read the passage thoroughly. Make plenty of notes, ask lots of questions, and highlight or underline anything you may wish to quote in your paper. Spend some time on this step. It is impossibly to adequately critique something if you don't fully understand it. Next, write a summary. Identify the author's main point (thesis) and list the types of proofs he or she employs to persuade the reader to believe or accept the thesis. For example, does the author use historical anecdotes, quote noted authorities, provide statistical evidence, or appeal to a reader's sense of patriotism or generosity? These are all common types of proofs used in persuasive writing. You should also try to figure out why the author is writing, and to whom. Remember that the purpose of a paper and its intended audience can affect the way the paper is written. Now, set your own agreement or disagreement with the author aside for a moment and investigate the validity of his or her argument. Does the author provide complete and accurate information...

Words: 774 - Pages: 4

Free Essay

Research Report

...other students. Therefore, your teacher may use this to test you on a lot of things. The assignment will also have different aims. With the aim of the paper in mind, your teacher will use this to determine if the research topic ought to be given to you or you have to select the topic on your own. If the teacher wants to have something particular from the students, for example, their level of understanding of interpretation of question, the topic will be provided to the students.If the idea of your topic has been settled, you will have to compose your assignment paper taking into consideration the basic principles of a good research paper. Your assignment paper will start with an introduction, a body, followed by a conclusion. You should not just jump into the introduction. You can only begin the introduction subsequent to conducting some preliminary research on the research paper topic. Preliminary research is what will give an arrangement and a purpose to your paper. This is because you have to know where to start your paper and what direction your paper should take. If you are already...

Words: 598 - Pages: 3

Premium Essay

Planning a Presentation

...Planning a Presentation © 2013 Learning Development Basic structure (e.g. 20 min presentation) 2 • Introduction (1-2 mins) • Body or discussion: – 3-5 sections (3-5 mins each) • Conclusion (1-2 mins) March 6, 2013 LD Planning a Presentation | www.newcastle.edu.au The Introduction • Greet the audience • Gain their attention – how? • Tell them what to expect – topic, purpose, outline • ‘Housekeeping’ – documents, questions March 6, 2013 3 LD Planning a Presentation | www.newcastle.edu.au The Introduction: tell them what to expect • Topic: – We are discussing the marketing plan of Company X… 4 • Purpose: – We’ll be analysing the current marketing strategy in order to make recommendations for future action • Outline: – We’ll do this through a situational analysis and a SWOT analysis. We will then outline objectives, alternative strategies, and, finally, present an action plan March 6, 2013 LD Planning a Presentation | www.newcastle.edu.au Body of the Presentation • 3-5 Sections – Select key themes/points – Include details to illustrate these – Decide what can be omitted – Don’t have too many visuals • Signpost: introduce & conclude each section 5 March 6, 2013 LD Planning a Presentation | www.newcastle.edu.au The Body (cont’d): ‘signposting’ • Introduce: – Firstly, I’d like to analyse the internal factors for company X… • Conclude: – It is apparent, therefore, that while the company’s capabilities vary, the company’s...

Words: 770 - Pages: 4

Free Essay

Gatsby Initial Impressions

...Initial impressions of Gatsby - Chapters 1-4 We see and hear relatively little of Gatsby in the opening chapter of the novel; he is presented as an almost ephemeral, ghost like figure. However we are drawn to his character by the way he is described: ‘There was something gorgeous about him, some heightened sensitivity to the promises of life’. Consequently, Every time he is mentioned there is always something to interrupt which adds to the mysteriousness of his character. At the end of chapter 1 we catch a glimpse of him where he is bonded with strong romantic imagery, he comes out to see ‘the silver pepper of the stars’ and is spotted when ‘the silhouette of a moving cat wavered across the moonlight’. Fitzgerald combines the purity and romance of Gatsby’s dream with these symbols. On the contrary when he gives a ‘sudden imitation that he was content to be alone’ by stretching out his arms towards the ‘dark water in a curious way’ the purity of his character seems to disappear as the ‘single green light, minute and far away’ suggests the ill omen of his character. In Chapter 3 Fitzgerald uses the part scene to introduce Gatsby to the reader, here Gatsby emerges as a mysterious character who is the subject of gossip, He is well known but ironically nobody seems to have any verifiable information about him. Nick then describes him and says ‘he had one of those rare smiles with a quality of eternal reassurance in it’ the way Gatsby us portrayed is one of extreme modesty, he appears...

Words: 399 - Pages: 2

Premium Essay

Public Speaking

...What are the values, needs, and beliefs of the audience? What are the motivations of the audience? What are the demographics of the audience? Analyze the following: • • • • • • Age Gender Education Group Affiliations Socio-economic Status Ethnicity 7. What is your context? • • • • • • • • • • Large or small audience? What are the expectations? Do current events affect your speech? Outdoors or indoors? Noise? Are appropriate teaching tools available? What is the size of the room? Is the audience seated or standing? Is the room hot or cold? Are there chairs or tables? INTRODUCTIONS AND CONCLUSIONS Purposes of the Introduction: To obtain the listener’s attention. To create a favorable first impression; if you lose them here, you may lose them for good. To arouse interest in your subject. To orient the audience to the different parts of your speech. 1. 2. 3. 4. Four Parts to an Introduction: 1. Attention-getting Phase—capture the interest of audience. 2. Orientation Phase—articulate the purpose and identify with audience (why should they listen?). 3. Credibility Phase—what type of expertise do you have? 4. Preview of Main Points—delineate main topics. First: ATTENTION-GETTING PHASE  Ask Audience to Physically Move.  Create Curiosity.  Refer to the Setting or the Occasion.  Compliment Your Audience.  Use a Startling Statement or Statistic.  Use a Quotation.  Use Humor.  Use a Short Story.  Pose a Question. Second: ORIENTATION PHASE  Introduce...

Words: 577 - Pages: 3

Premium Essay

Analyzing Messages

...feedback Explanations of whether the message and technology were appropriate given the environment and purpose Respond to one of these messages and insert it as Appendix D in the Appendix Section. Use direct, effective writing techniques. Explain how the content, media, and technology of the feedback are appropriate for the purpose and audience of all the messages. Insert each of these messages as separate appendices (A, B, C and D) in an Appendix Section following the Reference section. See Pages 4 and 12-16 of the Sample APA Student Paper for Style and Mechanics for examples of how to format an appendix reference in the text and in the end Appendix Section . Organize the paper to reflect an introduction, body/discussion and conclusion as follows: Introduction states purpose, captures attention by indicating what the paper will be about and how you will be approaching...

Words: 349 - Pages: 2

Free Essay

My Communication Class

...During the in class exercises I truly learned a lot about myself. I was completely amazed at how I never knew the things about myself. I remember on the first day of class we had this ice breaker/Activity we had done that really made me get in the spotlight. We had to introduce ourselves. As I walked in front of the class I realized that I was truly nervous. The closer and closer I got to the front of the class the more nervous I became. When I finally had reached the front I had turned to my peers and realized that all eyes were all on me. Being overwhelmed, I continued you on to the introduction of myself by saying “Hi, my name is Roman Guillory…” and the rest of my introduction. As I closed my remarks and had a seat I just set back and watched my peers as they tackled the same situation. Watching them speak made me feel better because I realized that they were feeling the same way that I had felt when I was up there. Another activity that I remember doing is the group activity. We all had to cut things out the magazine representing what looked ugly to us and what looked good. This activity really engaged us to communicate with each other effectively and ultimately decide which things we should do as a team. Even though we all had different personalities and viewed different things as looking bad or good, we all came to a considerable decision on what will be glued to the poster and what wasn’t. All in all, I truly liked most of the activities that we did in class and some them...

Words: 292 - Pages: 2

Premium Essay

Sustainable Development

... | | |Chapter 2 Review of Related Literature | | |  |      Introduction to Rev of Literature | | |  |      Foreign and Local Literature | | |  |      Foreign and Local Studies | | |  |      Synthesis | | |Chapter 3 Results and Discussions | | |  |Narrative description of the result obtained from the survey questionnaire | | | |Chapter 4 | | |  |Conclusions and recommendations | | |References | | |Appendices | | |      Survey questionnaire (accomplished) | | |Financial Statement of your surveyed company | Sustainable Business Operation Survey Questionnaire The introduction of cleaner production/operation or sustainable business operation...

Words: 889 - Pages: 4

Premium Essay

Case Study 2 Internal Control

...Case Study 2 -Internal Control Due by Sunday of week 5, 11:59PM, Mountain Time LJB Company, a local distributor, has asked your accounting firm to evaluate their system of internal controls because they are planning to go public in the future. The President wants to be aware of any new regulations required of his company if they go public so he met with a colleague of yours at a local restaurant. The President of the company explained the current system of internal controls to your colleague. Your colleague has since been promoted to a tax position so she has passed on the information below so you can generate recommendations for the partner at your accounting firm to share with the President of LJB Company. Since LJB Company is a relatively lean organization, they have a lot of faith in their long-term employees. They have one accountant who serves as Treasurer and Controller which streamlines many of their processes. In this dual role, he purchases all of the supplies and pays for these purchases. He also receives the checks and completes the monthly bank reconciliation. The accountant is so busy that the company handles petty cash a bit differently. All employees have access to the petty cash in a desk drawer and are asked to only place a note if they use any of the cash. The accountant has recently started using pre-numbered invoices and wants to buy an indelible ink machine to print their checks. The President is waiting to hear from you if this is a necessary purchase...

Words: 913 - Pages: 4

Premium Essay

World Food

...swinbourne university | Assesment 2A | Group 4 | | Amy TERZI | | | Assessment 2 Themes Table (Details will be provided in week 5) International Cuisines |   | Italian (Marcus) | Greek | Vietnamese (Karen) | Australian (Candice) | French (Libby) | Traditional | - Antipasto-Primo |  moussakka |  banh mi | Meat Pie | Boef Bourgingion | Food and celebrations | - Tortellini (Christmas day)-colomba (easter) | easter avgolemono |  banh chung | BBQ |   | Delicacies - NA | - Saltimbocca-Lampredotto |  NA |  NA |  N/A |  NA | Famine food | - Wild ferns/ Weeds-Pitsockery |   silignites |  pho | Damper | Croque Monsieur | Space to discuss week 5’s activity and assignment 2A in your team. Further details will be provided in week 5. Note: This Wiki will be used to assess how well each of you has collaborated so it is important to make an active contribution here throughout the project.                             Is everyone okay with the graph??? - Marcus Name | Date | Idea |  Marcus |  13/8/2014 |  Hey guys, i see there is no communication just yet but lets start working together on this one :) i hope everyone is eager to getting it all going well.From the cliche this is what i have gathered from it:1- A light at the end of the tunnel - fairly sure that one is standard2 -  A rolling stone gathers no moss is an old proverb, credited to Publilius Syrus, who in his Sententiae states, People who are always moving, with no roots in one place, avoid...

Words: 4226 - Pages: 17

Free Essay

Анализ текста

...The headline of the article is — Заголовок статьи… The key issue of the article is… — The author in the article touches upon the problem of… I’d like to comment on the problem of… — At the beginning of the story the author — describes — описывает depicts — изображает touches upon — затрагивает explains — объясняет introduces — знакомит mentions — упоминает recalls -вспоминает The story begins (opens) with a (the) description of — описанием statement — заявлением introduction of — представлением the mention of — упоминанием the analysis of a summary of — кратким анализом the characterization of — характеристикой (author’s) opinion of — мнением автора author’s recollections of — воспоминанием автора the enumeration of — перечнем In conclusion the author dwells on — останавливается на points out — указывает на то generalizes — обобщает reveals — показывает exposes — показывает accuses/blames -обвиняет mocks at — издевается над gives a summary of -дает обзор The author resorts to … to underline… — Автор прибегает к …, чтобы подчеркнуть … Let me give an example… — Позвольте мне привести пример … At the end of the story the author sums it all up by saying … — В конце рассказа автор подводит итог всего этого, говоря To emphasize … the author uses… - Чтобы акцентировать внимание … автор использует To underline … the author uses… Чтобы подчеркнуть … автор использует From my point of view… — С моей точки зрения … As far as I am able to judge…...

Words: 297 - Pages: 2

Premium Essay

Comp 230

...automate many different system administration tasks. Your manager has asked you to research a system administration task and implement it using VBScript. In addition, your manager would like to see both a proposal that describes the system administration task and a complete VBScript solution with sample output runs. During the first 6 weeks of this course, you will be introduced to a variety of topics in VBScript. These topics include the following. VBScript Introduction: Variables, Constants, and Data Types VBScript Output Methods, VBScript Input Methods VBScript Decision-Making Statements VBScript Loop Structures and Arrays VBScript Procedures and Functions VBScript File Input/Output Methods The Course Project is worth 170 points and is comprised of the following deliverables. Week 3: Outline (30 points) Week 6: Complete proposal (140 points) The following is a list of guidelines for your Course Project, due in Week 6. The complete proposal should include the following. Introduction Description of program (script) Source Code with detailed comments Source Code should contain a minimum 5 out of 6 topics learned during this session. Explain the output along with screenshots of the...

Words: 343 - Pages: 2