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.

RTable_StartUp.f90 1014 B

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