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.
 
 
 
 
 
 

33 lines
663 B

  1. module CDrillWatchVariables
  2. implicit none
  3. public
  4. ! Input vars
  5. ! Output vars
  6. real(8) :: Depth
  7. real(8) :: BitPosition
  8. real(8) :: HookLoad
  9. real(8) :: WeightOnBit
  10. real(8) :: RPM
  11. real(8) :: ROP
  12. real(8) :: Torque
  13. real(8) :: PumpPressure
  14. real(8) :: SPM1
  15. real(8) :: SPM2
  16. !real(8) :: SPM3
  17. real(8) :: CasingPressure
  18. real(8) :: PercentFlow
  19. real(8) :: PitGainLose
  20. real(8) :: PitVolume
  21. real(8) :: KillMudVolume
  22. real(8) :: TripTankVolume
  23. real(8) :: MudWeightIn
  24. real(8) :: FillVolume
  25. real(8) :: MudWeightOut
  26. contains
  27. end module CDrillWatchVariables