diff --git a/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.log b/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.log index bdc9c46..b011b35 100644 --- a/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.log +++ b/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.log @@ -1,24 +1,30 @@ Circuit: * C:\users\sharpe\Documents\Rowan\Rowan-Classes\6th-Semester-Spring-2024\SysCon\Final Project\Draft1.asc -Limiting rise time of source v2 to 1.6e-07 -Limiting fall time of source v2 to 1.6e-07 +Instance "m1": Length shorter than recommended for a level 1 MOSFET. +Instance "m1": Width narrower than recommended for a level 1 MOSFET. +Instance "m2": Length shorter than recommended for a level 1 MOSFET. +Instance "m2": Width narrower than recommended for a level 1 MOSFET. +Instance "m3": Length shorter than recommended for a level 1 MOSFET. +Instance "m3": Width narrower than recommended for a level 1 MOSFET. +Instance "m4": Length shorter than recommended for a level 1 MOSFET. +Instance "m4": Width narrower than recommended for a level 1 MOSFET. Direct Newton iteration for .op point succeeded. -Date: Tue Apr 16 21:35:31 2024 -Total elapsed time: 843.348 seconds. +Date: Tue Sep 17 10:53:42 2024 +Total elapsed time: 0.138 seconds. tnom = 27 temp = 27 method = modified trap -totiter = 114326713 -traniter = 114326705 -tranpoints = 33186575 -accept = 24915937 -rejected = 8270638 -matrix size = 6 +totiter = 2089 +traniter = 2082 +tranpoints = 1042 +accept = 1042 +rejected = 0 +matrix size = 4 fillins = 0 solver = Normal -Avg thread counts: 1.0/1.0/1.0/1.0 -Matrix Compiler1: 146 bytes object code size 0.3/0.2/[0.2] -Matrix Compiler2: 366 bytes object code size 0.2/0.3/[0.2] +Avg thread counts: 1.5/1.9/1.9/1.5 +Matrix Compiler1: 136 bytes object code size 0.3/0.3/[0.2] +Matrix Compiler2: off [0.2]/0.3/0.2 diff --git a/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.op.raw b/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.op.raw index 1480ebd..31b086c 100644 Binary files a/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.op.raw and b/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.op.raw differ diff --git a/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.raw b/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.raw new file mode 100644 index 0000000..e43a07b Binary files /dev/null and b/6th-Semester-Spring-2024/SysCon/Final Project/Draft1.raw differ diff --git a/7th-Semester-Fall-2024/ECOMMS/Satellite Communications -- Timothy Pratt, Jeremy E_ Allnutt -- 3rd Edition, 2020 -- Wiley-Blackwell -- 1119482178 -- 041fd1ad3252d895569ad6a8cc256208 -- Anna’s Archive.pdf b/7th-Semester-Fall-2024/ECOMMS/Satellite Communications -- Timothy Pratt, Jeremy E_ Allnutt -- 3rd Edition, 2020 -- Wiley-Blackwell -- 1119482178 -- 041fd1ad3252d895569ad6a8cc256208 -- Anna’s Archive.pdf new file mode 100644 index 0000000..9b21fc4 Binary files /dev/null and b/7th-Semester-Fall-2024/ECOMMS/Satellite Communications -- Timothy Pratt, Jeremy E_ Allnutt -- 3rd Edition, 2020 -- Wiley-Blackwell -- 1119482178 -- 041fd1ad3252d895569ad6a8cc256208 -- Anna’s Archive.pdf differ diff --git a/7th-Semester-Fall-2024/ECOMMS/Satellite_Communication_Engineering.pdf b/7th-Semester-Fall-2024/ECOMMS/Satellite_Communication_Engineering.pdf new file mode 100644 index 0000000..e16af71 Binary files /dev/null and b/7th-Semester-Fall-2024/ECOMMS/Satellite_Communication_Engineering.pdf differ diff --git a/7th-Semester-Fall-2024/ECOMMS/labs/lab1/part1.py b/7th-Semester-Fall-2024/ECOMMS/labs/lab1/part1.py new file mode 100644 index 0000000..2c0372c --- /dev/null +++ b/7th-Semester-Fall-2024/ECOMMS/labs/lab1/part1.py @@ -0,0 +1,21 @@ +import numpy as np +import sounddevice as sd +import matplotlib.pyplot as plt + +def normalize_signal(signal): + min_amp = np.min(signal) + normalized_signal = signal - min_amp + max_amp = np.max(normalized_signal) + normalized_signal *= 2.0/max_amp + normalized_signal -= 1 + return normalized_signal + +snr = 10 + +f = 466.16 +f_s = 16000 + +t = np.arange(0,0.01,1/f_s) +s = 0.5 * np.sin(2*np.pi*f*t) + +sd.play(normalize_signal(s), samplerate=f_s, blocking=True) diff --git a/7th-Semester-Fall-2024/Ethical-Hacking/.~lock.Week2-3 Ethical Hacking in ECE.pptx# b/7th-Semester-Fall-2024/Ethical-Hacking/.~lock.Week2-3 Ethical Hacking in ECE.pptx# new file mode 100644 index 0000000..e63e36a --- /dev/null +++ b/7th-Semester-Fall-2024/Ethical-Hacking/.~lock.Week2-3 Ethical Hacking in ECE.pptx# @@ -0,0 +1 @@ +,sharpe,dhcp-10-39-26-171,23.09.2024 21:46,file:///home/sharpe/.var/app/org.libreoffice.LibreOffice/config/libreoffice/4; \ No newline at end of file diff --git a/7th-Semester-Fall-2024/Ethical-Hacking/Week2-3 Ethical Hacking in ECE.pptx b/7th-Semester-Fall-2024/Ethical-Hacking/Week2-3 Ethical Hacking in ECE.pptx new file mode 100644 index 0000000..15d0797 Binary files /dev/null and b/7th-Semester-Fall-2024/Ethical-Hacking/Week2-3 Ethical Hacking in ECE.pptx differ diff --git a/7th-Semester-Fall-2024/Ethical-Hacking/assignments/Assignment1.docx b/7th-Semester-Fall-2024/Ethical-Hacking/assignments/Assignment1.docx new file mode 100644 index 0000000..46a453f Binary files /dev/null and b/7th-Semester-Fall-2024/Ethical-Hacking/assignments/Assignment1.docx differ diff --git a/7th-Semester-Fall-2024/Ethical-Hacking/kali-linux-2024.2-virtualbox-amd64.7z.torrent b/7th-Semester-Fall-2024/Ethical-Hacking/kali-linux-2024.2-virtualbox-amd64.7z.torrent deleted file mode 100644 index e03353d..0000000 Binary files a/7th-Semester-Fall-2024/Ethical-Hacking/kali-linux-2024.2-virtualbox-amd64.7z.torrent and /dev/null differ diff --git a/7th-Semester-Fall-2024/IoT-Hardware/assignments/Assignment3.docx b/7th-Semester-Fall-2024/IoT-Hardware/assignments/Assignment3.docx new file mode 100644 index 0000000..0923346 Binary files /dev/null and b/7th-Semester-Fall-2024/IoT-Hardware/assignments/Assignment3.docx differ diff --git a/7th-Semester-Fall-2024/IoT-Hardware/assignments/IoT-In-The-Wild.docx b/7th-Semester-Fall-2024/IoT-Hardware/assignments/IoT-In-The-Wild.docx new file mode 100644 index 0000000..48ffc94 Binary files /dev/null and b/7th-Semester-Fall-2024/IoT-Hardware/assignments/IoT-In-The-Wild.docx differ diff --git a/7th-Semester-Fall-2024/IoT-Hardware/assignments/IoT-In-The-Wild.pptx b/7th-Semester-Fall-2024/IoT-Hardware/assignments/IoT-In-The-Wild.pptx new file mode 100644 index 0000000..55d34a8 Binary files /dev/null and b/7th-Semester-Fall-2024/IoT-Hardware/assignments/IoT-In-The-Wild.pptx differ diff --git a/7th-Semester-Fall-2024/IoT-Hardware/assignments/NIST.IR.8259A_IoT Device Cybersecurity Capability Core Baseline.pdf b/7th-Semester-Fall-2024/IoT-Hardware/assignments/NIST.IR.8259A_IoT Device Cybersecurity Capability Core Baseline.pdf new file mode 100644 index 0000000..65c818b Binary files /dev/null and b/7th-Semester-Fall-2024/IoT-Hardware/assignments/NIST.IR.8259A_IoT Device Cybersecurity Capability Core Baseline.pdf differ