|
I. CATALOG DESCRIPTION: ET154 Computer Programming C 1, P 2, CR 2 This is a foundation course in computer programming for Electrical Engineering Technology. No previous programming knowledge is assumed. The course uses a high level programming language and examines the available structures on a typical personal computer platform. Programming techniques and algorithm development are presented with real world examples from the electrical field. The use of schematic capture and electrical circuit simulation software is included. |
|
II. MATERIALS: Text: Python Programming for the Absolute Beginner 3E, Dawson, Thomson. Reference: Python Programming: An Introduction to Computer Science, Zelle, Franklin, Beedle & Associates. |
|
III. STUDENT LEARNING OUTCOMES: The student will demonstrate an understanding of programming a digital computer using a high level language. The student will demonstrate problem analysis and solution techniques using the computer as a tool. These techniques will be applied and expanded upon in subsequent courses in the EET curriculum. The student will demonstrate a basic knowledge of how to use a modern IDE (integrated development environment). The student will demonstrate knowledge of the fundamentals of schematic capture. The student will demonstrate knowledge of the fundamentals of computer circuit simulation. Through the laboratory, the student will demonstrate practical insight and knowledge of computer systems. |
Background
This course assumes no familiarity with computers. If you feel that you have a sufficient programming background, please see me about testing out, or preferably opting for a more advanced course. Math level is mostly algebra with some trig. Much of our work will revolve around using the Python language to help solve electrical problems. We will also introduce the use of word processors for writing lab reports, and circuit simulation tools such as Electronics Workbench MultiSIM. For lab, you'll probably want a few 3.5" floppy disks to store your work (space is also available on the student network H drive). Lab exercises are due no later than one week from the date of assignment. A printout of both properly commented program code and results is expected. Hand written code will not be accepted. Late penalty is one letter grade for the first half week, two letter grades for the second half week. Assignments are not accepted beyond two weeks and receive a grade of 0. Remember, plagiarism is grounds for failure. Although I encourage students to help each other, these assignments are individual works. Anyone caught copying someone else's programs, or allowing someone to copy their programs will receive a grade of 0. (Obtaining proof is much easier than one might think.)
Note: The most recent version of the Python programming language and tools are available at www.python.org. Python runs on many different platforms including Windows, Mac OS X, and Linux and is available for free. Download version 2.7, not 3.x. A student copy of Multisim (referenced by the Boylestad Circuit Analysis text used in Circuits 1 and & 2) is available for a modest fee from www.electronicsworkbench.com.
Week-by-week progress and assignments
| 1 |
Our first week is an introduction to computers: what they are, the various types, and a representative block diagram. Examples include desktop machines, engineering workstations, and embedded applications. We introduce the ideas of bits and bytes, and look at typical applications such as word processors.
|
| 2 |
This week we discuss the idea of circuit simulation and analysis, including schematic capture and virtual instruments.
|
| 3 |
We extend our discussion of circuit analysis and introduce the concept of PCB layout.
|
| 4 |
This week we introduce Python programming and note the differences in the various generations of programming languages.We introduce the concepts of variables, statements, and I/O (input/output).
|
| 5 |
We continue our introductory material and look at variable types and basic operations (strings and numerics). Also, we examine how to obtain data from the user.
|
| 6 |
Extensions of strings and numeric operations are the subjects of this week, including conversion between the various types. We also introduce conditionals: the if statement.
|
| 7 |
This week we continue with conditionals: the if-else and variants, and logical operators.
|
| 8 |
Around here we'll have our first in-class Python programming test.
|
| 9 |
This week we begin discussing looping constructs, namely the while loop.
|
| 10 |
We conclude chapter three and look at loops-within-loops, and introduce the for loop.
|
| 11 |
This week we continue with variations on loops and other useful items.
|
| 12 |
We continue to examine the use of strings and introduce tuples (similar to the arrays found in other languages such as BASIC).
|
| 13 |
This is our last week of Python instruction and includes the use of functions and files.
|
| 14 |
Our final in-class test will be here.
|
|
|
We will spend time reviewing the course, but if time permits, we will continue looking at files in chapter seven. Please note that there are many useful and fun topics left in the text, including graphics and game programming, that you may find satisfying to study on your own.
|
Resources
Labs