Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TopDrive_TorqueLimit.f90 409 B

1 year ago
12345678910111213141516171819202122232425
  1. subroutine TopDrive_TorqueLimit
  2. Use equipments_PowerLimit
  3. Use TopDrive_VARIABLES
  4. IMPLICIT NONE
  5. ! Top Drive Malfunction ----> Drive Motor Limit Overide
  6. if ( TDS%OverideTorqueLimitMalf==1 ) then
  7. return
  8. end if
  9. IF (TDS%ia_ref>TDS%ia_ref_limit) THEN
  10. TDS%ia_ref = TDS%ia_ref_limit
  11. END IF
  12. end subroutine