Summary
Summary Georgia Institute Of TechnologyCS 6440RocketPIDStudent.py
- Course
- Cs 6440
- Institution
- Georiga Institute Of Technology
# Optimize your PID parameters here: pressure_tau_p = 0.1 pressure_tau_d = 1.0 rocket_tau_p = 2.0 rocket_tau_i = 12 rocket_tau_d = 0.005 def pressure_pd_solution(delta_t, current_pressure, data) : """Student solution to maintain LOX pressure to the turbopump at a level of 100. Args: delta_t (float)...
[Show more]