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.
 
 
 
 
 
 

18 lines
519 B

  1. # 1 "/mnt/c/Projects/VSIM/SimulationCore2/CSharp/BasicInputs/RigSpecifications/CPowerVariables.f90"
  2. module CPowerVariables
  3. implicit none
  4. public
  5. ! variables
  6. Type::PowerType
  7. integer :: NumberOfgenerators
  8. real(8) :: GeneratorPowerRating
  9. real(8) :: MudPump1
  10. real(8) :: MudPump2
  11. real(8) :: CementPump
  12. real(8) :: RotaryTable
  13. real(8) :: Drawworks
  14. real(8) :: TopDrive
  15. End type PowerType
  16. ! Type(PowerType)::Power
  17. end module CPowerVariables