Most of week-9 bio, start of weapon systems homework 8

This commit is contained in:
Adog64 2025-03-31 15:02:57 -04:00
parent 3ce102d959
commit 2230168412
10 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,33 @@
---
title: BIOL01113 Vocabulary Assignment 9
author: Aidan Sharpe
date: March 31st, 2025
geometry: margin=1in
---
## Reception
The detection of a stimulus by receptor cells.
## Sensation
Perception of a stimulus by the cerebral cortex.
## Proprioception
The detection of the stretching of tendons and movement of ligaments.
## Olfactory
Having to do with the reception of smell.
## Gustatory
Having to do with the reception of taste.
## Auditory
Having to do with the reception of sound.
## Tactile
Having to do with mechanical reception, typically by cutaneous receptors.
## Retina
The inner most layer of eye cells, responsible for sensing light.
## Cochlear Membrane
The membrane responsible for the reception of sound.

View File

@ -0,0 +1,27 @@
import numpy as np
import scipy as sp
import matplotlib.pyplot as plt
def erp():
pass
def watts(db):
return np.pow(10, db/10)
def main():
v_t = 300
v_m = 800
angle_final = np.radians(-20)
range_max = 80E3
erp = watts(50)
t_go
# OLD SYSTEM: MCG, active
# NEW SYSTEM: HAW, semi-active
if __name__ == "__main__":
main()

View File

@ -0,0 +1,16 @@
import numpy as np
def main():
specific_impulse = 200
m_burnout = 300
v_burnout = 1000
g = 9.81
m_launch = m_burnout * np.exp(v_burnout / (specific_impulse*g))
m_initial = m_launch - m_burnout
print(m_initial)
if __name__ == "__main__":
main()