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.
 
 
 
 
 
 

43 lines
1.0 KiB

  1. subroutine RTable_StartUp
  2. use CDrillingConsoleVariables
  3. use RTable_VARIABLES
  4. IMPLICIT NONE
  5. !RTable%=0.
  6. RTable%Inertia_Moment = 23.261341e0 ! 23.261341 [kg.m^2] = 552 [lb.ft^2]
  7. RTable%J_coef = RTable%Inertia_Moment+(1.e0*(RTable%Inertia_Moment)) ! [kg.m^2]???????????
  8. RTable%String_JCoef = 0.e0 !???????????????
  9. RTable%Mech_Efficiency = 0.93e0
  10. !RTable%ConstLoad = 2000.e0 ![lb.in]
  11. !RTable%ConstLoad = 0.112984829e0*RTable%ConstLoad ![N.m]
  12. RTable%Torque = 0.0e0
  13. RTable%High_Conv_Ratio = 4.825e0
  14. RTable%Low_Conv_Ratio = 7.31e0
  15. RTable%Conv_Ratio = RTable%Low_Conv_Ratio
  16. RTable%time_step = 0.1e0
  17. RTable%w = 0.e0
  18. RTable%w_new = 0.e0
  19. RTable%K_throttle = 0
  20. RT_OldTransMode = RTTransmissionLever
  21. call RTable_OffMode
  22. end subroutine RTable_StartUp