-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First draft of section "Intro" and "First Steps" finished
- Loading branch information
Showing
11 changed files
with
229 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
```{python} | ||
#| label: fig-mosfet-small-signal-model | ||
#| echo: false | ||
#| fig-cap: "The MOSFET small-signal model." | ||
import schemdraw as sd | ||
import schemdraw.elements as elm | ||
with sd.Drawing(canvas='svg') as d: | ||
d.config(unit=2) | ||
d.config(fontsize=16) | ||
d.push() | ||
elm.Line().left().length(1).dot(open=True).label('G', 'left').idot() | ||
d.pop() | ||
d.push() | ||
Cgs = elm.Capacitor().down().label(r'$C_\mathrm{gg}$') | ||
elm.Line().right().length(3).dot() | ||
l1 = elm.Line().down().length(1).dot(open=True).label('S', 'left') | ||
d.pop() | ||
Cgd = elm.Capacitor().right().length(3).label(r'$C_\mathrm{gd}$').dot() | ||
d.push() | ||
Ids1 = elm.SourceI().down().label(r'$g_\mathrm{m} \cdot v_\mathrm{gs}$') | ||
elm.Line().right().length(3).dot() | ||
d.push() | ||
Ids2 = elm.SourceI().up().label(r'$g_\mathrm{mb} \cdot v_\mathrm{sb}$').dot() | ||
d.pop() | ||
elm.Line().right().length(3).dot() | ||
d.push() | ||
Rds = elm.Resistor().up().dot().label(r'$g_\mathrm{ds}$') | ||
d.pop() | ||
elm.Line().right().length(3) | ||
In = elm.SourceSin().up().label(r'$\overline{I_\mathrm{n}^2}$').dot() | ||
d.pop() | ||
elm.Line().right().dot(open=True).length(12).label('D', 'right') | ||
d.move(dy=-2, dx=0) | ||
elm.Line().down().toy(l1.end).dot(open=True).label('B', 'left') | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
```{python} | ||
#| label: fig-nmos-symbol | ||
#| echo: false | ||
#| fig-cap: "Circuit symbol of n-channel MOSFET." | ||
import schemdraw as sd | ||
import schemdraw.elements as elm | ||
with sd.Drawing(canvas='svg') as d: | ||
d.config(unit=2) | ||
d.config(fontsize=16) | ||
M1 = elm.AnalogNFet(bulk=True,offset_gate=False).drop('source').theta(0).reverse() | ||
elm.Line().up().at(M1.drain).length(0.5).dot(open=True).label('D', 'right') | ||
elm.Line().down().at(M1.source).length(0.5).dot(open=True).label('S', 'left') | ||
elm.Line().left().at(M1.gate).length(0.5).dot(open=True).label('G', 'left') | ||
elm.Line().right().at(M1.bulk).length(0.5).dot(open=True).label('B', 'right') | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
```{python} | ||
#| label: fig-pmos-symbol | ||
#| echo: false | ||
#| fig-cap: "Circuit symbol of p-channel MOSFET." | ||
import schemdraw as sd | ||
import schemdraw.elements as elm | ||
with sd.Drawing(canvas='svg') as d: | ||
d.config(unit=2) | ||
d.config(fontsize=16) | ||
M1 = elm.AnalogPFet(bulk=True,offset_gate=False).drop('source').theta(0).reverse() | ||
elm.Line().down().at(M1.drain).length(0.5).dot(open=True).label('D', 'left') | ||
elm.Line().up().at(M1.source).length(0.5).dot(open=True).label('S', 'right') | ||
elm.Line().left().at(M1.gate).length(0.5).dot(open=True).label('G', 'left') | ||
elm.Line().right().at(M1.bulk).length(0.5).dot(open=True).label('B', 'right') | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,13 @@ author: | |
city: Linz | ||
state: Austria | ||
url: www.jku.at | ||
- name: Michael Koefinger | ||
email: [email protected] | ||
affiliations: | ||
- name: Johannes Kepler University | ||
city: Linz | ||
state: Austria | ||
url: www.jku.at | ||
date: last-modified | ||
bibliography: references.bib | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,40 @@ | ||
%% This BibTeX bibliography file was created using BibDesk. | ||
%% https://bibdesk.sourceforge.io/ | ||
%% http://bibdesk.sourceforge.net/ | ||
%% Created for Harald Pretl at 2024-07-27 18:08:11 +0200 | ||
%% Created for Harald Pretl at 2024-08-02 12:05:58 +0200 | ||
%% Saved with string encoding Unicode (UTF-8) | ||
@phdthesis{Nagel_1975, | ||
author = {Nagel, Laurence W.}, | ||
month = {May}, | ||
number = {UCB/ERL M520}, | ||
school = {EECS Department, University of California, Berkeley}, | ||
title = {SPICE2: A Computer Program to Simulate Semiconductor Circuits}, | ||
url = {http://www2.eecs.berkeley.edu/Pubs/TechRpts/1975/9602.html}, | ||
year = {1975}, | ||
bdsk-url-1 = {http://www2.eecs.berkeley.edu/Pubs/TechRpts/1975/9602.html}} | ||
|
||
@book{Jespers_Murmann_2017, | ||
author = {Jespers, Paul G. A. and Murmann, Boris}, | ||
place = {Cambridge}, | ||
publisher = {Cambridge University Press}, | ||
title = {Systematic Design of Analog CMOS Circuits: Using Pre-Computed Lookup Tables}, | ||
year = {2017}} | ||
|
||
@book{Chenming_Hu_2010, | ||
author = {Hu, Chenming}, | ||
place = {Upper Saddle River}, | ||
publisher = {Pearson}, | ||
title = {Modern Semiconductor Devices for Integrated Circuits}, | ||
year = {2010}} | ||
|
||
@book{Tsividis_McAndrew_2011, | ||
author = {Tsividis, Yannis and McAndrew, Colin}, | ||
place = {New York}, | ||
publisher = {Oxford University Press}, | ||
title = {Operation and Modeling of the MOS Transistor}, | ||
year = {2011}} |