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.

CReservoirVariables.f90 642 B

1 year ago
12345678910111213141516171819202122232425
  1. module CReservoirVariables
  2. implicit none
  3. public
  4. !constants
  5. integer :: Gas_FluidType = 0
  6. integer :: Oil_FluidType = 1
  7. integer :: Water_FluidType = 2
  8. ! variables
  9. integer :: FormationNo
  10. real(8) :: FormationTop
  11. real(8) :: PressureGradient
  12. real(8) :: FormationPermeability
  13. real(8) :: GeothermalGradient
  14. integer :: FluidType
  15. real(8) :: FluidGradient
  16. real(8) :: FluidViscosity
  17. logical :: InactiveInflux
  18. logical :: IsAutoMigrationRateSelected
  19. real(8) :: AutoMigrationRate
  20. logical :: MakeKickSinglePacket
  21. contains
  22. end module CReservoirVariables