Simulation Core
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

25 satır
642 B

  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