- Deeper academic knowledge, especially in advanced math/science topics
- Enhanced critical thinking and problem-solving abilities
- Improved study and test-taking strategies
- Higher levels of self-motivation and dedication
Thursday, 29 August 2024
Does a Master's Degree Give You an Advantage in Your FE Exam Preparation?
Thursday, 22 August 2024
Ultimate Guide to Balancing Study Time for the FE Exam
- Take your first practice test 2-3 months before the exam to identify weak areas to focus on. Take another one 1-2 months out, and your final test just before exam day.
- Strictly follow the 5-hour 20-minute time limit to build your test-taking endurance.
- Grade each test thoroughly and note the concepts/types of problems you missed. Emphasize reviewing trouble topics in your following study sessions.
- Pay attention to how you felt physically and mentally while taking the practice exam. Adjust your schedule to prevent any onset of burnout.
- Purchase at least 2 different practice exams. Repeating the same test won't help as much. Varying your practice gives a well-rounded experience.
- Multiple correct options (allows multiple choices to be correct)
- Point and click (requires examinees to click on part of a graphic to answer)
- Drag and drop (requires examinees to click on and drag items to match, sort, rank, or label
- Fill in the blank (provides a space for examinees to enter a numerical response to the question)
- Pomodoro Technique - Study intensely for 25 mins, take a 5 min break. After 4 rounds, take a 30-minute break.
- Forest - This app lets you set a time limit and grow a virtual tree while you stay off your phone. If you switch apps before the timer ends, the tree dies.
- Be Focused - Customize sessions with timed intervals of working, short breaks, and long breaks.
- Focus Keeper - Alternate between focused study and rest periods. Track your daily progress.
- Oatmeal with berries
- Greek yogurt with mixed nuts
- Apple with peanut butter
- Carrots with hummus
- Trail mix
- Green tea
Khoa Tran is an electrical engineer working at the Los Angeles Department of Water and Power and is currently pursuing his master's in electrical Power from the University of Southern California. He is fluent in both Vietnamese and English and is interested in outdoor activities and exploring new things.
Thursday, 15 August 2024
FE Exam or Engineering Experience: Which Comes First?
Do You Have to Pass the FE Before Gaining Experience?
How Long to Study for the FE Exam?
Should You Work Before Taking the FE Exam?
- Earning money to finance FE prep materials and expenses
- Gaining some field experience to inform exam studying
- Having more "think like an engineer" problem-solving practice
How to Prepare for the FE Exam
- Use the NCEES exam specifications to focus studying on the topics covered. Review college textbooks and notes.
- Work through many practice problems under timed conditions. Practice builds speed and accuracy.
- Learn the FE exam format and how to strategically tackle questions. Don't waste time on difficult problems.
- Master your calculator to efficiently handle mathematical computations. Bring spare batteries.
- Brush up on fundamentals you haven’t used recently, like chemistry, physics, or advanced math.
- Take a review course with a top-ranked exam prep provider like School of PE.
- Keep taking practice exams to evaluate preparedness until consistently scoring over 70%.
- Rest up the day before. Have what you need ready so you're not rushing around.
What's Next After Passing the FE Exam?
- Update your resume and LinkedIn profile to highlight your accomplishments.
- Join engineering associations and networks like the National Society for Professional Engineers.
- Formally start accruing the professional engineering experience needed for PE licensure. Track hours.
- Identify a PE mentor at your company who can provide guidance.
- Continue developing technical skills in your field. Seek opportunities to gain experience in areas covered on the PE exam.
- Maintain knowledge by attending engineering seminars and events or taking continuing education courses. Stay up to date on regulations.
- Save FE exam references and resources in case you need to brush up again for the PE exam.
Key Takeaways
- You do NOT have to pass the FE exam before starting your engineering career or gaining experience. Nothing prevents working as an engineer before or without FE certification.
- However, it is wise to take the test as soon as possible after finishing your accredited engineering degree. Knowledge is freshest, and the exam is often easier right out of college.
- Passing the FE exam early starts the licensure clock if your goal is to become a licensed Professional Engineer. It also boosts your resume and competitiveness.
- Disciplined studying is key to succeeding on the broad FE exam, which covers many engineering topics. On average, examinees spend 80-100 hours preparing.
- The FE exam is your chance to prove your comprehension and ability to apply foundational engineering concepts. Take advantage while the material is still fresh after graduation.
Khoa Tran is an electrical engineer working at the Los Angeles Department of Water and Power and is currently pursuing his master's in electrical Power from the University of Southern California. He is fluent in both Vietnamese and English and is interested in outdoor activities and exploring new things.
Thursday, 8 August 2024
Mastering Digital Signal Processing: Your Essential Guide for the FE Electrical Exam
Sampling
The sampling theorem states that in order to accurately reconstruct a continuous-time signal from its samples, the sampling rate must be at least twice the highest frequency component in the signal. This minimum sampling rate is known as the Nyquist rate. If the sampling rate is below the Nyquist rate, aliasing occurs, leading to distorted or misleading reconstructions.
Digital Filters
Based on the FE Electrical and Computer topic list, the subtopics covered in the Digital Filters are Difference Equation and Z-Transform. However, Finite Impulse Response (FIR) and Infinite Impulse Response (IIR) shall not be neglected even though they were not listed.
1. Difference EquationA difference equation is a mathematical equation that represents the relationship between the input and output signals of a discrete-time system. It describes how the current and past input values, as well as the current and past output values, are combined to compute the current output value (McClellan et al., 2021, 147).
A general form of a difference equation is:
y[n]=a0 x[n]+a1 x[n-1]+...+b0 y[n-1]+b1 y[n-2]+... (x)
Where,
y[n] is the current output at discrete time n.
x[n] is the current input at discrete time n.
x[n-1],... is the past input values.
y[n-1],... is the past output values.
a0, … and b0,... are the coefficients of the difference equation.
Example:
y[n]=4x[n]+2y[n-1]+2y[n-2]; y[n]=0 for n<0
What is the impulse response of a system described by the difference equation?
Solution:
1. For impulse response, x[n]=δ[n] and δ[0]=1 and δ[n≥1]=0
. n=0
y[0]=4δ[0]+2y[0-1]+2y[0-2]=4(1)+y[-1]+y[-2]=4+0+0=4
. n=1
y[1]=4δ[1]+2y[1-1]+2y[1-2]=4(0)+2y[0]+2y[-1]=0+2(4)+2(0)=8
. n=2
y[2]=4δ[2]+2y[2-1]+2y[2-2]=4(0)+2y[1]+2y[0]=4+2(8)+2(4)=28
You can keep computing for n approaches ∞ but the solution right is h[n]={4.8,28,...}
2. Z-TransformThe z-transform provides a way to represent discrete-time signals or sequences as functions of a complex variable, denoted as "z." It is defined as the sum of the sequence multiplied by powers of z, where z can be any complex number (McClellan et al., 2021, 348). The z-transform of a discrete-time sequence x[n] is given by:
∞ | |
X(z)=∑ | x[n]z-n(x) |
n = 0 |
In the exam, a table of z transform paris is provided in the Reference Handbook p.372.
Example:
Find the z-transform X(z) of the following signal:
x[n]=δ[n]+1/5 δ[n-2]-3/4 δ[n-4]
Solution:
1. Use the summation definition (equation x) to solve for the z transform:
∞ | |
X(z)=∑ | x[n]z-n |
n = 0 |
2. x[n] is zero for all values of n except when n=0,2,and 4.
x[n]={1,0,1/5,0,-3/4}
. n=0, z transform is
x[0]z-0=1⋅1=1
. n=2, z transform is
x[2]z-2=1/5⋅z-2
. n=4, z transform is
x[4]z-2=-3/4⋅z-4
So, X(z)=1+1/5 z-2-3/4 z-4
3. Finite Impulse Response (FIR)The FIR system, or, as we often refer to them, FIR filter, is a type of digital filter whose output is determined by a weighted sum of past and present input samples (McClellan et al., 2021, 147).
The output of the FIR filter can be calculated as:
∞ | |
Y(n)=∑ | bnx[n-k] |
k = 0 |
4. Infinite Impulse Response (IIR)
In contrast to FIR filter, the output of IIR filter is the sum of the values of past inputs plus past outputs (McClellan et al., 2021, 394).
The output of the IIR filter can be calculated as:
y[n] = ∑l=0∞ bl x[n-l] + ∑k=0∞ ak y[n-k]
Example:
With the given filter below
y[n]=x[n]+1/6 x[n-1]
What type of filter is it?
Solution:
1. By looking at the function, the output contains the sum of the current and past inputs. Therefore, it is an FIR filter.
2. Do a z-transform to determine if it is a low-pass, high-pass, band-pass, or band-reject filter.
y[n]=x[n]-1/6 x[n-1]
Use the z-transform pair from Reference Handbook p.372, we have
Y(z)=X(z)-1/6 X(z)z^(-1)
H(z)=(Y(z))/(X(z))=1-1/6 z^(-1)=(z-1/6)/z
Conclusion
This blog aims to serve as a valuable point of reference, offering concise explanations and practical examples for each topic addressed in the exam. It is important to note, however, that while the blog provides a helpful overview, it may not encompass all aspects related to digital signal processing. For a more thorough and comprehensive study plan, I recommend visiting School of PE’s FE Electrical exam review course FE Electrical exam review course, which offers an extensive and detailed curriculum to ensure a comprehensive understanding of the subject matter.
References
D, P., GJ, A., & D, F. (2001). Neuroscience 2nd edition. Sunderland (MA): Sinauer Associates. https://www.ncbi.nlm.nih.gov/books/NBK10924/
Hasegawa, M. (2021). Lecture 6: Sampling and Aliasing. Retrieved June 6, 2023, from https://courses.engr.illinois.edu/ece401/fa2021/lectures/lec06.pdf
McClellan, J. H., Schafer, R. W., & Yoder, M. A. (2021). DSP First Second Edition. Pearson.
Khoa Tran is an electrical engineer working at the Los Angeles Department of Water and Power and is currently pursuing his master's in electrical Power from the University of Southern California. He is fluent in both Vietnamese and English and is interested in outdoor activities and exploring new things.
Thursday, 1 August 2024
Ready to Step into the Metaverse? AR & VR Explained
- Display Technology – To enhance realism, headsets are implementing higher display resolutions, faster refresh rates, and wider fields of view. New types of advanced displays like micro-LEDs will push visual fidelity even further (Sprigg, 2023).
- Tracking Systems – More precise and responsive sensors, computer vision technology and deep learning algorithms will continue to refine a headset’s ability to track the position and movement of a user’s head, hands, and body (Mechatech Embrace Technology, n.d.).
- Expanded Applications – Engineers are finding new ways to integrate AR and VR across more fields like healthcare, design, training, and manufacturing. The possibilities for transformational use cases are endless.
Khoa Tran is an electrical engineer working at the Los Angeles Department of Water and Power and is currently pursuing his master's in electrical Power from the University of Southern California. He is fluent in both Vietnamese and English and is interested in outdoor activities and exploring new things.