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.i90 793 B

1 year ago
1 year ago
1 year ago
1234567891011121314151617181920212223242526
  1. # 1 "/home/admin/SimulationCore2/CSharp/BasicInputs/Geology/CReservoirVariables.f90"
  2. module CReservoirVariables
  3. implicit none
  4. public
  5. !constants
  6. ! integer :: Gas_FluidType = 0
  7. ! integer :: Oil_FluidType = 1
  8. ! integer :: Water_FluidType = 2
  9. Type :: ReservoirType
  10. ! variables
  11. integer :: FormationNo
  12. real(8) :: FormationTop
  13. ! real(8) :: PressureGradient
  14. real(8) :: FormationPermeability
  15. ! real(8) :: GeothermalGradient
  16. ! integer :: FluidType
  17. ! real(8) :: FluidGradient
  18. ! real(8) :: FluidViscosity
  19. logical :: InactiveInflux
  20. logical :: IsAutoMigrationRateSelected
  21. real(8) :: AutoMigrationRate
  22. logical :: MakeKickSinglePacket
  23. End type ReservoirType
  24. Type(ReservoirType)::Reservoir
  25. end module CReservoirVariables