sme1013 sme1013 programming programming for engineers for
play

SME1013 SME1013 PROGRAMMING PROGRAMMING FOR ENGINEERS FOR - PowerPoint PPT Presentation

SME1013 SME1013 PROGRAMMING PROGRAMMING FOR ENGINEERS FOR ENGINEERS Ainullotfi bin Abdul Latif Ainullotfi bin Abdul Latif Faculty of Mechanical Engineering UTM Faculty of Mechanical Engineering UTM Problem Solving Problem Solving


  1. SME1013 SME1013 PROGRAMMING PROGRAMMING FOR ENGINEERS FOR ENGINEERS Ainullotfi bin Abdul Latif Ainullotfi bin Abdul Latif Faculty of Mechanical Engineering UTM Faculty of Mechanical Engineering UTM

  2. Problem Solving Problem Solving Recognise and understand the problem (what Recognise and understand the problem (what is it that needed to be solved?) is it that needed to be solved?) List the parameters affecting the problem List the parameters affecting the problem (input) (input) Select the appropriate theory Select the appropriate theory Make the necessary assumptions Make the necessary assumptions Solve the problem – may use a computer Solve the problem – may use a computer Verify the results Verify the results Feb 22, 2012 SME1013 Programming for Engineers 2

  3. Computer Solution: Computer Solution: Software Development Software Development Process Process List down the sequence of steps to solve List down the sequence of steps to solve the problem – algorithm algorithm the problem – Write these steps in a computer language Write these steps in a computer language – program program coding coding – Test the program to ensure it error-free Test the program to ensure it error-free and reliable – debugging debugging and reliable – Make the program easy to understand Make the program easy to understand and use – documentation documentation and use – Save the program and improve it as one Save the program and improve it as one gathers experience gathers experience Feb 22, 2012 SME1013 Programming for Engineers 3

  4. Computer Coding Computer Coding A program program is a sequence of instructions to is a sequence of instructions to A the computer for it to solve a particular the computer for it to solve a particular problem. A set of programs is called code code. . problem. A set of programs is called Programs are written in some Programs are written in some programming language language – e.g. Fortran, – e.g. Fortran, programming Basic, C++, Pascal, Java, Matlab. Basic, C++, Pascal, Java, Matlab. Programs are stored in files files – which are a – which are a Programs are stored in sequence of bytes which is given a name sequence of bytes which is given a name and stored on a disk. and stored on a disk. Feb 22, 2012 SME1013 Programming for Engineers 4

  5. Computer Coding Computer Coding A bit bit or a binary digit is the smallest unit or a binary digit is the smallest unit A of data storage. It has the value of either 0 of data storage. It has the value of either 0 or 1 only. or 1 only. A byte byte is a sequence of 8 bits, is a sequence of 8 bits, A representing 256 different values. E.g. of a representing 256 different values. E.g. of a byte is: byte is: 0 1 0 1 1 1 0 1 0 1 0 1 1 1 0 1 A byte could represent a character like a A byte could represent a character like a letter or a number or a symbol. letter or a number or a symbol. A word word is a larger group of bytes, maybe is a larger group of bytes, maybe A two bytes (16 bits). two bytes (16 bits). Feb 22, 2012 SME1013 Programming for Engineers 5

  6. Computer Coding Computer Coding A program is a file containing a A program is a file containing a sequence of “statements statements”, each of ”, each of sequence of “ which tells the computer to do a which tells the computer to do a specific action. specific action. Once a program is run run or or executed executed the the Once a program is commands are followed and actions commands are followed and actions occur in a sequential sequential manner. manner. occur in a If the program is designed to interact If the program is designed to interact with the outside world, then it must with the outside world, then it must have input input and and output output. . have Feb 22, 2012 SME1013 Programming for Engineers 6

  7. Computer Coding Computer Coding A program is said to have a bug bug if it if it A program is said to have a contains a mistake or it does not function contains a mistake or it does not function in the way it is intended to. in the way it is intended to. Bugs can happen both in the logic logic of the of the Bugs can happen both in the program, as well as in the commands commands. . program, as well as in the In order that the program perform the In order that the program perform the exact actions it is intended to do, before exact actions it is intended to do, before the actual program is written an algorithm an algorithm the actual program is written for solving the problem must first be for solving the problem must first be outlined. outlined. Feb 22, 2012 SME1013 Programming for Engineers 7

  8. Computer Coding Computer Coding An algorithm algorithm is a general sequence of the is a general sequence of the An logical steps in solving a specific problem. logical steps in solving a specific problem. A flowchart flowchart is a graphical representation of is a graphical representation of A the algorithm. the algorithm. A pseudocode pseudocode gives a more detailed, step- gives a more detailed, step- A by-step set of instructions required to solve by-step set of instructions required to solve the problem. It is normally written in the problem. It is normally written in everyday language. everyday language. Feb 22, 2012 SME1013 Programming for Engineers 8

  9. Good Algorithms Good Algorithms Each step must be deterministic deterministic – it – it Each step must be cannot be ambiguous or leaving cannot be ambiguous or leaving things to chance. things to chance. The process must end after a finite finite The process must end after a number of steps – it must not be number of steps – it must not be open-ended. open-ended. The algorithm must be general general The algorithm must be enough to deal with any contingency. enough to deal with any contingency. Feb 22, 2012 SME1013 Programming for Engineers 9

  10. Common Flowchart Common Flowchart Symbols Symbols Start/Stop Decision Process Connector Off-page Input/Output Connector Refers to a Preparation separate (for loops flowchart etc) Feb 22, 2012 SME1013 Programming for Engineers 10

  11. Example Problem #1 Example Problem #1 Given temperature in degrees Given temperature in degrees Fahrenheit, the temperature in degrees Fahrenheit, the temperature in degrees Kelvin is to be computed and shown. Kelvin is to be computed and shown. Formula: Formula: T K = ( 1.8 ) + 273.15 T F − 32 T K and T F are temperatures in degrees T K and T F are temperatures in degrees Kelvin and Fahrenheit respectively Kelvin and Fahrenheit respectively Feb 22, 2012 11 Feb 22, 2012 SME1013 Programming for Engineers SME1013 Programming for Engineers 11

  12. Algorithm Algorithm Start Start Get the temperature in Fahrenheit Get the temperature in Fahrenheit Compute the temperature in Kelvin Compute the temperature in Kelvin using the formula using the formula T K = ( 1.8 ) + 273.15 T F − 32 Show the temperature in Kelvin Show the temperature in Kelvin Stop Stop Feb 22, 2012 12 Feb 22, 2012 SME1013 Programming for Engineers SME1013 Programming for Engineers 12

  13. Flowchart Flowchart Start Get T F T K = ( 1.8 ) + 273.15 T F − 32 Show T K Stop Feb 22, 2012 13 Feb 22, 2012 SME1013 Programming for Engineers SME1013 Programming for Engineers 13

  14. Pseudocode Pseudocode 1. Start 1. Start 2. Get T F 2. Get T F 3. T K = (T F -32)/1.8 + 273.15 3. T K = (T F -32)/1.8 + 273.15 4. Show T K 4. Show T K 5. Stop 5. Stop Feb 22, 2012 14 Feb 22, 2012 SME1013 Programming for Engineers SME1013 Programming for Engineers 14

  15. Example Problem #2 Example Problem #2 Given a set of numbers, calculate their Given a set of numbers, calculate their sum and the average value (mean). sum and the average value (mean). Formula: Formula: n x = 1 n ∑ x i ̄ i = 1 n is the number of numbers in the set n is the number of numbers in the set Feb 22, 2012 15 Feb 22, 2012 SME1013 Programming for Engineers SME1013 Programming for Engineers 15

  16. Algorithm Algorithm 1. Start 1. Start 2. Get one number in the set 2. Get one number in the set 3. Count the numbers as it is obtained 3. Count the numbers as it is obtained 4. If there are still numbers to be obtained, 4. If there are still numbers to be obtained, go back to step 2. go back to step 2. 5. Sum the numbers in the set 5. Sum the numbers in the set 6. Divide the sum by the number of numbers 6. Divide the sum by the number of numbers in the set to get the average in the set to get the average 7. Show the sum and the average 7. Show the sum and the average 8. Stop 8. Stop Feb 22, 2012 16 Feb 22, 2012 SME1013 Programming for Engineers SME1013 Programming for Engineers 16

  17. Flowchart Flowchart Start Calculate mean Get number Show sum Count number Calculate sum and mean Yes No Any more Stop number? Feb 22, 2012 17 Feb 22, 2012 SME1013 Programming for Engineers SME1013 Programming for Engineers 17

  18. Detailed Flowchart Detailed Flowchart Start sum ← 0 i ← 0 Mean = sum/n j ← 0 i ← i + 1 Show sum j ← j + 1 and mean Get x i sum ← sum + x j Stop Yes Any more No number? Is j ≥ n? No Yes n ← i Feb 22, 2012 18 Feb 22, 2012 SME1013 Programming for Engineers SME1013 Programming for Engineers 18

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend