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.
 
 
 
 
 
 

36 lines
876 B

  1. # 1 "/home/admin/SimulationCore2/CSharp/Equipments/DrillWatch/CDrillWatchVariables.f90"
  2. module CDrillWatchVariables
  3. implicit none
  4. public
  5. ! Input vars
  6. Type, Public::DrillingWatchType
  7. ! Output vars
  8. real(8) :: Depth
  9. real(8) :: BitPosition
  10. real(8) :: HookLoad
  11. real(8) :: WeightOnBit
  12. real(8) :: RPM
  13. real(8) :: ROP
  14. real(8) :: Torque
  15. real(8) :: PumpPressure
  16. real(8) :: SPM1
  17. real(8) :: SPM2
  18. !real(8) :: SPM3
  19. real(8) :: CasingPressure
  20. real(8) :: PercentFlow
  21. real(8) :: PitGainLose
  22. real(8) :: PitVolume
  23. real(8) :: KillMudVolume
  24. real(8) :: TripTankVolume
  25. real(8) :: MudWeightIn
  26. real(8) :: FillVolume
  27. real(8) :: MudWeightOut
  28. End Type DrillingWatchType
  29. end module CDrillWatchVariables