Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- # 1 "/home/admin/SimulationCore2/CSharp/BasicInputs/Geology/CReservoirVariables.f90"
- module CReservoirVariables
- implicit none
- public
- !constants
- ! integer :: Gas_FluidType = 0
- ! integer :: Oil_FluidType = 1
- ! integer :: Water_FluidType = 2
-
- Type :: ReservoirType
- ! variables
- integer :: FormationNo
- real(8) :: FormationTop
- ! real(8) :: PressureGradient
- real(8) :: FormationPermeability
- ! real(8) :: GeothermalGradient
- ! integer :: FluidType
- ! real(8) :: FluidGradient
- ! real(8) :: FluidViscosity
- logical :: InactiveInflux
- logical :: IsAutoMigrationRateSelected
- real(8) :: AutoMigrationRate
- logical :: MakeKickSinglePacket
- End type ReservoirType
- Type(ReservoirType)::Reservoir
- end module CReservoirVariables
|