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.
 
 
 
 
 
 

14 lines
339 B

  1. module CPowerVariables
  2. implicit none
  3. public
  4. ! variables
  5. integer :: NumberOfgenerators
  6. real(8) :: GeneratorPowerRating
  7. real(8) :: MudPump1
  8. real(8) :: MudPump2
  9. real(8) :: CementPump
  10. real(8) :: RotaryTable
  11. real(8) :: Drawworks
  12. real(8) :: TopDrive
  13. contains
  14. end module CPowerVariables