Advertisement
Guest User

Tuned Controller

a guest
Oct 15th, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. figure_pd_lab_response_tuned = figure();
  2. plot(remote_lab_pd_controller_tuned_time, remote_lab_pd_controller_tuned_tank_2_adjusted) % plot the data using the variables above
  3. title('Remote Lab: Tuned PD Controller Step Response')
  4. xlabel('Time (s)')
  5. ylabel('Tank 2 Water Level (mm)')
  6. axis([0 100 0 70])
  7.  
  8. % pd controller valve:
  9. figure_pd_lab_valve_tuned = figure();
  10. plot(remote_lab_pd_controller_tuned_time, remote_lab_pd_controller_tuned_valve) % plot the data using the variables above
  11. title('Remote Lab: Tuned PD Controller Valve %')
  12. xlabel('Time (s)')
  13. ylabel('Valve (%)')
  14. axis([0 100 0 100])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement