Bio lab 1
This commit is contained in:
parent
dc9297f899
commit
a8d26aeea6
BIN
8th-Semester-Spring-2025/Applying the Scientific Method_MHC.pdf
Normal file
BIN
8th-Semester-Spring-2025/Applying the Scientific Method_MHC.pdf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -3,17 +3,18 @@ import matplotlib.pyplot as plt
|
||||
|
||||
|
||||
def main():
|
||||
#x_axis = np.linspace(-5, 5, 100)
|
||||
f_s = 3
|
||||
f_s = 6
|
||||
T_s = 1/f_s
|
||||
t = np.arange(-1, 1, T_s)
|
||||
|
||||
x_axis = np.arange(-5, 5, T_s)
|
||||
x_axis_2 = np.linspace(-5, 5, len(x_axis))
|
||||
y_axis = x_axis**2
|
||||
f = 3
|
||||
omega = 2*np.pi*f
|
||||
signal = np.cos(omega*t)
|
||||
|
||||
plt.stem(x_axis, y_axis)
|
||||
plt.stem(t, signal)
|
||||
plt.show()
|
||||
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
@ -13,7 +13,7 @@ Open VS Code, and click File$\to$Open Folder.
|
||||
|
||||

|
||||
|
||||
Then, create and open a folder for your Python example files. This will be the folder we work in for all exercises. I recommend that you use a separate folder for your lab-related Python files, maybe even a separate folder for each lab. Once you click "Select Folder" you may get a pop-up asking you if you trust this folder. Its your folder, so you can trust it no problem.
|
||||
Then, create and open a folder for your Python example files. This will be the folder we work in for all exercises. I recommend that you use a separate folder for your lab-related Python files, maybe even a separate folder for each lab. Once you click "Select Folder" you may get a pop-up asking you if you trust this folder. It's your folder, so you can trust it no problem.
|
||||
|
||||

|
||||
|
||||
|
Binary file not shown.
@ -0,0 +1,15 @@
|
||||
# Frontiers Topic Selection
|
||||
## Elise Heim & Aidan Sharpe
|
||||
|
||||
## Coding for Polymer-Based Data Storage
|
||||
"Coding for Polymer-Based Data Storage" by Pattabiraman et al. was published in the August, 2023 edition of the "IEEE transactions on information theory." Synthetic polymer data storage is a developing archival data storage technique that involves encoding binary strings using designed molecules with distinct masses. The molecules are linked using phosphate bonds to form a polymer. The data is read back using a tandem spectrometer. The authors of Pattabiraman et al. develop the "first known family of codes that allows for both unique string reconstruction and correction of multiple mass errors." Error correction is important to polymer data storage due to high read-error rates. The authors of "Insertion and Deletion Correction in Polymer-Based Data Storage" continue the research by Pattabiraman et al. by analyzing the robustness of the original approach and by proposing new codes in the cases where the original are not robust.
|
||||
|
||||
## Sustainable Cloud Archival Storage in Glass
|
||||
The article "Project Silica: sustainable cloud archival storage in glass" was published in the proceedings of the SPIE Conference "Frontiers in Ultrafast Optics: Biomedical, Scientific, and Industrial Applications XXIV" in March 2024. The goal of Project Silica is to develop an archival storage technique that does not degrade over time by storing the data directly in the crystal lattice of quartz glass. The authors claim that quartz glass is "an extremely resilient media with virtually unlimited lifetime." The technology lends itself quite well to archival storage, because the data writing technique permanently modifies the structure of the glass in a way that could preserve data for over 1000 years. Due to its permenant modification, the fused-silica is considered a write-once-read-many (WORM) media. Data is stored in "voxels", which can encode 3-4 bits. By arranging these voxels in the x-y plane, and then stacking hundreds of planes, terabites of data can be stored in a square about the size of a DVD.
|
||||
|
||||
## Compliant Foam Anvils for Equestrian Helmets
|
||||
The article "Could a Compliant Foam Anvil Characterize the Biofidelic Impact Response of Equestrian Helmets?" from ASME's Journal of Biomedical Engineering takes into account the ground stiffness at different racetrack conditions to better test horseback riding helmets. Laboratory experiments consisted of helmeted forms being dropped onto natural turf using a drop rig. Multiple pieces of different synthetic foam under the turf were used. The experiments showed that the magnitudes and durations of the linear and rotational accelerations for helmeted impacts to the turf were similar to those in concussive sports falls and collisions.
|
||||
(The article is from 2020, but I still think that it is interesting.)
|
||||
|
||||
## Inertial Sensors for Monitoring Equine Locomotion
|
||||
The article "Applying Multi-Purpose Commercial Inertial Sensors for Monitoring Equine Locomotion in Equestrian Training" from the January 2025 Edition of Sensors introduces using commercial inertial sensor units attached to a horse’s limbs to measure biomechanical load. The approach provides insights into how specific training and environmental factors can effect competitive horses. This can be utilized to optimize their exercise for specific equestrian sports and overall benefit the horses' welfare and long-term health.
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user