-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenel343.html
87 lines (79 loc) · 4.61 KB
/
enel343.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dennis Lieu Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css"
integrity="sha256-46qynGAkLSFpVbEBog43gvNhfrOj+BmwXdxFgVK/Kvc=" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,900|Source+Sans+Pro:300,900&display=swap:>">
<script src="https://kit.fontawesome.com/76b978fde2.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="header">
<a href="index.html"><img class="logo" src="images/dennis-logo.png" alt="Logo"></img></a>
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="index.html#home" class="nav__link">Home</a></li>
<li class="nav__item"><a href="index.html#about" class="nav__link">About Me</a></li>
<li class="nav__item"><a href="index.html#skills-attributes" class="nav__link">Skills & Attributes</a>
</li>
<li class="nav__item"><a href="index.html#courses" class="nav__link">Coursework</a></li>
<li class="nav__item"><a href="index.html#projects" class="nav__link">Projects</a></li>
<li class="nav__item"><a href="index.html#involvement" class="nav__link">Involvement</a></li>
</ul>
</nav>
</header>
<section class="courses__intro">
<h1 class="section__title section__title--intro">
<strong>ENEL 343</strong>
</h1>
<p class="section__subtitle section__subtitle--intro courses__subtitle">Circuits II</p>
<img class="courses__thumb" src="images/enel343-cover.jpg" alt=" ENEL 343 cover image">
</section>
<div class="courses-item-individual">
<div>
<h3>What is ENEL 343?</h3>
<p>In this class, I learned how to analyze more complex circuits with various techniques such as <b>Laplace
analysis</b> and <b>two port network analysis</b>. I gained a better understanding of how we can
string together individual circuit components such as resistors, capacitors, and inductors to <b>build
applicable circuits</b>.</p>
<p>One big thing that I took from the class and that I found a bit surprising was that the circuit analysis
itself wasn't too different from the basics we learned previously; we simply learned a few new
techniques, but continued to use KVL, KCL, and the node voltage method as we had before.</p>
<h3>Applications</h3>
<p>The labs were another great aspect of the course. They taught me a lot about circuits that are in lots of
our devices such as <b>op-amps, amplifiers, and analog filters</b>. These very same circuits,
particularly filters, would return in other classes I had such as ENEL 327, our signals class.</p>
<p>My group chose to do a final project on filters for ENEL 327, so learning about the types of analog
filters such as high pass, low pass, band pass, and bandstop filters, as well as how they can be
designed, helped us get a better understanding of our project.</p>
</div>
<p class="courses-item__caption">A schematic from a 343 lab.</p>
<img class="courses-item__img" src="images/enel343-schematic.PNG" alt="Picture of hand drawn schematic">
</div>
<!-- Footer -->
<footer class="footer">
<a href="mailto:[email protected]" class="footer__link">[email protected]</a>
<ul class="social-list">
<li class="social-list__item">
<a class="social-list__link" href="https://github.com/Dennull">
<i class="fab fa-github"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://www.linkedin.com/in/dennis-lieu-a055781a0/">
<i class="fab fa-linkedin"></i>
</a>
</li>
</ul>
</footer>
<script src="js/index.js"></script>
</body>
</html>