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.
 
 
 
 
 
 

32 lines
949 B

  1. subroutine TopDrive_StartUp
  2. Use TopDrive_VARIABLES
  3. IMPLICIT NONE
  4. TDS%MaxRPM = 200.d0 ![RPM] !??????? motaghayere voroudi
  5. TDS%MaxTorque = 1500.d0 ![ft.lbf] !??????? motaghayere voroudi
  6. TDS%time_step = 0.10d0 ![s]
  7. TDS%Inertia_Moment = 23.261341d0 ! 23.261341 [kg.m^2] = 552 [lb.ft^2]
  8. TDS%J_coef = TDS%Inertia_Moment+(1.d0*(TDS%Inertia_Moment)) ! [kg.m^2]???????????
  9. TDS%String_JCoef = 0.d0
  10. !TDS%Mech_Efficiency = 0.930d0
  11. TDS%Torque = 0.d0
  12. TDS%Speed = 0.d0
  13. TDS%OperationFaultLed = 0
  14. TDS%OldPowerMode = 0
  15. TDS%MotorFaileMalf = 0
  16. TDS%High_Conv_Ratio = 4.825d0
  17. TDS%Low_Conv_Ratio = 7.310d0
  18. TDS%Conv_Ratio = TDS%High_Conv_Ratio
  19. Call TopDrive_OffMode
  20. end subroutine