Major progress on VLSI lab 1&2 and ECOMMS lab 1
@ -133,7 +133,7 @@ def calculate_pesqs(all_signals, all_noises, sample_rate, snrs):
|
|||||||
noisy_signal = add_noise(signal_data, noise_data, snr)
|
noisy_signal = add_noise(signal_data, noise_data, snr)
|
||||||
filtered_signal = enhanced(noisy_signal, sample_rate)
|
filtered_signal = enhanced(noisy_signal, sample_rate)
|
||||||
#wavfile.write(f"noisy/sp{j+1:02}_{noises[i]}_snr{snr}.wav", sample_rate, )
|
#wavfile.write(f"noisy/sp{j+1:02}_{noises[i]}_snr{snr}.wav", sample_rate, )
|
||||||
#sd.play(normalize_signal(signal_data), samplerate=sample_rate, blocking=True)
|
sd.play(normalize_signal(signal_data), samplerate=sample_rate, blocking=True)
|
||||||
#sd.play(normalize_signal(noisy_signal), samplerate=sample_rate, blocking=True)
|
#sd.play(normalize_signal(noisy_signal), samplerate=sample_rate, blocking=True)
|
||||||
#sd.play(normalize_signal(filtered_signal), samplerate=sample_rate, blocking=True)
|
#sd.play(normalize_signal(filtered_signal), samplerate=sample_rate, blocking=True)
|
||||||
|
|
||||||
@ -151,7 +151,9 @@ def main():
|
|||||||
snrs = (0, 10, 20, 30)
|
snrs = (0, 10, 20, 30)
|
||||||
|
|
||||||
# Load all signals and all noises
|
# Load all signals and all noises
|
||||||
|
print("loading signals")
|
||||||
signal_sample_rate, all_signals = load_all_signals()
|
signal_sample_rate, all_signals = load_all_signals()
|
||||||
|
print("loading noise")
|
||||||
noise_sample_rate, all_noises = load_all_noises()
|
noise_sample_rate, all_noises = load_all_noises()
|
||||||
|
|
||||||
assert signal_sample_rate == noise_sample_rate, "Signal and noise sampling rates didn't match."
|
assert signal_sample_rate == noise_sample_rate, "Signal and noise sampling rates didn't match."
|
||||||
|
BIN
7th-Semester-Fall-2024/ECOMMS/labs/lab1/part-3-am-freq.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
7th-Semester-Fall-2024/ECOMMS/labs/lab1/part-3-am-time.png
Normal file
After Width: | Height: | Size: 84 KiB |
BIN
7th-Semester-Fall-2024/ECOMMS/labs/lab1/part-3-fm-freq.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
7th-Semester-Fall-2024/ECOMMS/labs/lab1/part-3-fm-time.png
Normal file
After Width: | Height: | Size: 108 KiB |
@ -1,11 +1,74 @@
|
|||||||
import numpy as np
|
import numpy as np
|
||||||
import matplotlib.pyplot as plt
|
import matplotlib.pyplot as plt
|
||||||
|
import matplotlib as mpl
|
||||||
|
from cycler import cycler
|
||||||
import scipy as sp
|
import scipy as sp
|
||||||
|
|
||||||
f_m = 5E3
|
|
||||||
f_c = 25E3
|
|
||||||
|
|
||||||
f_s = 50*f_c
|
def add_noise(s, SNR):
|
||||||
|
var_s = np.cov(s)
|
||||||
|
var_noise = var_s/(10**(SNR/10))
|
||||||
|
noise = var_noise**0.5 * np.random.randn(len(s))
|
||||||
|
return s + noise
|
||||||
|
|
||||||
|
def plot_at_snrs(t, f, s_am, s_fm):
|
||||||
|
stem_colors = ['k', 'b', 'r']
|
||||||
|
ci = 0
|
||||||
|
stem_color = stem_colors[ci]
|
||||||
|
|
||||||
|
am_time = plt.figure()
|
||||||
|
am_freq = plt.figure()
|
||||||
|
fm_time = plt.figure()
|
||||||
|
fm_freq = plt.figure()
|
||||||
|
|
||||||
|
for SNR in range(10,30,10):
|
||||||
|
m_am = add_noise(s_am,SNR)
|
||||||
|
m_fm = add_noise(s_fm,SNR)
|
||||||
|
|
||||||
|
plt.figure(am_time)
|
||||||
|
plt.plot(t, m_am, label=f"SNR = {SNR}")
|
||||||
|
|
||||||
|
plt.figure(am_freq)
|
||||||
|
plt.stem(f, abs(sp.fft.fft(m_am)), label=f"SNR = {SNR}", markerfmt=stem_color+"o", linefmt=stem_color+"-")
|
||||||
|
|
||||||
|
plt.figure(fm_time)
|
||||||
|
plt.plot(t, m_fm, label=f"SNR = {SNR}")
|
||||||
|
|
||||||
|
plt.figure(fm_freq)
|
||||||
|
plt.stem(f, abs(sp.fft.fft(m_fm)), label=f"SNR = {SNR}", markerfmt=stem_color+"o", linefmt=stem_color+"-")
|
||||||
|
|
||||||
|
ci += 1
|
||||||
|
stem_color = stem_colors[ci]
|
||||||
|
|
||||||
|
plt.figure(am_time)
|
||||||
|
plt.plot(t, s_am, label="Pure signal")
|
||||||
|
plt.legend(loc="upper right")
|
||||||
|
plt.savefig("part-3-am-time")
|
||||||
|
|
||||||
|
plt.figure(am_freq)
|
||||||
|
plt.stem(f, abs(sp.fft.fft(s_am)), label="Pure signal", markerfmt=stem_color+"o", linefmt=stem_color+"-")
|
||||||
|
plt.xlim((0, 2E5))
|
||||||
|
plt.legend(loc="upper right")
|
||||||
|
plt.savefig("part-3-am-freq")
|
||||||
|
|
||||||
|
plt.figure(fm_time)
|
||||||
|
plt.plot(t, s_fm, label="Pure signal")
|
||||||
|
plt.legend(loc="upper right")
|
||||||
|
plt.savefig("part-3-fm-time")
|
||||||
|
|
||||||
|
plt.figure(fm_freq)
|
||||||
|
plt.stem(f, abs(sp.fft.fft(s_fm)), label="Pure signal", markerfmt=stem_color+"o", linefmt=stem_color+"-")
|
||||||
|
plt.xlim((0, 2E5))
|
||||||
|
plt.legend(loc="upper right")
|
||||||
|
plt.savefig("part-3-fm-freq")
|
||||||
|
|
||||||
|
plt.show()
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
f_m = 5E3
|
||||||
|
f_c = 125E3
|
||||||
|
f_s = 125E4
|
||||||
|
|
||||||
T_m = 1/f_m
|
T_m = 1/f_m
|
||||||
T_c = 1/f_c
|
T_c = 1/f_c
|
||||||
@ -14,41 +77,17 @@ T_s = 1/f_s
|
|||||||
A_c = 10
|
A_c = 10
|
||||||
A_m = 1
|
A_m = 1
|
||||||
|
|
||||||
t = np.arange(0,2*T_m,T_s)
|
t = np.arange(0,2*T_m,T_s) # Time domain
|
||||||
f = t*f_s/(2*T_m)
|
f = t*f_s/(2*T_m) # Frequency domain
|
||||||
|
|
||||||
# ===== AM =====
|
beta_f = 10 # Modulation index
|
||||||
s = A_c * (1 + A_m*np.cos(2*np.pi*f_m*t)) * np.cos(2*np.pi*f_c*t)
|
|
||||||
|
|
||||||
var_s = np.cov(s)
|
s_am = A_c * (1 + A_m*np.cos(2*np.pi*f_m*t)) * np.cos(2*np.pi*f_c*t)
|
||||||
|
s_fm = A_c*np.cos(2*np.pi*f_c*t + beta_f*A_m*np.sin(2*np.pi*f_m*t))
|
||||||
|
plot_at_snrs(t, f, s_am, s_fm)
|
||||||
|
|
||||||
SNR = 10
|
|
||||||
var_snr = var_s/(10**(SNR/10))
|
|
||||||
noise_snr = (var_snr**0.5) * np.random.randn(len(s))
|
|
||||||
m = s+noise_snr
|
|
||||||
|
|
||||||
S = sp.fft.fft(s)
|
|
||||||
M = sp.fft.fft(m)
|
|
||||||
|
|
||||||
plt.subplot(211)
|
if __name__ == "__main__":
|
||||||
plt.stem(f, S)
|
mpl.rcParams['axes.prop_cycle'] = cycler(color=['k', 'b', 'r'])
|
||||||
plt.subplot(212)
|
main()
|
||||||
plt.stem(f, M)
|
|
||||||
plt.show()
|
|
||||||
|
|
||||||
# ===== FM =====
|
|
||||||
beta_f = 10
|
|
||||||
s = A_c*np.cos(2*np.pi*f_c*t + beta_f*A_m*np.sin(2*np.pi*f_m*t))
|
|
||||||
|
|
||||||
var_snr = var_s/(10**(SNR/10))
|
|
||||||
noise_snr = (var_snr**0.5) * np.random.randn(len(s))
|
|
||||||
m = s+noise_snr
|
|
||||||
|
|
||||||
S = sp.fft.fft(s)
|
|
||||||
M = sp.fft.fft(m)
|
|
||||||
|
|
||||||
plt.subplot(211)
|
|
||||||
plt.stem(f, S)
|
|
||||||
plt.subplot(212)
|
|
||||||
plt.stem(f, M)
|
|
||||||
plt.show()
|
|
||||||
|
1
7th-Semester-Fall-2024/ECOMMS/labs/lab1/part4.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
@ -14,19 +14,19 @@ L = 0.6
|
|||||||
|
|
||||||
beta = mu * C_ox * W/L
|
beta = mu * C_ox * W/L
|
||||||
|
|
||||||
V_g_range = np.arange(6)
|
V_g_range = np.arange(-5,1)
|
||||||
V_t = 0.7
|
V_t = 0.7
|
||||||
V_dd = np.linspace(0, 5, 50)
|
V_dd = np.linspace(-5,0, 50)
|
||||||
|
|
||||||
def I_ds(V_gs, V_ds, V_t, beta):
|
def I_ds(V_gs, V_ds, V_t, beta):
|
||||||
if V_gs < V_t:
|
if V_gs > V_t:
|
||||||
return np.zeros_like(V_ds)
|
return np.zeros_like(V_ds)
|
||||||
|
|
||||||
V_dsat = V_gs - V_t
|
V_dsat = V_gs - V_t
|
||||||
|
|
||||||
return np.where(V_ds < V_dsat,
|
return np.where(V_ds > V_dsat,
|
||||||
beta * (V_gs - V_t - V_ds/2) * V_ds,
|
-beta * (V_gs - V_t - V_ds/2) * V_ds,
|
||||||
beta * (V_gs - V_t)**2 / 2)
|
-beta * (V_gs - V_t)**2 / 2)
|
||||||
|
|
||||||
for V_s in (0, 2):
|
for V_s in (0, 2):
|
||||||
for V_g in V_g_range:
|
for V_g in V_g_range:
|
||||||
|
After Width: | Height: | Size: 97 KiB |
BIN
7th-Semester-Fall-2024/VLSI/labs/lab-1-2/graphics/pmos-iv-2.png
Normal file
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 60 KiB |
@ -13,7 +13,15 @@
|
|||||||
\gdef\HyperFirstAtBeginDocument#1{#1}
|
\gdef\HyperFirstAtBeginDocument#1{#1}
|
||||||
\providecommand\HyField@AuxAddToFields[1]{}
|
\providecommand\HyField@AuxAddToFields[1]{}
|
||||||
\providecommand\HyField@AuxAddToCoFields[2]{}
|
\providecommand\HyField@AuxAddToCoFields[2]{}
|
||||||
\citation{VLSI_System_Design}
|
\abx@aux@refcontext{nty/global//global/global}
|
||||||
|
\abx@aux@cite{0}{VddNaming}
|
||||||
|
\abx@aux@segm{0}{0}{VddNaming}
|
||||||
|
\abx@aux@cite{0}{VLSICircuitsSystems}
|
||||||
|
\abx@aux@segm{0}{0}{VLSICircuitsSystems}
|
||||||
|
\abx@aux@cite{0}{VLSISystemDesign}
|
||||||
|
\abx@aux@segm{0}{0}{VLSISystemDesign}
|
||||||
|
\abx@aux@cite{0}{VLSISystemDesign}
|
||||||
|
\abx@aux@segm{0}{0}{VLSISystemDesign}
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {I}Introduction}{2}{section.1}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {I}Introduction}{2}{section.1}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {II}NMOS Characteristics}{2}{section.2}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {II}NMOS Characteristics}{2}{section.2}\protected@file@percent }
|
||||||
\newlabel{eqn:nmos-shockley-first-order}{{1}{2}{NMOS Characteristics}{equation.2.1}{}}
|
\newlabel{eqn:nmos-shockley-first-order}{{1}{2}{NMOS Characteristics}{equation.2.1}{}}
|
||||||
@ -21,10 +29,30 @@
|
|||||||
\newlabel{fig:nmos-shockley-first-order}{{1}{2}{Plot of Shockley first order model for an n-channel MOSFET}{figure.1}{}}
|
\newlabel{fig:nmos-shockley-first-order}{{1}{2}{Plot of Shockley first order model for an n-channel MOSFET}{figure.1}{}}
|
||||||
\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces NMOS parametric test schematic}}{2}{figure.2}\protected@file@percent }
|
\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces NMOS parametric test schematic}}{2}{figure.2}\protected@file@percent }
|
||||||
\newlabel{fig:nmos-iv-schematic}{{2}{2}{NMOS parametric test schematic}{figure.2}{}}
|
\newlabel{fig:nmos-iv-schematic}{{2}{2}{NMOS parametric test schematic}{figure.2}{}}
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {III}The Noise Margin}{2}{section.3}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {III}PMOS Characteristics}{2}{section.3}\protected@file@percent }
|
||||||
\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces The VTC and its derivative for a CMOS inverter with $w_p=240$[nm] and $w_n=120$[nm]}}{3}{figure.3}\protected@file@percent }
|
\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Simulated relationship between input voltage and NMOS current}}{3}{figure.3}\protected@file@percent }
|
||||||
\newlabel{fig:inv_vtc}{{3}{3}{The VTC and its derivative for a CMOS inverter with $w_p=240$[nm] and $w_n=120$[nm]}{figure.3}{}}
|
\newlabel{fig:nmos-simulation-results}{{3}{3}{Simulated relationship between input voltage and NMOS current}{figure.3}{}}
|
||||||
\@writefile{lot}{\contentsline {table}{\numberline {I}{\ignorespaces Important VTC voltages}}{3}{table.1}\protected@file@percent }
|
\newlabel{eqn:pmos-shockley-first-order}{{2}{3}{PMOS Characteristics}{equation.3.2}{}}
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {IV}Discussion}{3}{section.4}\protected@file@percent }
|
\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Plot of Shockley first order model for a p-channel MOSFET}}{3}{figure.4}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {V}Conclusion}{3}{section.5}\protected@file@percent }
|
\newlabel{fig:pmos-shockley}{{4}{3}{Plot of Shockley first order model for a p-channel MOSFET}{figure.4}{}}
|
||||||
\gdef \@abspage@last{2}
|
\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces PMOS parametric test schematic}}{3}{figure.5}\protected@file@percent }
|
||||||
|
\newlabel{fig:pmos-iv-schematic}{{5}{3}{PMOS parametric test schematic}{figure.5}{}}
|
||||||
|
\@writefile{toc}{\contentsline {section}{\numberline {IV}The Noise Margin}{3}{section.4}\protected@file@percent }
|
||||||
|
\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces Simulated relationship between input voltages and PMOS current}}{4}{figure.6}\protected@file@percent }
|
||||||
|
\newlabel{fig:pmos-iv-simulation}{{6}{4}{Simulated relationship between input voltages and PMOS current}{figure.6}{}}
|
||||||
|
\@writefile{lof}{\contentsline {figure}{\numberline {7}{\ignorespaces The VTC and its derivative for a CMOS inverter with $w_p=240$[nm] and $w_n=120$[nm]}}{4}{figure.7}\protected@file@percent }
|
||||||
|
\newlabel{fig:inv_vtc}{{7}{4}{The VTC and its derivative for a CMOS inverter with $w_p=240$[nm] and $w_n=120$[nm]}{figure.7}{}}
|
||||||
|
\@writefile{lot}{\contentsline {table}{\numberline {I}{\ignorespaces Important VTC voltages}}{4}{table.1}\protected@file@percent }
|
||||||
|
\newlabel{tbl:vtc-voltages}{{I}{4}{Important VTC voltages}{table.1}{}}
|
||||||
|
\@writefile{lof}{\contentsline {figure}{\numberline {8}{\ignorespaces Inverter VTC for different widths of the PMOS}}{4}{figure.8}\protected@file@percent }
|
||||||
|
\newlabel{fig:inv-parametric-vtc}{{8}{4}{Inverter VTC for different widths of the PMOS}{figure.8}{}}
|
||||||
|
\@writefile{lof}{\contentsline {figure}{\numberline {9}{\ignorespaces $V_{OH}$ (green), $V_{IH}$ (yellow), $V_{OL}$ (cyan), and $V_{IL}$ (red) as a function of $w_p$.}}{4}{figure.9}\protected@file@percent }
|
||||||
|
\newlabel{fig:inv-parametric-nm-voltages}{{9}{4}{$V_{OH}$ (green), $V_{IH}$ (yellow), $V_{OL}$ (cyan), and $V_{IL}$ (red) as a function of $w_p$}{figure.9}{}}
|
||||||
|
\@writefile{lof}{\contentsline {figure}{\numberline {10}{\ignorespaces Resulting $\text {NM}_\text {L}$ (yellow) and $\text {NM}_\text {H}$ (red).}}{4}{figure.10}\protected@file@percent }
|
||||||
|
\newlabel{fig:inv-parametric-nm}{{10}{4}{Resulting $\text {NM}_\text {L}$ (yellow) and $\text {NM}_\text {H}$ (red)}{figure.10}{}}
|
||||||
|
\@writefile{toc}{\contentsline {section}{\numberline {V}Conclusion}{4}{section.5}\protected@file@percent }
|
||||||
|
\abx@aux@read@bbl@mdfivesum{F1E2E93D690B71984D244F8474E03772}
|
||||||
|
\abx@aux@defaultrefcontext{0}{VddNaming}{nty/global//global/global}
|
||||||
|
\abx@aux@defaultrefcontext{0}{VLSICircuitsSystems}{nty/global//global/global}
|
||||||
|
\abx@aux@defaultrefcontext{0}{VLSISystemDesign}{nty/global//global/global}
|
||||||
|
\gdef \@abspage@last{4}
|
||||||
|
89
7th-Semester-Fall-2024/VLSI/labs/lab-1-2/lab-1-2.bbl
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
% $ biblatex auxiliary file $
|
||||||
|
% $ biblatex bbl format version 3.2 $
|
||||||
|
% Do not modify the above lines!
|
||||||
|
%
|
||||||
|
% This is an auxiliary file used by the 'biblatex' package.
|
||||||
|
% This file may safely be deleted. It will be recreated by
|
||||||
|
% biber as required.
|
||||||
|
%
|
||||||
|
\begingroup
|
||||||
|
\makeatletter
|
||||||
|
\@ifundefined{ver@biblatex.sty}
|
||||||
|
{\@latex@error
|
||||||
|
{Missing 'biblatex' package}
|
||||||
|
{The bibliography requires the 'biblatex' package.}
|
||||||
|
\aftergroup\endinput}
|
||||||
|
{}
|
||||||
|
\endgroup
|
||||||
|
|
||||||
|
|
||||||
|
\refsection{0}
|
||||||
|
\datalist[entry]{nty/global//global/global}
|
||||||
|
\entry{VddNaming}{online}{}
|
||||||
|
\name{author}{1}{}{%
|
||||||
|
{{hash=c79d5231b092430b3f8b61ce3f9f9f2b}{%
|
||||||
|
family={Lathrop},
|
||||||
|
familyi={L\bibinitperiod},
|
||||||
|
given={Olin},
|
||||||
|
giveni={O\bibinitperiod}}}%
|
||||||
|
}
|
||||||
|
\strng{namehash}{c79d5231b092430b3f8b61ce3f9f9f2b}
|
||||||
|
\strng{fullhash}{c79d5231b092430b3f8b61ce3f9f9f2b}
|
||||||
|
\strng{bibnamehash}{c79d5231b092430b3f8b61ce3f9f9f2b}
|
||||||
|
\strng{authorbibnamehash}{c79d5231b092430b3f8b61ce3f9f9f2b}
|
||||||
|
\strng{authornamehash}{c79d5231b092430b3f8b61ce3f9f9f2b}
|
||||||
|
\strng{authorfullhash}{c79d5231b092430b3f8b61ce3f9f9f2b}
|
||||||
|
\field{sortinit}{L}
|
||||||
|
\field{sortinithash}{7c47d417cecb1f4bd38d1825c427a61a}
|
||||||
|
\field{labelnamesource}{author}
|
||||||
|
\field{labeltitlesource}{title}
|
||||||
|
\field{title}{What is the difference between VCC, VDD, VEE, VSS}
|
||||||
|
\field{year}{2011}
|
||||||
|
\verb{urlraw}
|
||||||
|
\verb https://electronics.stackexchange.com/questions/17382/what-is-the-difference-between-v-cc-v-dd-v-ee-v-ss
|
||||||
|
\endverb
|
||||||
|
\verb{url}
|
||||||
|
\verb https://electronics.stackexchange.com/questions/17382/what-is-the-difference-between-v-cc-v-dd-v-ee-v-ss
|
||||||
|
\endverb
|
||||||
|
\endentry
|
||||||
|
\entry{VLSICircuitsSystems}{book}{}
|
||||||
|
\name{author}{1}{}{%
|
||||||
|
{{hash=7bdab0d2054f0c60f1ba24c3bdf19a4f}{%
|
||||||
|
family={Neil\bibnamedelimb H.\bibnamedelimi E.\bibnamedelimi Weste},
|
||||||
|
familyi={N\bibinitperiod\bibinitdelim H\bibinitperiod\bibinitdelim E\bibinitperiod\bibinitdelim W\bibinitperiod},
|
||||||
|
given={David\bibnamedelimb Money\bibnamedelima Harris},
|
||||||
|
giveni={D\bibinitperiod\bibinitdelim M\bibinitperiod\bibinitdelim H\bibinitperiod}}}%
|
||||||
|
}
|
||||||
|
\list{publisher}{1}{%
|
||||||
|
{Pearson}%
|
||||||
|
}
|
||||||
|
\strng{namehash}{7bdab0d2054f0c60f1ba24c3bdf19a4f}
|
||||||
|
\strng{fullhash}{7bdab0d2054f0c60f1ba24c3bdf19a4f}
|
||||||
|
\strng{bibnamehash}{7bdab0d2054f0c60f1ba24c3bdf19a4f}
|
||||||
|
\strng{authorbibnamehash}{7bdab0d2054f0c60f1ba24c3bdf19a4f}
|
||||||
|
\strng{authornamehash}{7bdab0d2054f0c60f1ba24c3bdf19a4f}
|
||||||
|
\strng{authorfullhash}{7bdab0d2054f0c60f1ba24c3bdf19a4f}
|
||||||
|
\field{sortinit}{N}
|
||||||
|
\field{sortinithash}{22369a73d5f88983a108b63f07f37084}
|
||||||
|
\field{labelnamesource}{author}
|
||||||
|
\field{labeltitlesource}{title}
|
||||||
|
\field{title}{CMOS VLSI Design a Circuits and Systems Perspective, Fourth Edition}
|
||||||
|
\field{year}{2011}
|
||||||
|
\endentry
|
||||||
|
\entry{VLSISystemDesign}{online}{}
|
||||||
|
\field{sortinit}{N}
|
||||||
|
\field{sortinithash}{22369a73d5f88983a108b63f07f37084}
|
||||||
|
\field{labeltitlesource}{title}
|
||||||
|
\field{title}{Noise Margin}
|
||||||
|
\field{year}{2017}
|
||||||
|
\verb{urlraw}
|
||||||
|
\verb https://www.vlsisystemdesign.com/noise-margin/
|
||||||
|
\endverb
|
||||||
|
\verb{url}
|
||||||
|
\verb https://www.vlsisystemdesign.com/noise-margin/
|
||||||
|
\endverb
|
||||||
|
\endentry
|
||||||
|
\enddatalist
|
||||||
|
\endrefsection
|
||||||
|
\endinput
|
||||||
|
|
@ -0,0 +1,38 @@
|
|||||||
|
% $ biblatex auxiliary file $
|
||||||
|
% $ biblatex bbl format version 3.2 $
|
||||||
|
% Do not modify the above lines!
|
||||||
|
%
|
||||||
|
% This is an auxiliary file used by the 'biblatex' package.
|
||||||
|
% This file may safely be deleted. It will be recreated by
|
||||||
|
% biber as required.
|
||||||
|
%
|
||||||
|
\begingroup
|
||||||
|
\makeatletter
|
||||||
|
\@ifundefined{ver@biblatex.sty}
|
||||||
|
{\@latex@error
|
||||||
|
{Missing 'biblatex' package}
|
||||||
|
{The bibliography requires the 'biblatex' package.}
|
||||||
|
\aftergroup\endinput}
|
||||||
|
{}
|
||||||
|
\endgroup
|
||||||
|
|
||||||
|
|
||||||
|
\refsection{0}
|
||||||
|
\datalist[entry]{nty/global//global/global}
|
||||||
|
\entry{VLSISystemDesign}{online}{}
|
||||||
|
\field{sortinit}{N}
|
||||||
|
\field{sortinithash}{22369a73d5f88983a108b63f07f37084}
|
||||||
|
\field{labeltitlesource}{title}
|
||||||
|
\field{title}{Noise Margin}
|
||||||
|
\field{year}{2017}
|
||||||
|
\verb{urlraw}
|
||||||
|
\verb https://www.vlsisystemdesign.com/noise-margin/
|
||||||
|
\endverb
|
||||||
|
\verb{url}
|
||||||
|
\verb https://www.vlsisystemdesign.com/noise-margin/
|
||||||
|
\endverb
|
||||||
|
\endentry
|
||||||
|
\enddatalist
|
||||||
|
\endrefsection
|
||||||
|
\endinput
|
||||||
|
|
2408
7th-Semester-Fall-2024/VLSI/labs/lab-1-2/lab-1-2.bcf
Normal file
2251
7th-Semester-Fall-2024/VLSI/labs/lab-1-2/lab-1-2.bcf-SAVE-ERROR
Normal file
15
7th-Semester-Fall-2024/VLSI/labs/lab-1-2/lab-1-2.blg
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
[0] Config.pm:307> INFO - This is Biber 2.19
|
||||||
|
[0] Config.pm:310> INFO - Logfile is 'lab-1-2.blg'
|
||||||
|
[117] biber:340> INFO - === Wed Nov 13, 2024, 11:58:45
|
||||||
|
[137] Biber.pm:419> INFO - Reading 'lab-1-2.bcf'
|
||||||
|
[225] Biber.pm:979> INFO - Found 3 citekeys in bib section 0
|
||||||
|
[241] Biber.pm:4419> INFO - Processing section 0
|
||||||
|
[255] Biber.pm:4610> INFO - Looking for bibtex file 'references.bib' for section 0
|
||||||
|
[256] bibtex.pm:1713> INFO - LaTeX decoding ...
|
||||||
|
[259] bibtex.pm:1519> INFO - Found BibTeX data source 'references.bib'
|
||||||
|
[314] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'normalization = NFD' with 'normalization = prenormalized'
|
||||||
|
[314] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'variable = shifted' with 'variable = non-ignorable'
|
||||||
|
[314] Biber.pm:4239> INFO - Sorting list 'nty/global//global/global' of type 'entry' with template 'nty' and locale 'en-US'
|
||||||
|
[314] Biber.pm:4245> INFO - No sort tailoring available for locale 'en-US'
|
||||||
|
[324] bbl.pm:660> INFO - Writing 'lab-1-2.bbl' with encoding 'UTF-8'
|
||||||
|
[325] bbl.pm:763> INFO - Output to lab-1-2.bbl
|
@ -1,5 +1,12 @@
|
|||||||
# Fdb version 4
|
# Fdb version 4
|
||||||
["pdflatex"] 1731453284.07385 "lab-1-2.tex" "lab-1-2.pdf" "lab-1-2" 1731453285.56259 0
|
["biber lab-1-2"] 1731517124.24373 "lab-1-2.bcf" "lab-1-2.bbl" "lab-1-2" 1731522051.68934 0
|
||||||
|
"lab-1-2.bcf" 1731522051.43047 107981 f29da5bcd9833ccaa4cc6be31fd38999 "pdflatex"
|
||||||
|
"references.bib" 1731470232.82083 558 df972a2d65f28e8a8ecebb4ee0b82d70 ""
|
||||||
|
(generated)
|
||||||
|
"lab-1-2.bbl"
|
||||||
|
"lab-1-2.blg"
|
||||||
|
(rewritten before read)
|
||||||
|
["pdflatex"] 1731522048.40538 "lab-1-2.tex" "lab-1-2.pdf" "lab-1-2" 1731522051.68977 0
|
||||||
"/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathex.enc" 1202520719 3486 c7eadf5dcc57b3b2d11736679f6636ba ""
|
"/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathex.enc" 1202520719 3486 c7eadf5dcc57b3b2d11736679f6636ba ""
|
||||||
"/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathit.enc" 1202520719 2405 5dcf2c1b967ee25cc46c58cd52244aed ""
|
"/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathit.enc" 1202520719 2405 5dcf2c1b967ee25cc46c58cd52244aed ""
|
||||||
"/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathsy.enc" 1202520719 2840 216e6e45ad352e2456e1149f28885bee ""
|
"/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathsy.enc" 1202520719 2840 216e6e45ad352e2456e1149f28885bee ""
|
||||||
@ -58,7 +65,9 @@
|
|||||||
"/usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr6.pfb" 1255129361 123394 d390152bb30feeb496aaaa93299ee9ba ""
|
"/usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr6.pfb" 1255129361 123394 d390152bb30feeb496aaaa93299ee9ba ""
|
||||||
"/usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr7.pfb" 1255129361 121145 68312a933e2c689ed40ec0aba373e279 ""
|
"/usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr7.pfb" 1255129361 121145 68312a933e2c689ed40ec0aba373e279 ""
|
||||||
"/usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr8.pfb" 1255129361 122174 a7a08406857c9530a0320a2517f60370 ""
|
"/usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr8.pfb" 1255129361 122174 a7a08406857c9530a0320a2517f60370 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmri10.pfb" 1255129361 112593 fda2373ba4420af33949610de4c28fe8 ""
|
||||||
"/usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmsy10.pfb" 1254269338 27863 09ce3735688ffde955e72da27c95b61a ""
|
"/usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmsy10.pfb" 1254269338 27863 09ce3735688ffde955e72da27c95b61a ""
|
||||||
|
"/usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmsy7.pfb" 1254269338 27941 d1f5d03f61a46c3fcc3a2ba904ddda52 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1714953600 71627 94eb9990bed73c364d7f53f960cc8c5b ""
|
"/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1714953600 71627 94eb9990bed73c364d7f53f960cc8c5b ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty" 1575674566 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 ""
|
"/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty" 1575674566 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty" 1576625341 40635 c40361e206be584d448876bba8a64a3b ""
|
"/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty" 1576625341 40635 c40361e206be584d448876bba8a64a3b ""
|
||||||
@ -205,6 +214,16 @@
|
|||||||
"/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty" 1714953600 2462 8ce5f9a9c63002f2c1af03c262cf29af ""
|
"/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty" 1714953600 2462 8ce5f9a9c63002f2c1af03c262cf29af ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty" 1714953600 5319 48d7f3cfa322abd2788e3c09d624b922 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty" 1714953600 5319 48d7f3cfa322abd2788e3c09d624b922 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty" 1714953600 2894 f2f8ee7d4fb94263f9f255fa22cab2d3 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty" 1714953600 2894 f2f8ee7d4fb94263f9f255fa22cab2d3 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx" 1609451401 1818 9ed166ac0a9204a8ebe450ca09db5dde ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx" 1609451401 25680 409c3f3d570418bc545e8065bebd0688 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg" 1342308459 69 249fa6df04d948e51b6d5c67bea30c42 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def" 1678141846 92527 8f6b3a677f74ea525477a813f33c4e65 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty" 1678141846 528517 7eed285c714f532e12ae48b360c080f8 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty" 1609451401 8433 72f8188742e7214b7068f345cd0287ac ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def" 1643926307 13919 5426dbe90e723f089052b4e908b56ef9 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def" 1643926307 32455 8d3e554836db11aab80a8e11be62e1b1 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx" 1678141846 4629 cda468e8a0b1cfa0f61872e171037a4b ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/english.lbx" 1643926307 39965 48ce9ce3350aba9457f1020b1deba5cf ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/circuitikz/circuitikz.sty" 1676150174 13737 560234075345a79d98d37322dfcecfa4 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/circuitikz/circuitikz.sty" 1676150174 13737 560234075345a79d98d37322dfcecfa4 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty" 1427500626 4105 4c80eaed8cd4f9a80cc6244c0adeb81f ""
|
"/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty" 1427500626 4105 4c80eaed8cd4f9a80cc6244c0adeb81f ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty" 1427500626 27587 b023ffe1328fa89e7f133201d87029de ""
|
"/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty" 1427500626 27587 b023ffe1328fa89e7f133201d87029de ""
|
||||||
@ -237,6 +256,8 @@
|
|||||||
"/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty" 1655478651 22555 6d8e155cfef6d82c3d5c742fea7c992e ""
|
"/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty" 1655478651 22555 6d8e155cfef6d82c3d5c742fea7c992e ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty" 1665067230 13815 760b0c02f691ea230f5359c4e1de23a7 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty" 1665067230 13815 760b0c02f691ea230f5359c4e1de23a7 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def" 1673989714 30429 213676d4c7327a21d91ddaed900e7b81 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def" 1673989714 30429 213676d4c7327a21d91ddaed900e7b81 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty" 1677186603 6107 5cfea8a675c58918b8c04be10261e48c ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty" 1675461949 6812 3c152a1c8d562d7b7291c4839b61a5c3 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af ""
|
"/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty" 1575499565 5766 13a9e8766c47f30327caf893ece86ac8 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty" 1575499565 5766 13a9e8766c47f30327caf893ece86ac8 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/lm/lmodern.sty" 1616454256 1608 b00724785a9e9c599e5181bb8729160b ""
|
"/usr/share/texlive/texmf-dist/tex/latex/lm/lmodern.sty" 1616454256 1608 b00724785a9e9c599e5181bb8729160b ""
|
||||||
@ -244,6 +265,8 @@
|
|||||||
"/usr/share/texlive/texmf-dist/tex/latex/lm/omslmsy.fd" 1616454256 807 3de192f3efa968913bd2f096a7b430d8 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/lm/omslmsy.fd" 1616454256 807 3de192f3efa968913bd2f096a7b430d8 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/lm/omxlmex.fd" 1616454256 568 a5494d810f2680caf10205cd1226c76c ""
|
"/usr/share/texlive/texmf-dist/tex/latex/lm/omxlmex.fd" 1616454256 568 a5494d810f2680caf10205cd1226c76c ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/lm/ot1lmr.fd" 1616454256 1882 28c08db1407ebff35a658fd141753d16 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/lm/ot1lmr.fd" 1616454256 1882 28c08db1407ebff35a658fd141753d16 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def" 1284153563 1620 fb1c32b818f2058eca187e5c41dfae77 ""
|
||||||
|
"/usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty" 1284153563 6187 b27afc771af565d3a9ff1ca7d16d0d46 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty" 1601326656 1090 bae35ef70b3168089ef166db3e66f5b2 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty" 1601326656 1090 bae35ef70b3168089ef166db3e66f5b2 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty" 1673816307 373 00b204b1d7d095b892ad31a7494b0373 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty" 1673816307 373 00b204b1d7d095b892ad31a7494b0373 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1601326656 21013 f4ff83d25bb56552493b030f27c075ae ""
|
"/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1601326656 21013 f4ff83d25bb56552493b030f27c075ae ""
|
||||||
@ -271,18 +294,29 @@
|
|||||||
"/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty" 1655066402 56148 51a9a8571c07b9921892ae11063ae853 ""
|
"/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty" 1655066402 56148 51a9a8571c07b9921892ae11063ae853 ""
|
||||||
"/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty" 1655411236 4937 4ce600ce9bd4ec84d0250eb6892fcf4f ""
|
"/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty" 1655411236 4937 4ce600ce9bd4ec84d0250eb6892fcf4f ""
|
||||||
"/usr/share/texlive/texmf-dist/web2c/texmf.cnf" 1714953600 40900 887e0dc8cac988a9e9c574af364cf837 ""
|
"/usr/share/texlive/texmf-dist/web2c/texmf.cnf" 1714953600 40900 887e0dc8cac988a9e9c574af364cf837 ""
|
||||||
"/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1727238294.95749 4602002 62dba5fc29055c16380d7393a2adb07a ""
|
"/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1727129911.05106 4547809 72a019b3ea2e5a9ca986a536dc67eb1c ""
|
||||||
"/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1727237932 7753326 2855e8a4742bf2aa4ecee35b05e8cc40 ""
|
"/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1731458907 7753307 dd8d670ee6dc0c84274d90c784746549 ""
|
||||||
"border.tex" 1731268146.08911 415 4d4e267e57028b0f51f0b4d6482995e8 ""
|
"border.tex" 1731454165.88876 415 4d4e267e57028b0f51f0b4d6482995e8 ""
|
||||||
"graphics/inverter-noise-margin.png" 1731268146.09111 99181 ce35bcbbe5f742962a2f39d956a88619 ""
|
"graphics/inv-parametric-nm-1.png" 1731454165.89092 119079 3e9d7e832291c38e52440c4d010bdec1 ""
|
||||||
"graphics/nmos-iv-schematic.png" 1731445855.16965 8040 99ca7ea445dd062c76a4547604b7e8f1 ""
|
"graphics/inv-parametric-nm-3.png" 1731454165.89417 63472 930b2767f0e2983cbeabf6444864341e ""
|
||||||
"graphics/simulated-iv-curves.png" 1731452137.16739 49702 46c518429ae7144c793d3691d3363f0b ""
|
"graphics/inv-parametric-nm-4.png" 1731454165.89526 74625 d4ec0ed87be728548177ed08f90a9d1f ""
|
||||||
"lab-1-2.aux" 1731453285.38255 2197 c9a3f29bb79bdba75a3fb9d7e8495fc4 "pdflatex"
|
"graphics/inverter-noise-margin.png" 1731454165.89959 99181 ce35bcbbe5f742962a2f39d956a88619 ""
|
||||||
"lab-1-2.out" 1731453285.38355 564 2939374a116e95a2b7d2ec46518c2e5e "pdflatex"
|
"graphics/iv-curves.png" 1731454165.90392 114761 3b4fc60459e35295881e8eb6a30768dc ""
|
||||||
"lab-1-2.tex" 1731453282.13456 5934 78a59c7ba5ad54d255c31bc31d1325e0 ""
|
"graphics/nmos-iv-schematic.png" 1731454165.90392 8040 99ca7ea445dd062c76a4547604b7e8f1 ""
|
||||||
|
"graphics/pmos-iv-2.png" 1731515673.82944 111230 fae8f78daeff746d5592e9586c171733 ""
|
||||||
|
"graphics/pmos-iv-schematic.png" 1731454165.90501 6733 063eaf85bfa2e58c2db8ab28caf0717e ""
|
||||||
|
"graphics/pmos-shockley-model.png" 1731508337.06751 61548 a51c1d7d90d869da1f5a92efced4914d ""
|
||||||
|
"graphics/simulated-iv-curves.png" 1731454165.90717 49702 46c518429ae7144c793d3691d3363f0b ""
|
||||||
|
"lab-1-2.aux" 1731522051.42447 4982 738699c5c59160590c0353f6889f48d2 "pdflatex"
|
||||||
|
"lab-1-2.bbl" 1731517125.44384 3376 f1e2e93d690b71984d244f8474e03772 "biber lab-1-2"
|
||||||
|
"lab-1-2.out" 1731522051.42547 617 4a054492d2e8e2d18db33bf9e6514f87 "pdflatex"
|
||||||
|
"lab-1-2.run.xml" 1731522051.43147 2326 0d1ca45b47ff70914b015ab6bdd3a2a9 "pdflatex"
|
||||||
|
"lab-1-2.tex" 1731522046.67545 13988 eb401b540f1717defa32f50a4a3a9d31 ""
|
||||||
(generated)
|
(generated)
|
||||||
"lab-1-2.aux"
|
"lab-1-2.aux"
|
||||||
|
"lab-1-2.bcf"
|
||||||
"lab-1-2.log"
|
"lab-1-2.log"
|
||||||
"lab-1-2.out"
|
"lab-1-2.out"
|
||||||
"lab-1-2.pdf"
|
"lab-1-2.pdf"
|
||||||
|
"lab-1-2.run.xml"
|
||||||
(rewritten before read)
|
(rewritten before read)
|
||||||
|
@ -1113,6 +1113,107 @@ INPUT /usr/share/texlive/texmf-dist/tex/latex/ragged2e/ragged2e.sty
|
|||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/ragged2e/ragged2e.sty
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/ragged2e/ragged2e.sty
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/ragged2e/ragged2e.sty
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/ragged2e/ragged2e.sty
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/ragged2e/ragged2e.sty
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/ragged2e/ragged2e.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
INPUT ./border.tex
|
INPUT ./border.tex
|
||||||
INPUT border.tex
|
INPUT border.tex
|
||||||
INPUT ./border.tex
|
INPUT ./border.tex
|
||||||
@ -1123,17 +1224,6 @@ INPUT /usr/share/texlive/texmf-dist/tex/latex/lm/ot1lmr.fd
|
|||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/lm/ot1lmr.fd
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/lm/ot1lmr.fd
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/lm/ot1lmr.fd
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/lm/ot1lmr.fd
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/lm/rm-lmr10.tfm
|
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/lm/rm-lmr10.tfm
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
INPUT ./lab-1-2.aux
|
INPUT ./lab-1-2.aux
|
||||||
INPUT lab-1-2.aux
|
INPUT lab-1-2.aux
|
||||||
INPUT lab-1-2.aux
|
INPUT lab-1-2.aux
|
||||||
@ -1217,6 +1307,16 @@ INPUT /usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
|
|||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
|
||||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/english.lbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/english.lbx
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/english.lbx
|
||||||
|
OUTPUT lab-1-2.bcf
|
||||||
|
INPUT lab-1-2.bbl
|
||||||
|
INPUT ./lab-1-2.bbl
|
||||||
|
INPUT lab-1-2.bbl
|
||||||
|
INPUT ./lab-1-2.bbl
|
||||||
|
INPUT ./lab-1-2.bbl
|
||||||
|
INPUT lab-1-2.bbl
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/lm/rm-lmcsc10.tfm
|
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/lm/rm-lmcsc10.tfm
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/lm/rm-lmr7.tfm
|
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/lm/rm-lmr7.tfm
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/lm/rm-lmr6.tfm
|
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/lm/rm-lmr6.tfm
|
||||||
@ -1259,6 +1359,32 @@ INPUT ./graphics/nmos-iv-schematic.png
|
|||||||
INPUT graphics/nmos-iv-schematic.png
|
INPUT graphics/nmos-iv-schematic.png
|
||||||
INPUT ./graphics/nmos-iv-schematic.png
|
INPUT ./graphics/nmos-iv-schematic.png
|
||||||
INPUT ./graphics/nmos-iv-schematic.png
|
INPUT ./graphics/nmos-iv-schematic.png
|
||||||
|
INPUT ./graphics/iv-curves.png
|
||||||
|
INPUT ./graphics/iv-curves.png
|
||||||
|
INPUT graphics/iv-curves.png
|
||||||
|
INPUT ./graphics/iv-curves.png
|
||||||
|
INPUT ./graphics/iv-curves.png
|
||||||
|
INPUT ./graphics/pmos-shockley-model.png
|
||||||
|
INPUT ./graphics/pmos-shockley-model.png
|
||||||
|
INPUT graphics/pmos-shockley-model.png
|
||||||
|
INPUT ./graphics/pmos-shockley-model.png
|
||||||
|
INPUT ./graphics/pmos-shockley-model.png
|
||||||
|
INPUT ./graphics/pmos-iv-schematic.png
|
||||||
|
INPUT ./graphics/pmos-iv-schematic.png
|
||||||
|
INPUT graphics/pmos-iv-schematic.png
|
||||||
|
INPUT ./graphics/pmos-iv-schematic.png
|
||||||
|
INPUT ./graphics/pmos-iv-schematic.png
|
||||||
|
INPUT ./graphics/pmos-iv-2.png
|
||||||
|
INPUT ./graphics/pmos-iv-2.png
|
||||||
|
INPUT graphics/pmos-iv-2.png
|
||||||
|
INPUT ./graphics/pmos-iv-2.png
|
||||||
|
INPUT ./graphics/pmos-iv-2.png
|
||||||
|
INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-rm.enc
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-rmsc.enc
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathit.enc
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathex.enc
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathsy.enc
|
||||||
INPUT ./graphics/inverter-noise-margin.png
|
INPUT ./graphics/inverter-noise-margin.png
|
||||||
INPUT ./graphics/inverter-noise-margin.png
|
INPUT ./graphics/inverter-noise-margin.png
|
||||||
INPUT graphics/inverter-noise-margin.png
|
INPUT graphics/inverter-noise-margin.png
|
||||||
@ -1273,15 +1399,26 @@ INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm
|
|||||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
|
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
|
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/lm/rm-lmcsc10.tfm
|
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/lm/rm-lmcsc10.tfm
|
||||||
INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map
|
INPUT ./graphics/inv-parametric-nm-1.png
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-rm.enc
|
INPUT ./graphics/inv-parametric-nm-1.png
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-rmsc.enc
|
INPUT graphics/inv-parametric-nm-1.png
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathit.enc
|
INPUT ./graphics/inv-parametric-nm-1.png
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathex.enc
|
INPUT ./graphics/inv-parametric-nm-1.png
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathsy.enc
|
INPUT ./graphics/inv-parametric-nm-4.png
|
||||||
|
INPUT ./graphics/inv-parametric-nm-4.png
|
||||||
|
INPUT graphics/inv-parametric-nm-4.png
|
||||||
|
INPUT ./graphics/inv-parametric-nm-4.png
|
||||||
|
INPUT ./graphics/inv-parametric-nm-4.png
|
||||||
|
INPUT ./graphics/inv-parametric-nm-3.png
|
||||||
|
INPUT ./graphics/inv-parametric-nm-3.png
|
||||||
|
INPUT graphics/inv-parametric-nm-3.png
|
||||||
|
INPUT ./graphics/inv-parametric-nm-3.png
|
||||||
|
INPUT ./graphics/inv-parametric-nm-3.png
|
||||||
INPUT lab-1-2.aux
|
INPUT lab-1-2.aux
|
||||||
INPUT ./lab-1-2.out
|
INPUT ./lab-1-2.out
|
||||||
INPUT ./lab-1-2.out
|
INPUT ./lab-1-2.out
|
||||||
|
INPUT lab-1-2.run.xml
|
||||||
|
OUTPUT lab-1-2.run.xml
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb
|
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmbx10.pfb
|
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmbx10.pfb
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmcsc10.pfb
|
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmcsc10.pfb
|
||||||
@ -1295,4 +1432,6 @@ INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr12.pfb
|
|||||||
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr6.pfb
|
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr6.pfb
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr7.pfb
|
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr7.pfb
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr8.pfb
|
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr8.pfb
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmri10.pfb
|
||||||
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmsy10.pfb
|
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmsy10.pfb
|
||||||
|
INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmsy7.pfb
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Fedora 40) (preloaded format=pdflatex 2024.9.25) 12 NOV 2024 18:14
|
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Fedora 40) (preloaded format=pdflatex 2024.11.12) 13 NOV 2024 13:20
|
||||||
entering extended mode
|
entering extended mode
|
||||||
restricted \write18 enabled.
|
restricted \write18 enabled.
|
||||||
file:line:error style messages enabled.
|
file:line:error style messages enabled.
|
||||||
@ -840,51 +840,275 @@ Package: ragged2e 2023/02/25 v3.4 ragged2e Package
|
|||||||
\RaggedLeftParindent=\skip72
|
\RaggedLeftParindent=\skip72
|
||||||
\RaggedRightParindent=\skip73
|
\RaggedRightParindent=\skip73
|
||||||
\JustifyingParindent=\skip74
|
\JustifyingParindent=\skip74
|
||||||
) (./border.tex)
|
) (/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||||
\pgfpages@box@1=\box82
|
Package: biblatex 2023/03/05 v3.19 programmable bibliographies (PK/MW)
|
||||||
Package translations Info: No language package found. I am going to use `english' as default language. on input line 42.
|
(/usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||||
LaTeX Font Info: Trying to load font information for OT1+lmr on input line 42.
|
Package: logreq 2010/08/04 v1.0 xml request logger
|
||||||
|
\lrq@indent=\count378
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def
|
||||||
|
File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
|
||||||
|
))
|
||||||
|
\c@tabx@nest=\count379
|
||||||
|
\c@listtotal=\count380
|
||||||
|
\c@listcount=\count381
|
||||||
|
\c@liststart=\count382
|
||||||
|
\c@liststop=\count383
|
||||||
|
\c@citecount=\count384
|
||||||
|
\c@citetotal=\count385
|
||||||
|
\c@multicitecount=\count386
|
||||||
|
\c@multicitetotal=\count387
|
||||||
|
\c@instcount=\count388
|
||||||
|
\c@maxnames=\count389
|
||||||
|
\c@minnames=\count390
|
||||||
|
\c@maxitems=\count391
|
||||||
|
\c@minitems=\count392
|
||||||
|
\c@citecounter=\count393
|
||||||
|
\c@maxcitecounter=\count394
|
||||||
|
\c@savedcitecounter=\count395
|
||||||
|
\c@uniquelist=\count396
|
||||||
|
\c@uniquename=\count397
|
||||||
|
\c@refsection=\count398
|
||||||
|
\c@refsegment=\count399
|
||||||
|
\c@maxextratitle=\count400
|
||||||
|
\c@maxextratitleyear=\count401
|
||||||
|
\c@maxextraname=\count402
|
||||||
|
\c@maxextradate=\count403
|
||||||
|
\c@maxextraalpha=\count404
|
||||||
|
\c@abbrvpenalty=\count405
|
||||||
|
\c@highnamepenalty=\count406
|
||||||
|
\c@lownamepenalty=\count407
|
||||||
|
\c@maxparens=\count408
|
||||||
|
\c@parenlevel=\count409
|
||||||
|
\blx@tempcnta=\count410
|
||||||
|
\blx@tempcntb=\count411
|
||||||
|
\blx@tempcntc=\count412
|
||||||
|
\c@blx@maxsection=\count413
|
||||||
|
\blx@maxsegment@0=\count414
|
||||||
|
\blx@notetype=\count415
|
||||||
|
\blx@parenlevel@text=\count416
|
||||||
|
\blx@parenlevel@foot=\count417
|
||||||
|
\blx@sectionciteorder@0=\count418
|
||||||
|
\blx@sectionciteorderinternal@0=\count419
|
||||||
|
\blx@entrysetcounter=\count420
|
||||||
|
\blx@biblioinstance=\count421
|
||||||
|
\labelnumberwidth=\skip75
|
||||||
|
\labelalphawidth=\skip76
|
||||||
|
\biblabelsep=\skip77
|
||||||
|
\bibitemsep=\skip78
|
||||||
|
\bibnamesep=\skip79
|
||||||
|
\bibinitsep=\skip80
|
||||||
|
\bibparsep=\skip81
|
||||||
|
\bibhang=\skip82
|
||||||
|
\blx@bcfin=\read3
|
||||||
|
\blx@bcfout=\write4
|
||||||
|
\blx@langwohyphens=\language85
|
||||||
|
\c@mincomprange=\count422
|
||||||
|
\c@maxcomprange=\count423
|
||||||
|
\c@mincompwidth=\count424
|
||||||
|
Package biblatex Info: Trying to load biblatex default data model...
|
||||||
|
Package biblatex Info: ... file 'blx-dm.def' found.
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def
|
||||||
|
File: blx-dm.def 2023/03/05 v3.19 biblatex localization (PK/MW)
|
||||||
|
)
|
||||||
|
Package biblatex Info: Trying to load biblatex custom data model...
|
||||||
|
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
|
||||||
|
\c@afterword=\count425
|
||||||
|
\c@savedafterword=\count426
|
||||||
|
\c@annotator=\count427
|
||||||
|
\c@savedannotator=\count428
|
||||||
|
\c@author=\count429
|
||||||
|
\c@savedauthor=\count430
|
||||||
|
\c@bookauthor=\count431
|
||||||
|
\c@savedbookauthor=\count432
|
||||||
|
\c@commentator=\count433
|
||||||
|
\c@savedcommentator=\count434
|
||||||
|
\c@editor=\count435
|
||||||
|
\c@savededitor=\count436
|
||||||
|
\c@editora=\count437
|
||||||
|
\c@savededitora=\count438
|
||||||
|
\c@editorb=\count439
|
||||||
|
\c@savededitorb=\count440
|
||||||
|
\c@editorc=\count441
|
||||||
|
\c@savededitorc=\count442
|
||||||
|
\c@foreword=\count443
|
||||||
|
\c@savedforeword=\count444
|
||||||
|
\c@holder=\count445
|
||||||
|
\c@savedholder=\count446
|
||||||
|
\c@introduction=\count447
|
||||||
|
\c@savedintroduction=\count448
|
||||||
|
\c@namea=\count449
|
||||||
|
\c@savednamea=\count450
|
||||||
|
\c@nameb=\count451
|
||||||
|
\c@savednameb=\count452
|
||||||
|
\c@namec=\count453
|
||||||
|
\c@savednamec=\count454
|
||||||
|
\c@translator=\count455
|
||||||
|
\c@savedtranslator=\count456
|
||||||
|
\c@shortauthor=\count457
|
||||||
|
\c@savedshortauthor=\count458
|
||||||
|
\c@shorteditor=\count459
|
||||||
|
\c@savedshorteditor=\count460
|
||||||
|
\c@labelname=\count461
|
||||||
|
\c@savedlabelname=\count462
|
||||||
|
\c@institution=\count463
|
||||||
|
\c@savedinstitution=\count464
|
||||||
|
\c@lista=\count465
|
||||||
|
\c@savedlista=\count466
|
||||||
|
\c@listb=\count467
|
||||||
|
\c@savedlistb=\count468
|
||||||
|
\c@listc=\count469
|
||||||
|
\c@savedlistc=\count470
|
||||||
|
\c@listd=\count471
|
||||||
|
\c@savedlistd=\count472
|
||||||
|
\c@liste=\count473
|
||||||
|
\c@savedliste=\count474
|
||||||
|
\c@listf=\count475
|
||||||
|
\c@savedlistf=\count476
|
||||||
|
\c@location=\count477
|
||||||
|
\c@savedlocation=\count478
|
||||||
|
\c@organization=\count479
|
||||||
|
\c@savedorganization=\count480
|
||||||
|
\c@origlocation=\count481
|
||||||
|
\c@savedoriglocation=\count482
|
||||||
|
\c@origpublisher=\count483
|
||||||
|
\c@savedorigpublisher=\count484
|
||||||
|
\c@publisher=\count485
|
||||||
|
\c@savedpublisher=\count486
|
||||||
|
\c@language=\count487
|
||||||
|
\c@savedlanguage=\count488
|
||||||
|
\c@origlanguage=\count489
|
||||||
|
\c@savedoriglanguage=\count490
|
||||||
|
\c@pageref=\count491
|
||||||
|
\c@savedpageref=\count492
|
||||||
|
\shorthandwidth=\skip83
|
||||||
|
\shortjournalwidth=\skip84
|
||||||
|
\shortserieswidth=\skip85
|
||||||
|
\shorttitlewidth=\skip86
|
||||||
|
\shortauthorwidth=\skip87
|
||||||
|
\shorteditorwidth=\skip88
|
||||||
|
\locallabelnumberwidth=\skip89
|
||||||
|
\locallabelalphawidth=\skip90
|
||||||
|
\localshorthandwidth=\skip91
|
||||||
|
\localshortjournalwidth=\skip92
|
||||||
|
\localshortserieswidth=\skip93
|
||||||
|
\localshorttitlewidth=\skip94
|
||||||
|
\localshortauthorwidth=\skip95
|
||||||
|
\localshorteditorwidth=\skip96
|
||||||
|
Package biblatex Info: Trying to load compatibility code...
|
||||||
|
Package biblatex Info: ... file 'blx-compat.def' found.
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def
|
||||||
|
File: blx-compat.def 2023/03/05 v3.19 biblatex compatibility (PK/MW)
|
||||||
|
)
|
||||||
|
Package biblatex Info: Trying to load generic definitions...
|
||||||
|
Package biblatex Info: ... file 'biblatex.def' found.
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def
|
||||||
|
File: biblatex.def 2023/03/05 v3.19 biblatex compatibility (PK/MW)
|
||||||
|
\c@textcitecount=\count493
|
||||||
|
\c@textcitetotal=\count494
|
||||||
|
\c@textcitemaxnames=\count495
|
||||||
|
\c@biburlbigbreakpenalty=\count496
|
||||||
|
\c@biburlbreakpenalty=\count497
|
||||||
|
\c@biburlnumpenalty=\count498
|
||||||
|
\c@biburlucpenalty=\count499
|
||||||
|
\c@biburllcpenalty=\count500
|
||||||
|
\biburlbigskip=\muskip18
|
||||||
|
\biburlnumskip=\muskip19
|
||||||
|
\biburlucskip=\muskip20
|
||||||
|
\biburllcskip=\muskip21
|
||||||
|
\c@smartand=\count501
|
||||||
|
)
|
||||||
|
Package biblatex Info: Trying to load bibliography style 'numeric'...
|
||||||
|
Package biblatex Info: ... file 'numeric.bbx' found.
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
|
||||||
|
File: numeric.bbx 2023/03/05 v3.19 biblatex bibliography style (PK/MW)
|
||||||
|
Package biblatex Info: Trying to load bibliography style 'standard'...
|
||||||
|
Package biblatex Info: ... file 'standard.bbx' found.
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
|
||||||
|
File: standard.bbx 2023/03/05 v3.19 biblatex bibliography style (PK/MW)
|
||||||
|
\c@bbx:relatedcount=\count502
|
||||||
|
\c@bbx:relatedtotal=\count503
|
||||||
|
))
|
||||||
|
Package biblatex Info: Trying to load citation style 'numeric'...
|
||||||
|
Package biblatex Info: ... file 'numeric.cbx' found.
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
|
||||||
|
File: numeric.cbx 2023/03/05 v3.19 biblatex citation style (PK/MW)
|
||||||
|
Package biblatex Info: Redefining '\cite'.
|
||||||
|
Package biblatex Info: Redefining '\parencite'.
|
||||||
|
Package biblatex Info: Redefining '\footcite'.
|
||||||
|
Package biblatex Info: Redefining '\footcitetext'.
|
||||||
|
Package biblatex Info: Redefining '\smartcite'.
|
||||||
|
Package biblatex Info: Redefining '\supercite'.
|
||||||
|
Package biblatex Info: Redefining '\textcite'.
|
||||||
|
Package biblatex Info: Redefining '\textcites'.
|
||||||
|
Package biblatex Info: Redefining '\cites'.
|
||||||
|
Package biblatex Info: Redefining '\parencites'.
|
||||||
|
Package biblatex Info: Redefining '\smartcites'.
|
||||||
|
)
|
||||||
|
Package biblatex Info: Trying to load configuration file...
|
||||||
|
Package biblatex Info: ... file 'biblatex.cfg' found.
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg
|
||||||
|
File: biblatex.cfg
|
||||||
|
)
|
||||||
|
Package biblatex Info: Input encoding 'utf8' detected.
|
||||||
|
Package biblatex Info: Document encoding is UTF8 ....
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||||
|
Package: expl3 2023-02-22 L3 programming layer (loader)
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||||
|
File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX)
|
||||||
|
\l__color_backend_stack_int=\count504
|
||||||
|
\l__pdf_internal_box=\box82
|
||||||
|
))
|
||||||
|
Package biblatex Info: ... and expl3
|
||||||
|
(biblatex) 2023-02-22 L3 programming layer (loader)
|
||||||
|
(biblatex) is new enough (at least 2020/04/06),
|
||||||
|
(biblatex) setting 'casechanger=expl3'.
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||||
|
Package: xparse 2023-02-02 L3 Experimental document command parser
|
||||||
|
)
|
||||||
|
Package: blx-case-expl3 2023/03/05 v3.19 expl3 case changing code for biblatex
|
||||||
|
)) (./border.tex)
|
||||||
|
\pgfpages@box@1=\box83
|
||||||
|
Package translations Info: No language package found. I am going to use `english' as default language. on input line 59.
|
||||||
|
\@quotelevel=\count505
|
||||||
|
\@quotereset=\count506
|
||||||
|
LaTeX Font Info: Trying to load font information for OT1+lmr on input line 59.
|
||||||
(/usr/share/texlive/texmf-dist/tex/latex/lm/ot1lmr.fd
|
(/usr/share/texlive/texmf-dist/tex/latex/lm/ot1lmr.fd
|
||||||
File: ot1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
|
File: ot1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
|
||||||
) (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX)
|
|
||||||
\l__color_backend_stack_int=\count378
|
|
||||||
\l__pdf_internal_box=\box83
|
|
||||||
) (./lab-1-2.aux)
|
) (./lab-1-2.aux)
|
||||||
\openout1 = `lab-1-2.aux'.
|
\openout1 = `lab-1-2.aux'.
|
||||||
|
|
||||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 42.
|
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 59.
|
||||||
LaTeX Font Info: ... okay on input line 42.
|
LaTeX Font Info: ... okay on input line 59.
|
||||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 42.
|
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 59.
|
||||||
LaTeX Font Info: ... okay on input line 42.
|
LaTeX Font Info: ... okay on input line 59.
|
||||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 42.
|
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 59.
|
||||||
LaTeX Font Info: ... okay on input line 42.
|
LaTeX Font Info: ... okay on input line 59.
|
||||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 42.
|
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 59.
|
||||||
LaTeX Font Info: ... okay on input line 42.
|
LaTeX Font Info: ... okay on input line 59.
|
||||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 42.
|
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 59.
|
||||||
LaTeX Font Info: ... okay on input line 42.
|
LaTeX Font Info: ... okay on input line 59.
|
||||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 42.
|
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 59.
|
||||||
LaTeX Font Info: ... okay on input line 42.
|
LaTeX Font Info: ... okay on input line 59.
|
||||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 42.
|
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 59.
|
||||||
LaTeX Font Info: ... okay on input line 42.
|
LaTeX Font Info: ... okay on input line 59.
|
||||||
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 42.
|
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 59.
|
||||||
LaTeX Font Info: ... okay on input line 42.
|
LaTeX Font Info: ... okay on input line 59.
|
||||||
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 42.
|
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 59.
|
||||||
LaTeX Font Info: ... okay on input line 42.
|
LaTeX Font Info: ... okay on input line 59.
|
||||||
|
|
||||||
-- Lines per column: 61 (approximate, difference = 5.15489pt).
|
-- Lines per column: 61 (approximate, difference = 5.15489pt).
|
||||||
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
[Loading MPS to PDF converter (version 2006.09.02).]
|
||||||
\scratchcounter=\count379
|
\scratchcounter=\count507
|
||||||
\scratchdimen=\dimen344
|
\scratchdimen=\dimen344
|
||||||
\scratchbox=\box84
|
\scratchbox=\box84
|
||||||
\nofMPsegments=\count380
|
\nofMPsegments=\count508
|
||||||
\nofMParguments=\count381
|
\nofMParguments=\count509
|
||||||
\everyMPshowfont=\toks51
|
\everyMPshowfont=\toks51
|
||||||
\MPscratchCnt=\count382
|
\MPscratchCnt=\count510
|
||||||
\MPscratchDim=\dimen345
|
\MPscratchDim=\dimen345
|
||||||
\MPnumerator=\count383
|
\MPnumerator=\count511
|
||||||
\makeMPintoPDFobject=\count384
|
\makeMPintoPDFobject=\count512
|
||||||
\everyMPtoPDFconversion=\toks52
|
\everyMPtoPDFconversion=\toks52
|
||||||
) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
||||||
@ -894,11 +1118,11 @@ File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
|
|||||||
)) (/usr/share/texlive/texmf-dist/tex/latex/translations/translations-basic-dictionary-english.trsl
|
)) (/usr/share/texlive/texmf-dist/tex/latex/translations/translations-basic-dictionary-english.trsl
|
||||||
File: translations-basic-dictionary-english.trsl (english translation file `translations-basic-dictionary')
|
File: translations-basic-dictionary-english.trsl (english translation file `translations-basic-dictionary')
|
||||||
)
|
)
|
||||||
Package translations Info: loading dictionary `translations-basic-dictionary' for `english'. on input line 42.
|
Package translations Info: loading dictionary `translations-basic-dictionary' for `english'. on input line 59.
|
||||||
Package hyperref Info: Link coloring OFF on input line 42.
|
Package hyperref Info: Link coloring OFF on input line 59.
|
||||||
(./lab-1-2.out) (./lab-1-2.out)
|
(./lab-1-2.out) (./lab-1-2.out)
|
||||||
\@outlinefile=\write4
|
\@outlinefile=\write5
|
||||||
\openout4 = `lab-1-2.out'.
|
\openout5 = `lab-1-2.out'.
|
||||||
|
|
||||||
|
|
||||||
Package pgfplots notification 'compat/show suggested version=true': you might benefit from \pgfplotsset{compat=1.18} (current compat level: 1.15).
|
Package pgfplots notification 'compat/show suggested version=true': you might benefit from \pgfplotsset{compat=1.18} (current compat level: 1.15).
|
||||||
@ -940,54 +1164,129 @@ Package pgfplots notification 'compat/show suggested version=true': you might be
|
|||||||
(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
|
(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
|
||||||
File: fc-english.def 2016/01/12
|
File: fc-english.def 2016/01/12
|
||||||
)
|
)
|
||||||
LaTeX Font Info: Trying to load font information for OML+lmm on input line 48.
|
Package biblatex Info: Trying to load language 'english'...
|
||||||
|
Package biblatex Info: ... file 'english.lbx' found.
|
||||||
|
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/english.lbx
|
||||||
|
File: english.lbx 2023/03/05 v3.19 biblatex localization (PK/MW)
|
||||||
|
)
|
||||||
|
Package biblatex Info: Input encoding 'utf8' detected.
|
||||||
|
Package biblatex Info: Automatic encoding selection.
|
||||||
|
(biblatex) Assuming data encoding 'utf8'.
|
||||||
|
\openout4 = `lab-1-2.bcf'.
|
||||||
|
|
||||||
|
Package biblatex Info: Trying to load bibliographic data...
|
||||||
|
Package biblatex Info: ... file 'lab-1-2.bbl' found.
|
||||||
|
(./lab-1-2.bbl)
|
||||||
|
Package biblatex Info: Reference section=0 on input line 59.
|
||||||
|
Package biblatex Info: Reference segment=0 on input line 59.
|
||||||
|
LaTeX Font Info: Trying to load font information for OML+lmm on input line 65.
|
||||||
(/usr/share/texlive/texmf-dist/tex/latex/lm/omllmm.fd
|
(/usr/share/texlive/texmf-dist/tex/latex/lm/omllmm.fd
|
||||||
File: omllmm.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
|
File: omllmm.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
|
||||||
)
|
)
|
||||||
LaTeX Font Info: Trying to load font information for OMS+lmsy on input line 48.
|
LaTeX Font Info: Trying to load font information for OMS+lmsy on input line 65.
|
||||||
(/usr/share/texlive/texmf-dist/tex/latex/lm/omslmsy.fd
|
(/usr/share/texlive/texmf-dist/tex/latex/lm/omslmsy.fd
|
||||||
File: omslmsy.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
|
File: omslmsy.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
|
||||||
)
|
)
|
||||||
LaTeX Font Info: Trying to load font information for OMX+lmex on input line 48.
|
LaTeX Font Info: Trying to load font information for OMX+lmex on input line 65.
|
||||||
(/usr/share/texlive/texmf-dist/tex/latex/lm/omxlmex.fd
|
(/usr/share/texlive/texmf-dist/tex/latex/lm/omxlmex.fd
|
||||||
File: omxlmex.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
|
File: omxlmex.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
|
||||||
)
|
)
|
||||||
LaTeX Font Info: External font `lmex10' loaded for size
|
LaTeX Font Info: External font `lmex10' loaded for size
|
||||||
(Font) <10> on input line 48.
|
(Font) <10> on input line 65.
|
||||||
LaTeX Font Info: External font `lmex10' loaded for size
|
LaTeX Font Info: External font `lmex10' loaded for size
|
||||||
(Font) <7.4> on input line 48.
|
(Font) <7.4> on input line 65.
|
||||||
LaTeX Font Info: External font `lmex10' loaded for size
|
LaTeX Font Info: External font `lmex10' loaded for size
|
||||||
(Font) <6> on input line 48.
|
(Font) <6> on input line 65.
|
||||||
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7.4> not available
|
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7.4> not available
|
||||||
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 48.
|
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 65.
|
||||||
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <6> not available
|
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <6> not available
|
||||||
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 48.
|
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 65.
|
||||||
<graphics/simulated-iv-curves.png, id=29, 682.2288pt x 708.9687pt>
|
<graphics/simulated-iv-curves.png, id=29, 682.2288pt x 708.9687pt>
|
||||||
File: graphics/simulated-iv-curves.png Graphic file (type png)
|
File: graphics/simulated-iv-curves.png Graphic file (type png)
|
||||||
<use graphics/simulated-iv-curves.png>
|
<use graphics/simulated-iv-curves.png>
|
||||||
Package pdftex.def Info: graphics/simulated-iv-curves.png used on input line 67.
|
Package pdftex.def Info: graphics/simulated-iv-curves.png used on input line 84.
|
||||||
(pdftex.def) Requested size: 222.58856pt x 231.30998pt.
|
(pdftex.def) Requested size: 222.58856pt x 231.30998pt.
|
||||||
|
|
||||||
Underfull \vbox (badness 10000) has occurred while \output is active []
|
|
||||||
|
LaTeX Warning: `h' float specifier changed to `ht'.
|
||||||
|
|
||||||
<graphics/nmos-iv-schematic.png, id=32, 782.925pt x 619.31375pt>
|
<graphics/nmos-iv-schematic.png, id=32, 782.925pt x 619.31375pt>
|
||||||
File: graphics/nmos-iv-schematic.png Graphic file (type png)
|
File: graphics/nmos-iv-schematic.png Graphic file (type png)
|
||||||
<use graphics/nmos-iv-schematic.png>
|
<use graphics/nmos-iv-schematic.png>
|
||||||
Package pdftex.def Info: graphics/nmos-iv-schematic.png used on input line 75.
|
Package pdftex.def Info: graphics/nmos-iv-schematic.png used on input line 92.
|
||||||
(pdftex.def) Requested size: 222.58856pt x 176.07155pt.
|
(pdftex.def) Requested size: 222.58856pt x 176.07155pt.
|
||||||
|
|
||||||
|
LaTeX Warning: `h' float specifier changed to `ht'.
|
||||||
|
|
||||||
LaTeX Warning: Citation `VLSI_System_Design' on page 1 undefined on input line 81.
|
<graphics/iv-curves.png, id=34, 1422.81563pt x 642.90187pt>
|
||||||
|
File: graphics/iv-curves.png Graphic file (type png)
|
||||||
|
<use graphics/iv-curves.png>
|
||||||
|
Package pdftex.def Info: graphics/iv-curves.png used on input line 100.
|
||||||
|
(pdftex.def) Requested size: 222.58856pt x 100.57088pt.
|
||||||
|
|
||||||
<graphics/inverter-noise-margin.png, id=34, 1422.81563pt x 642.90187pt>
|
LaTeX Warning: `h' float specifier changed to `ht'.
|
||||||
|
|
||||||
|
|
||||||
|
Underfull \vbox (badness 1331) has occurred while \output is active []
|
||||||
|
|
||||||
|
<graphics/pmos-shockley-model.png, id=38, 682.2288pt x 708.9687pt>
|
||||||
|
File: graphics/pmos-shockley-model.png Graphic file (type png)
|
||||||
|
<use graphics/pmos-shockley-model.png>
|
||||||
|
Package pdftex.def Info: graphics/pmos-shockley-model.png used on input line 128.
|
||||||
|
(pdftex.def) Requested size: 222.58856pt x 231.30998pt.
|
||||||
|
|
||||||
|
|
||||||
|
LaTeX Warning: `h' float specifier changed to `ht'.
|
||||||
|
|
||||||
|
<graphics/pmos-iv-schematic.png, id=40, 576.1525pt x 523.9575pt>
|
||||||
|
File: graphics/pmos-iv-schematic.png Graphic file (type png)
|
||||||
|
<use graphics/pmos-iv-schematic.png>
|
||||||
|
Package pdftex.def Info: graphics/pmos-iv-schematic.png used on input line 136.
|
||||||
|
(pdftex.def) Requested size: 222.58856pt x 202.42381pt.
|
||||||
|
|
||||||
|
LaTeX Warning: `h' float specifier changed to `ht'.
|
||||||
|
|
||||||
|
<graphics/pmos-iv-2.png, id=42, 1422.81563pt x 642.90187pt>
|
||||||
|
File: graphics/pmos-iv-2.png Graphic file (type png)
|
||||||
|
<use graphics/pmos-iv-2.png>
|
||||||
|
Package pdftex.def Info: graphics/pmos-iv-2.png used on input line 144.
|
||||||
|
(pdftex.def) Requested size: 222.58856pt x 100.57088pt.
|
||||||
|
|
||||||
|
LaTeX Warning: `h' float specifier changed to `ht'.
|
||||||
|
|
||||||
|
[2{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}{/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-rm.enc}
|
||||||
|
|
||||||
|
|
||||||
|
{/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-rmsc.enc}{/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathit.enc}{/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathex.enc}{/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathsy.enc} <./graphics/simulated-iv-curves.png> <./graphics/nmos-iv-schematic.png (PNG copy)>]
|
||||||
|
<graphics/inverter-noise-margin.png, id=67, 1422.81563pt x 642.90187pt>
|
||||||
File: graphics/inverter-noise-margin.png Graphic file (type png)
|
File: graphics/inverter-noise-margin.png Graphic file (type png)
|
||||||
<use graphics/inverter-noise-margin.png>
|
<use graphics/inverter-noise-margin.png>
|
||||||
Package pdftex.def Info: graphics/inverter-noise-margin.png used on input line 87.
|
Package pdftex.def Info: graphics/inverter-noise-margin.png used on input line 158.
|
||||||
(pdftex.def) Requested size: 222.58856pt x 100.57088pt.
|
(pdftex.def) Requested size: 222.58856pt x 100.57088pt.
|
||||||
LaTeX Font Info: External font `lmex10' loaded for size
|
LaTeX Font Info: External font `lmex10' loaded for size
|
||||||
(Font) <8> on input line 88.
|
(Font) <8> on input line 159.
|
||||||
LaTeX Font Info: External font `lmex10' loaded for size
|
LaTeX Font Info: External font `lmex10' loaded for size
|
||||||
(Font) <5> on input line 88.
|
(Font) <5> on input line 159.
|
||||||
|
<graphics/inv-parametric-nm-1.png, id=70, 1422.81563pt x 642.90187pt>
|
||||||
|
File: graphics/inv-parametric-nm-1.png Graphic file (type png)
|
||||||
|
<use graphics/inv-parametric-nm-1.png>
|
||||||
|
Package pdftex.def Info: graphics/inv-parametric-nm-1.png used on input line 193.
|
||||||
|
(pdftex.def) Requested size: 222.58856pt x 100.57088pt.
|
||||||
|
|
||||||
|
|
||||||
|
LaTeX Warning: `h' float specifier changed to `ht'.
|
||||||
|
|
||||||
|
<graphics/inv-parametric-nm-4.png, id=72, 1422.81563pt x 642.90187pt>
|
||||||
|
File: graphics/inv-parametric-nm-4.png Graphic file (type png)
|
||||||
|
<use graphics/inv-parametric-nm-4.png>
|
||||||
|
Package pdftex.def Info: graphics/inv-parametric-nm-4.png used on input line 201.
|
||||||
|
(pdftex.def) Requested size: 222.58856pt x 100.57088pt.
|
||||||
|
<graphics/inv-parametric-nm-3.png, id=74, 1422.81563pt x 642.90187pt>
|
||||||
|
File: graphics/inv-parametric-nm-3.png Graphic file (type png)
|
||||||
|
<use graphics/inv-parametric-nm-3.png>
|
||||||
|
Package pdftex.def Info: graphics/inv-parametric-nm-3.png used on input line 209.
|
||||||
|
(pdftex.def) Requested size: 222.58856pt x 100.57088pt.
|
||||||
|
[3 <./graphics/iv-curves.png> <./graphics/pmos-shockley-model.png> <./graphics/pmos-iv-schematic.png (PNG copy)>]
|
||||||
|
|
||||||
** Conference Paper **
|
** Conference Paper **
|
||||||
Before submitting the final camera ready copy, remember to:
|
Before submitting the final camera ready copy, remember to:
|
||||||
@ -999,31 +1298,28 @@ Before submitting the final camera ready copy, remember to:
|
|||||||
uses only Type 1 fonts and that every step in the generation
|
uses only Type 1 fonts and that every step in the generation
|
||||||
process uses the appropriate paper size.
|
process uses the appropriate paper size.
|
||||||
|
|
||||||
[2{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}{/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-rm.enc}
|
[4 <./graphics/pmos-iv-2.png> <./graphics/inverter-noise-margin.png> <./graphics/inv-parametric-nm-1.png> <./graphics/inv-parametric-nm-4.png> <./graphics/inv-parametric-nm-3.png>] [5
|
||||||
|
|
||||||
|
|
||||||
{/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-rmsc.enc}{/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathit.enc}{/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathex.enc}{/usr/share/texlive/texmf-dist/fonts/enc/dvips/lm/lm-mathsy.enc} <./graphics/simulated-iv-curves.png> <./graphics/nmos-iv-schematic.png (PNG copy)>] [3
|
|
||||||
|
|
||||||
<./graphics/inverter-noise-margin.png>] (./lab-1-2.aux)
|
|
||||||
|
|
||||||
LaTeX Warning: There were undefined references.
|
|
||||||
|
|
||||||
|
] (./lab-1-2.aux)
|
||||||
Package rerunfilecheck Info: File `lab-1-2.out' has not changed.
|
Package rerunfilecheck Info: File `lab-1-2.out' has not changed.
|
||||||
(rerunfilecheck) Checksum: 2939374A116E95A2B7D2EC46518C2E5E;564.
|
(rerunfilecheck) Checksum: 4A054492D2E8E2D18DB33BF9E6514F87;617.
|
||||||
|
Package logreq Info: Writing requests to 'lab-1-2.run.xml'.
|
||||||
|
\openout1 = `lab-1-2.run.xml'.
|
||||||
|
|
||||||
)
|
)
|
||||||
Here is how much of TeX's memory you used:
|
Here is how much of TeX's memory you used:
|
||||||
53455 strings out of 476041
|
60716 strings out of 476041
|
||||||
1381195 string characters out of 5793164
|
1528662 string characters out of 5793163
|
||||||
2052549 words of memory out of 6000000
|
2610035 words of memory out of 6000000
|
||||||
73233 multiletter control sequences out of 15000+600000
|
80420 multiletter control sequences out of 15000+600000
|
||||||
696086 words of font info for 142 fonts, out of 8000000 for 9000
|
696086 words of font info for 142 fonts, out of 8000000 for 9000
|
||||||
1140 hyphenation exceptions out of 8191
|
1140 hyphenation exceptions out of 8191
|
||||||
117i,12n,118p,1010b,888s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
117i,12n,118p,1010b,2069s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
||||||
</usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmbx10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmcsc10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmex10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmmi10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmmi6.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmmi7.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmmi8.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr12.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr6.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr7.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr8.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmsy10.pfb>
|
</usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmbx10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmcsc10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmex10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmmi10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmmi6.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmmi7.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmmi8.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr12.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr6.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr7.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmr8.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmri10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmsy10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/lm/lmsy7.pfb>
|
||||||
Output written on lab-1-2.pdf (2 pages, 324378 bytes).
|
Output written on lab-1-2.pdf (4 pages, 828990 bytes).
|
||||||
PDF statistics:
|
PDF statistics:
|
||||||
136 PDF objects out of 1000 (max. 8388607)
|
199 PDF objects out of 1000 (max. 8388607)
|
||||||
98 compressed objects within 1 object stream
|
141 compressed objects within 2 object streams
|
||||||
15 named destinations out of 1000 (max. 500000)
|
29 named destinations out of 1000 (max. 500000)
|
||||||
68 words of extra memory for PDF output out of 10000 (max. 10000000)
|
103 words of extra memory for PDF output out of 10000 (max. 10000000)
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
\BOOKMARK [1][-]{section.1}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 1
|
\BOOKMARK [1][-]{section.1}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 1
|
||||||
\BOOKMARK [1][-]{section.2}{\376\377\000N\000M\000O\000S\000\040\000C\000h\000a\000r\000a\000c\000t\000e\000r\000i\000s\000t\000i\000c\000s}{}% 2
|
\BOOKMARK [1][-]{section.2}{\376\377\000N\000M\000O\000S\000\040\000C\000h\000a\000r\000a\000c\000t\000e\000r\000i\000s\000t\000i\000c\000s}{}% 2
|
||||||
\BOOKMARK [1][-]{section.3}{\376\377\000T\000h\000e\000\040\000N\000o\000i\000s\000e\000\040\000M\000a\000r\000g\000i\000n}{}% 3
|
\BOOKMARK [1][-]{section.3}{\376\377\000P\000M\000O\000S\000\040\000C\000h\000a\000r\000a\000c\000t\000e\000r\000i\000s\000t\000i\000c\000s}{}% 3
|
||||||
\BOOKMARK [1][-]{section.4}{\376\377\000D\000i\000s\000c\000u\000s\000s\000i\000o\000n}{}% 4
|
\BOOKMARK [1][-]{section.4}{\376\377\000T\000h\000e\000\040\000N\000o\000i\000s\000e\000\040\000M\000a\000r\000g\000i\000n}{}% 4
|
||||||
\BOOKMARK [1][-]{section.5}{\376\377\000C\000o\000n\000c\000l\000u\000s\000i\000o\000n}{}% 5
|
\BOOKMARK [1][-]{section.5}{\376\377\000C\000o\000n\000c\000l\000u\000s\000i\000o\000n}{}% 5
|
||||||
|
85
7th-Semester-Fall-2024/VLSI/labs/lab-1-2/lab-1-2.run.xml
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" standalone="yes"?>
|
||||||
|
<!-- logreq request file -->
|
||||||
|
<!-- logreq version 1.0 / dtd version 1.0 -->
|
||||||
|
<!-- Do not edit this file! -->
|
||||||
|
<!DOCTYPE requests [
|
||||||
|
<!ELEMENT requests (internal | external)*>
|
||||||
|
<!ELEMENT internal (generic, (provides | requires)*)>
|
||||||
|
<!ELEMENT external (generic, cmdline?, input?, output?, (provides | requires)*)>
|
||||||
|
<!ELEMENT cmdline (binary, (option | infile | outfile)*)>
|
||||||
|
<!ELEMENT input (file)+>
|
||||||
|
<!ELEMENT output (file)+>
|
||||||
|
<!ELEMENT provides (file)+>
|
||||||
|
<!ELEMENT requires (file)+>
|
||||||
|
<!ELEMENT generic (#PCDATA)>
|
||||||
|
<!ELEMENT binary (#PCDATA)>
|
||||||
|
<!ELEMENT option (#PCDATA)>
|
||||||
|
<!ELEMENT infile (#PCDATA)>
|
||||||
|
<!ELEMENT outfile (#PCDATA)>
|
||||||
|
<!ELEMENT file (#PCDATA)>
|
||||||
|
<!ATTLIST requests
|
||||||
|
version CDATA #REQUIRED
|
||||||
|
>
|
||||||
|
<!ATTLIST internal
|
||||||
|
package CDATA #REQUIRED
|
||||||
|
priority (9) #REQUIRED
|
||||||
|
active (0 | 1) #REQUIRED
|
||||||
|
>
|
||||||
|
<!ATTLIST external
|
||||||
|
package CDATA #REQUIRED
|
||||||
|
priority (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8) #REQUIRED
|
||||||
|
active (0 | 1) #REQUIRED
|
||||||
|
>
|
||||||
|
<!ATTLIST provides
|
||||||
|
type (static | dynamic | editable) #REQUIRED
|
||||||
|
>
|
||||||
|
<!ATTLIST requires
|
||||||
|
type (static | dynamic | editable) #REQUIRED
|
||||||
|
>
|
||||||
|
<!ATTLIST file
|
||||||
|
type CDATA #IMPLIED
|
||||||
|
>
|
||||||
|
]>
|
||||||
|
<requests version="1.0">
|
||||||
|
<internal package="biblatex" priority="9" active="0">
|
||||||
|
<generic>latex</generic>
|
||||||
|
<provides type="dynamic">
|
||||||
|
<file>lab-1-2.bcf</file>
|
||||||
|
</provides>
|
||||||
|
<requires type="dynamic">
|
||||||
|
<file>lab-1-2.bbl</file>
|
||||||
|
</requires>
|
||||||
|
<requires type="static">
|
||||||
|
<file>blx-dm.def</file>
|
||||||
|
<file>blx-compat.def</file>
|
||||||
|
<file>biblatex.def</file>
|
||||||
|
<file>standard.bbx</file>
|
||||||
|
<file>numeric.bbx</file>
|
||||||
|
<file>numeric.cbx</file>
|
||||||
|
<file>biblatex.cfg</file>
|
||||||
|
<file>english.lbx</file>
|
||||||
|
</requires>
|
||||||
|
</internal>
|
||||||
|
<external package="biblatex" priority="5" active="0">
|
||||||
|
<generic>biber</generic>
|
||||||
|
<cmdline>
|
||||||
|
<binary>biber</binary>
|
||||||
|
<infile>lab-1-2</infile>
|
||||||
|
</cmdline>
|
||||||
|
<input>
|
||||||
|
<file>lab-1-2.bcf</file>
|
||||||
|
</input>
|
||||||
|
<output>
|
||||||
|
<file>lab-1-2.bbl</file>
|
||||||
|
</output>
|
||||||
|
<provides type="dynamic">
|
||||||
|
<file>lab-1-2.bbl</file>
|
||||||
|
</provides>
|
||||||
|
<requires type="dynamic">
|
||||||
|
<file>lab-1-2.bcf</file>
|
||||||
|
</requires>
|
||||||
|
<requires type="editable">
|
||||||
|
<file>references.bib</file>
|
||||||
|
</requires>
|
||||||
|
</external>
|
||||||
|
</requests>
|
@ -26,11 +26,28 @@
|
|||||||
\usepackage{lmodern}
|
\usepackage{lmodern}
|
||||||
\usepackage{datetime}
|
\usepackage{datetime}
|
||||||
\usepackage{ragged2e}
|
\usepackage{ragged2e}
|
||||||
|
\usepackage[backend=biber]{biblatex}
|
||||||
\input{border.tex}
|
\input{border.tex}
|
||||||
\pgfpagesuselayout{boxed}
|
\pgfpagesuselayout{boxed}
|
||||||
|
|
||||||
|
\newenvironment{aside}[1]
|
||||||
|
{\begin{center}
|
||||||
|
\begin{tabular}{|p{0.4\textwidth}|}
|
||||||
|
\hline\\
|
||||||
|
\begin{center}
|
||||||
|
\textbf{#1---An Aside}\\
|
||||||
|
\end{center}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
\\\\\hline
|
||||||
|
\end{tabular}
|
||||||
|
\end{center}
|
||||||
|
}
|
||||||
|
|
||||||
\hyphenation{op-tical net-works semi-conduc-tor}% correct bad hyphenation here
|
\hyphenation{op-tical net-works semi-conduc-tor}% correct bad hyphenation here
|
||||||
|
|
||||||
|
\addbibresource{references.bib}
|
||||||
|
|
||||||
\font\myfont=cmr12 at 15pt
|
\font\myfont=cmr12 at 15pt
|
||||||
\title{\myfont VLSI Labs 1\&2 \\ Simple MOSFET \& CMOS Inverter Trends}
|
\title{\myfont VLSI Labs 1\&2 \\ Simple MOSFET \& CMOS Inverter Trends}
|
||||||
\author{Aidan Sharpe}
|
\author{Aidan Sharpe}
|
||||||
@ -43,14 +60,14 @@
|
|||||||
\maketitle
|
\maketitle
|
||||||
|
|
||||||
\section{Introduction}
|
\section{Introduction}
|
||||||
While they are commonly treated as three-terminal devices in introductory electronics classes, MOSFETs are actually four-terminal devices. In discrete, three-terminal designs, the body pin and the source pin are tied together internally. In CMOS VLSI desin, all four pins play an important role. Having a discrete body pin provides each transistor with its own power or ground reference depending on the type of MOSFET.
|
While they are commonly treated as three-terminal devices in introductory electronics classes, MOSFETs are actually four-terminal devices. In discrete, three-terminal designs, the body pin and the source pin are tied together internally. In CMOS VLSI design, all four pins play an important role. Having a discrete body pin provides each transistor with its own power or ground reference depending on the type of MOSFET.
|
||||||
|
|
||||||
In CMOS VLSI design, there are two types of complementary MOSFETs, hence the name CMOS. The two types are the n-channel MOSFET (NMOS) and the p-channel MOSFET (PMOS). N-channel MOSFETs behave like a switch that is normally open, while p-channel MOSFETs behave like a normally closed switch. To change the state of the switch, a voltage $V_{gs}$ is applied to the gate pin.
|
In CMOS VLSI design, there are two types of complementary MOSFETs, hence the name CMOS. The two types are the n-channel MOSFET (NMOS) and the p-channel MOSFET (PMOS). N-channel MOSFETs behave like a switch that is normally open, while p-channel MOSFETs behave like a normally closed switch. To change the state of the switch, a voltage $V_{gs}$ is applied to the gate pin.
|
||||||
|
|
||||||
We will discuss the exact behavior of the two types of MOSFETs further throughout the following two sections. In the final section, we will explore and discuss the properies and behaviors of a CMOS inverter.
|
We will discuss the exact behavior of the two types of MOSFETs further throughout the following two sections. In the final section, we will explore and discuss the properties and behaviors of a CMOS inverter.
|
||||||
|
|
||||||
\section{NMOS Characteristics}
|
\section{NMOS Characteristics}
|
||||||
The Shockley first-order model is a good approximation of the relationship between the input voltages and the current through a MOSFET. The model approximates the current trhough an NMOS $I_{ds}$ is
|
The Shockley first-order model is a good approximation of the relationship between the input voltages and the current through a MOSFET. The model approximates the current through an NMOS $I_{ds}$ is
|
||||||
\begin{equation}
|
\begin{equation}
|
||||||
I_{ds} = \begin{cases}
|
I_{ds} = \begin{cases}
|
||||||
0 & V_{gs} < V_t \\
|
0 & V_{gs} < V_t \\
|
||||||
@ -63,44 +80,101 @@ where $V_{gs}$ is the voltage between the gate and source, $V_t$ is the threshol
|
|||||||
|
|
||||||
We parametrically varied $V_{gs}$ and $V_{ds}$ using a Python. Then, we plotted $I_{ds}$ using the model described in equation \ref{eqn:nmos-shockley-first-order}. Seen in figure \ref{fig:nmos-shockley-first-order}, increasing $V_{gs}$ will increase the current. Furthermore, increasing $V_{ds}$ will also increase the current, but only up to a point. After reaching that point, the current does not change with $V_{ds}$.
|
We parametrically varied $V_{gs}$ and $V_{ds}$ using a Python. Then, we plotted $I_{ds}$ using the model described in equation \ref{eqn:nmos-shockley-first-order}. Seen in figure \ref{fig:nmos-shockley-first-order}, increasing $V_{gs}$ will increase the current. Furthermore, increasing $V_{ds}$ will also increase the current, but only up to a point. After reaching that point, the current does not change with $V_{ds}$.
|
||||||
|
|
||||||
\begin{figure}[H]
|
\begin{figure}[h]
|
||||||
\center\includegraphics[width=0.4\textwidth]{graphics/simulated-iv-curves.png}
|
\center\includegraphics[width=0.4\textwidth]{graphics/simulated-iv-curves.png}
|
||||||
\caption{Plot of Shockley first order model for an n-channel MOSFET}
|
\caption{Plot of Shockley first order model for an n-channel MOSFET}
|
||||||
\label{fig:nmos-shockley-first-order}
|
\label{fig:nmos-shockley-first-order}
|
||||||
\end{figure}
|
\end{figure}
|
||||||
|
|
||||||
We then used a simulation tool that takes into account the non-ideal effects of MOSFETs to provide a more accurate plot of the relationship between input voltages and current. First, an NMOS was placed in the schematic, along with some voltage sources with variable volages. It is important that the voltages be variable, so a parametric test may be run. The final schematic is seen in figure \ref{fig:nmos-iv-schematic}.
|
We then used a simulation tool that takes into account the non-ideal effects of MOSFETs to provide a more accurate plot of the relationship between input voltages and current. First, an NMOS was placed in the schematic, along with some voltage sources with variable voltages. It is important that the voltages be variable, so a parametric test may be run. The final schematic is seen in figure \ref{fig:nmos-iv-schematic}.
|
||||||
|
|
||||||
\begin{figure}[H]
|
\begin{figure}[h]
|
||||||
\center\includegraphics[width=0.4\textwidth]{graphics/nmos-iv-schematic.png}
|
\center\includegraphics[width=0.4\textwidth]{graphics/nmos-iv-schematic.png}
|
||||||
\caption{NMOS parametric test schematic}
|
\caption{NMOS parametric test schematic}
|
||||||
\label{fig:nmos-iv-schematic}
|
\label{fig:nmos-iv-schematic}
|
||||||
\end{figure}
|
\end{figure}
|
||||||
|
|
||||||
|
For the simulation, we set up our output to be the current at the positive terminal of the voltage source V2. We ran a DC sweep simulation of $V_{ds}$, while parametrically stepping through values of $V_{gs}$. The resulting plot is seen in figure \ref{fig:nmos-simulation-results}.
|
||||||
|
|
||||||
|
\begin{figure}[h]
|
||||||
|
\center\includegraphics[width=0.4\textwidth]{graphics/iv-curves.png}
|
||||||
|
\caption{Simulated relationship between input voltage and NMOS current}
|
||||||
|
\label{fig:nmos-simulation-results}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
There is clearly some resemblance between the Shockley model plot and the simulated results. One important difference is that while the curves flatten out completely in the Shockley model, the traces in the simulated NMOS continue to increase well into the saturation region.
|
||||||
|
|
||||||
|
|
||||||
|
\section{PMOS Characteristics}
|
||||||
|
While the source of an NMOS is tied to ground, the source of a PMOS is tied to power.
|
||||||
|
|
||||||
|
\begin{aside}{Voltage Naming Conventions}
|
||||||
|
The 'D' in $V_{DD}$ actually stands for "drain" despite connecting to the source of the PMOS. Furthermore, the 'S' in $V_{SS}$ does connect to the source pin of the NMOS. This naming convention dates back to a time when BJT logic was the norm. Specifically, NPN BJT logic. With NPNs, the collector is at the most positive voltage, hence the name $V_{CC}$ corresponding to power. When FET logic became popular, the naming scheme remained the same, but with drains and sources in place of collectors and emitters. Hence, $V_{DD}$ became the name for power, and $V_{SS}$ became the name for ground\cite{VddNaming}.
|
||||||
|
\end{aside}
|
||||||
|
|
||||||
|
PMOS transistors behave the same as NMOS, with the signs of all the voltages and currents flipped\cite{VLSICircuitsSystems}. It is also important to note that by changing the signs, the inequalities flip as well, meaning that quantities that must be greater than others for an NMOS are now required to be less, and vice versa. Therefore, the Shockley model for the current through a PMOS is
|
||||||
|
\begin{equation}
|
||||||
|
I_{ds} = \begin{cases}
|
||||||
|
0 & V_{gs} > V_t \\
|
||||||
|
-\beta \left(V_{gs} - V_t - \frac{V_{ds}}{2}\right) V_{ds} & V_{ds} > V_{dsat} \\
|
||||||
|
-\frac{\beta}{2}\left(V_{gs} - V_t\right)^2 & V_{ds} < V_{dsat}
|
||||||
|
\end{cases}.
|
||||||
|
\label{eqn:pmos-shockley-first-order}
|
||||||
|
\end{equation}
|
||||||
|
|
||||||
|
With this knowledge, we modified our Python script to model a PMOS. The Shockley model plot seen in figure \ref{fig:pmos-shockley} has the same shape as the plot for the NMOS, but rotated $180^\circ$ about the origin.
|
||||||
|
|
||||||
|
\begin{figure}[h]
|
||||||
|
\center\includegraphics[width=0.4\textwidth]{graphics/pmos-shockley-model.png}
|
||||||
|
\caption{Plot of Shockley first order model for a p-channel MOSFET}
|
||||||
|
\label{fig:pmos-shockley}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
Again, we compared the Shockley model against simulation results. In our schematic, the voltage source for $V_{gs}$ was tied to power instead of ground, and the voltage source for $V_{ds}$ was rotated $180^\circ$. Furthermore, the body pin of the PMOS was tied to power instead of ground. All of these changes are seen in the PMOS test schematic seen in figure \ref{fig:pmos-iv-schematic}.
|
||||||
|
|
||||||
|
\begin{figure}[h]
|
||||||
|
\center\includegraphics[width=0.4\textwidth]{graphics/pmos-iv-schematic.png}
|
||||||
|
\caption{PMOS parametric test schematic}
|
||||||
|
\label{fig:pmos-iv-schematic}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
Finally, we ran the simulation, this time measuring the current at the drain pin of the PMOS. We swept $V_{ds}$ from -2V to 0V with a step size of 0.1V, and parametrically swept $V_{gs}$ from -2.5V to 0V with a step size of 0.25V. The result was a similar plot to the NMOS simulation, again, rotated $180^\circ$ about the origin, as seen in figure \ref{fig:pmos-iv-simulation}. Another difference between the NMOS and PMOS simulations is the actual values of the current. While the shapes are similar, the PMOS current is less than the NMOS current for the same voltage inputs.
|
||||||
|
|
||||||
|
\begin{figure}[h]
|
||||||
|
\center\includegraphics[width=0.4\textwidth]{graphics/pmos-iv-2.png}
|
||||||
|
\caption{Simulated relationship between input voltages and PMOS current}
|
||||||
|
\label{fig:pmos-iv-simulation}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
\section{The Noise Margin}
|
\section{The Noise Margin}
|
||||||
The noise margin is the amount of noise that a CMOS circuit can withstand without compromising the operation of the circuit\cite{VLSI_System_Design}. This region is necessary to create a buffer that prevents small amounts of noise from switching the logic. There are two noise margins: noise margin high (NM\textsubscript{H}) and noise margin low (NM\textsubscript{L}).
|
The noise margin is the amount of noise that a CMOS circuit can withstand without compromising the operation of the circuit\cite{VLSISystemDesign}. This region is necessary to create a buffer that prevents small amounts of noise from switching the logic. There are two noise margins: noise margin high (NM\textsubscript{H}) and noise margin low (NM\textsubscript{L}).
|
||||||
|
|
||||||
The two noise margins are defined in terms of four key voltages on the voltage transfer curve (VTC) seen in figure \ref{fig:inv_vtc}: $V_\text{IL}$, $V_\text{IH}$, $V_\text{OL}$, and $V_\text{OH}$. $V_\text{IL}$ is defined as the lower input voltage where the slope of the VTC is -1, and $V_\text{IH}$ is defined as the upper input voltage meeting the same requirement. $V_\text{OL}$ is defined as the output voltage when the input voltage is equal to $V_\text{IH}$, and similarly, $V_\text{OH}$ is defined as the output voltage when the input voltage is equal to $V_\text{IL}$.
|
The two noise margins are defined in terms of four key voltages on the voltage transfer curve (VTC) seen in figure \ref{fig:inv_vtc}: $V_\text{IL}$, $V_\text{IH}$, $V_\text{OL}$, and $V_\text{OH}$. $V_\text{IL}$ is defined as the lower input voltage where the slope of the VTC is -1, and $V_\text{IH}$ is defined as the upper input voltage meeting the same requirement. $V_\text{OL}$ is defined as the output voltage when the input voltage is equal to $V_\text{IH}$, and similarly, $V_\text{OH}$ is defined as the output voltage when the input voltage is equal to $V_\text{IL}$.
|
||||||
|
|
||||||
\begin{figure}[H]
|
Practically speaking, when the input voltage is between $V_{OL}$ and $V_{IL}$ it is interpreted as logic low, and when the input voltage is between $V_{IH}$ and $V_{OH}$ it is interpreted as logic high. The region between $V_{IL}$ and $V_{IH}$ is the "undefined region", where the logic state is unclear \cite{VLSISystemDesign}.
|
||||||
|
|
||||||
|
\begin{figure}[h]
|
||||||
\center
|
\center
|
||||||
\includegraphics[width=0.4\textwidth]{graphics/inverter-noise-margin.png}
|
\includegraphics[width=0.4\textwidth]{graphics/inverter-noise-margin.png}
|
||||||
\caption{The VTC and its derivative for a CMOS inverter with $w_p=240$[nm] and $w_n=120$[nm]}
|
\caption{The VTC and its derivative for a CMOS inverter with $w_p=240$[nm] and $w_n=120$[nm]}
|
||||||
\label{fig:inv_vtc}.
|
\label{fig:inv_vtc}.
|
||||||
\end{figure}
|
\end{figure}
|
||||||
|
|
||||||
|
We pulled the VTC into a calculator tool, and used the definitions for the different voltages associated with the noise margin. Evaluating the expressions produced the values seen in table \ref{tbl:vtc-voltages}.
|
||||||
|
|
||||||
\begin{table}[H]
|
\begin{table}[H]
|
||||||
\center
|
\center
|
||||||
\caption{Important VTC voltages}
|
\caption{Important VTC voltages}
|
||||||
\begin{tabular}{c | c}
|
\begin{tabular}{c | c}
|
||||||
$V_\text{IL}$ & 2.357 \\
|
$V_\text{IL}$ & 2.357[V] \\
|
||||||
\hline
|
\hline
|
||||||
$V_\text{IH}$ & 3.531 \\
|
$V_\text{IH}$ & 3.531[V] \\
|
||||||
\hline
|
\hline
|
||||||
$V_\text{OL}$ & 0.683 \\
|
$V_\text{OL}$ & 0.683[V] \\
|
||||||
\hline
|
\hline
|
||||||
$V_\text{OH}$ & 4.118 \\
|
$V_\text{OH}$ & 4.118[V] \\
|
||||||
\end{tabular}
|
\end{tabular}
|
||||||
|
\label{tbl:vtc-voltages}
|
||||||
\end{table}
|
\end{table}
|
||||||
|
|
||||||
With these voltages now defined, the noise margin high was calculated using
|
With these voltages now defined, the noise margin high was calculated using
|
||||||
@ -111,9 +185,34 @@ and noise margin low was calculated with
|
|||||||
\begin{equation}
|
\begin{equation}
|
||||||
\text{NM}_\text{L} = V_\text{IL} - V_\text{OL}.
|
\text{NM}_\text{L} = V_\text{IL} - V_\text{OL}.
|
||||||
\end{equation}
|
\end{equation}
|
||||||
|
Therefore, $\text{NM}_\text{H} = 0.587$[V] and $\text{NM}_\text{L} = 1.674$[V]. Any voltage existing within the high noise margin would be interpreted as a logic 1 for this inverter, and any voltage existing within the low noise margin would be interpreted as a logic 0. By definition, the larger the noise margin, the more noise the signal can handle without affecting the logic state. Therefore, this inverter can handle more noise when in the logic low state than in the logic high state.
|
||||||
|
|
||||||
\section{Discussion}
|
The noise margin is not the same for all inverters, however. To see how the noise margin changes when the MOSFETs used are sized differently, a parametric test was conducted. The width of the NMOS was held constant at 120[nm], but the width of the PMOS was parametrically varied from 120[nm] to 360[nm] with 5 steps in a logarithmic sweep. The resulting VTC is seen in figure \ref{fig:inv-parametric-vtc}. This test produced six traces, where the inverter switched at different input voltages, depending on the width of the PMOS.
|
||||||
|
|
||||||
|
\begin{figure}[h]
|
||||||
|
\center\includegraphics[width=0.4\textwidth]{graphics/inv-parametric-nm-1.png}
|
||||||
|
\caption{Inverter VTC for different widths of the PMOS}
|
||||||
|
\label{fig:inv-parametric-vtc}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
Again, the VTC was pulled into a calculator tool to determine the derivative, and ultimately, the four voltages associated with the noise margin. Since there were six traces, the result was six derivatives, and a range of values for $V_{OH}$, $V_{IH}$, $V_{OL}$, and $V_{IL}$. The four important voltages were plotted as a function of the width of the PMOS $w_p$, seen in figure \ref{fig:inv-parametric-nm-voltages}.
|
||||||
|
|
||||||
|
\begin{figure}[h]
|
||||||
|
\center\includegraphics[width=0.4\textwidth]{graphics/inv-parametric-nm-4.png}
|
||||||
|
\caption{$V_{OH}$ (green), $V_{IH}$ (yellow), $V_{OL}$ (cyan), and $V_{IL}$ (red) as a function of $w_p$.}
|
||||||
|
\label{fig:inv-parametric-nm-voltages}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
Finally, the noise margins were calculated at each $w_p$ using the four already calculated voltages, and the results were plotted in figure \ref{fig:inv-parametric-nm}. The high noise margin shrinks as $w_p$ increases, while the low noise margin grows. However, the sum of $\text{NM}_\text{L}$ and $\text{NM}_\text{H}$ remains roughly constant, although there is a dip with a minimum where the two noise margins are the same. This means that although the individual noise margins change, the size of the undefined region between logic high and logic low remains about the same. This means that although the individual noise margins change, the size of the undefined region between logic high and logic low remains about the same. This means that although the individual noise margins change, the size of the undefined region between logic high and logic low remains about the same.
|
||||||
|
|
||||||
|
\begin{figure}[h]
|
||||||
|
\center\includegraphics[width=0.4\textwidth]{graphics/inv-parametric-nm-3.png}
|
||||||
|
\caption{Resulting $\text{NM}_\text{L}$ (yellow) and $\text{NM}_\text{H}$ (red).}
|
||||||
|
\label{fig:inv-parametric-nm}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
\section{Conclusion}
|
\section{Conclusion}
|
||||||
|
A common theme between analyzing the current through a MOSFET and analyzing the noise margin is the dependence on the physical properties of the MOSFETs.
|
||||||
|
|
||||||
|
\printbibliography
|
||||||
\end{document}
|
\end{document}
|
||||||
|
5
7th-Semester-Fall-2024/VLSI/labs/lab-1-2/lab-1-2.tex.blg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[0] Config.pm:307> INFO - This is Biber 2.19
|
||||||
|
[0] Config.pm:310> INFO - Logfile is 'lab-1-2.tex.blg'
|
||||||
|
[114] biber:340> INFO - === Tue Nov 12, 2024, 21:03:44
|
||||||
|
[239] Utils.pm:410> ERROR - Cannot find 'lab-1-2.tex.bcf'!
|
||||||
|
[239] Biber.pm:136> INFO - ERRORS: 1
|
19
7th-Semester-Fall-2024/VLSI/labs/lab-1-2/references.bib
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
@online{VLSISystemDesign,
|
||||||
|
title = {Noise Margin},
|
||||||
|
year = 2017,
|
||||||
|
url = {https://www.vlsisystemdesign.com/noise-margin/}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{VddNaming,
|
||||||
|
title = {What is the difference between VCC, VDD, VEE, VSS},
|
||||||
|
author = {Olin Lathrop},
|
||||||
|
year = 2011,
|
||||||
|
url = {https://electronics.stackexchange.com/questions/17382/what-is-the-difference-between-v-cc-v-dd-v-ee-v-ss}
|
||||||
|
}
|
||||||
|
|
||||||
|
@book{VLSICircuitsSystems,
|
||||||
|
title = {CMOS VLSI Design a Circuits and Systems Perspective, Fourth Edition},
|
||||||
|
year = 2011,
|
||||||
|
author = {Neil H. E. Weste, David Money Harris},
|
||||||
|
publisher = {Pearson}
|
||||||
|
}
|