|
| 1 | + |
| 2 | +import sys |
| 3 | +if sys.version_info >= (3, 8): |
| 4 | + from typing import Protocol |
| 5 | +else: |
| 6 | + from typing_extensions import Protocol |
| 7 | + |
| 8 | +import java.util |
| 9 | +import jpype |
| 10 | +import jneqsim.blackoil.io |
| 11 | +import jneqsim.thermo.system |
| 12 | +import typing |
| 13 | + |
| 14 | + |
| 15 | + |
| 16 | +class BlackOilConverter: |
| 17 | + def __init__(self): ... |
| 18 | + @staticmethod |
| 19 | + def convert(systemInterface: jneqsim.thermo.system.SystemInterface, double: float, doubleArray: typing.Union[typing.List[float], jpype.JArray], double3: float, double4: float) -> 'BlackOilConverter.Result': ... |
| 20 | + class Result: |
| 21 | + pvt: 'BlackOilPVTTable' = ... |
| 22 | + blackOilSystem: 'SystemBlackOil' = ... |
| 23 | + rho_o_sc: float = ... |
| 24 | + rho_g_sc: float = ... |
| 25 | + rho_w_sc: float = ... |
| 26 | + bubblePoint: float = ... |
| 27 | + def __init__(self): ... |
| 28 | + |
| 29 | +class BlackOilFlash: |
| 30 | + def __init__(self, blackOilPVTTable: 'BlackOilPVTTable', double: float, double2: float, double3: float): ... |
| 31 | + def flash(self, double: float, double2: float, double3: float, double4: float, double5: float) -> 'BlackOilFlashResult': ... |
| 32 | + |
| 33 | +class BlackOilFlashResult: |
| 34 | + O_std: float = ... |
| 35 | + Gf_std: float = ... |
| 36 | + W_std: float = ... |
| 37 | + V_o: float = ... |
| 38 | + V_g: float = ... |
| 39 | + V_w: float = ... |
| 40 | + rho_o: float = ... |
| 41 | + rho_g: float = ... |
| 42 | + rho_w: float = ... |
| 43 | + mu_o: float = ... |
| 44 | + mu_g: float = ... |
| 45 | + mu_w: float = ... |
| 46 | + Rs: float = ... |
| 47 | + Rv: float = ... |
| 48 | + Bo: float = ... |
| 49 | + Bg: float = ... |
| 50 | + Bw: float = ... |
| 51 | + def __init__(self): ... |
| 52 | + |
| 53 | +class BlackOilPVTTable: |
| 54 | + def __init__(self, list: java.util.List['BlackOilPVTTable.Record'], double: float): ... |
| 55 | + def Bg(self, double: float) -> float: ... |
| 56 | + def Bo(self, double: float) -> float: ... |
| 57 | + def Bw(self, double: float) -> float: ... |
| 58 | + def Rs(self, double: float) -> float: ... |
| 59 | + def RsEffective(self, double: float) -> float: ... |
| 60 | + def Rv(self, double: float) -> float: ... |
| 61 | + def getBubblePointP(self) -> float: ... |
| 62 | + def mu_g(self, double: float) -> float: ... |
| 63 | + def mu_o(self, double: float) -> float: ... |
| 64 | + def mu_w(self, double: float) -> float: ... |
| 65 | + class Record: |
| 66 | + p: float = ... |
| 67 | + Rs: float = ... |
| 68 | + Bo: float = ... |
| 69 | + mu_o: float = ... |
| 70 | + Bg: float = ... |
| 71 | + mu_g: float = ... |
| 72 | + Rv: float = ... |
| 73 | + Bw: float = ... |
| 74 | + mu_w: float = ... |
| 75 | + def __init__(self, double: float, double2: float, double3: float, double4: float, double5: float, double6: float, double7: float, double8: float, double9: float): ... |
| 76 | + |
| 77 | +class SystemBlackOil: |
| 78 | + def __init__(self, blackOilPVTTable: BlackOilPVTTable, double: float, double2: float, double3: float): ... |
| 79 | + def copyShallow(self) -> 'SystemBlackOil': ... |
| 80 | + def flash(self) -> BlackOilFlashResult: ... |
| 81 | + def getBg(self) -> float: ... |
| 82 | + def getBo(self) -> float: ... |
| 83 | + def getBw(self) -> float: ... |
| 84 | + def getGasDensity(self) -> float: ... |
| 85 | + def getGasReservoirVolume(self) -> float: ... |
| 86 | + def getGasStdTotal(self) -> float: ... |
| 87 | + def getGasViscosity(self) -> float: ... |
| 88 | + def getOilDensity(self) -> float: ... |
| 89 | + def getOilReservoirVolume(self) -> float: ... |
| 90 | + def getOilStdTotal(self) -> float: ... |
| 91 | + def getOilViscosity(self) -> float: ... |
| 92 | + def getPressure(self) -> float: ... |
| 93 | + def getRs(self) -> float: ... |
| 94 | + def getRv(self) -> float: ... |
| 95 | + def getTemperature(self) -> float: ... |
| 96 | + def getWaterDensity(self) -> float: ... |
| 97 | + def getWaterReservoirVolume(self) -> float: ... |
| 98 | + def getWaterStd(self) -> float: ... |
| 99 | + def getWaterViscosity(self) -> float: ... |
| 100 | + def setPressure(self, double: float) -> None: ... |
| 101 | + def setStdTotals(self, double: float, double2: float, double3: float) -> None: ... |
| 102 | + def setTemperature(self, double: float) -> None: ... |
| 103 | + |
| 104 | + |
| 105 | +class __module_protocol__(Protocol): |
| 106 | + # A module protocol which reflects the result of ``jp.JPackage("jneqsim.blackoil")``. |
| 107 | + |
| 108 | + BlackOilConverter: typing.Type[BlackOilConverter] |
| 109 | + BlackOilFlash: typing.Type[BlackOilFlash] |
| 110 | + BlackOilFlashResult: typing.Type[BlackOilFlashResult] |
| 111 | + BlackOilPVTTable: typing.Type[BlackOilPVTTable] |
| 112 | + SystemBlackOil: typing.Type[SystemBlackOil] |
| 113 | + io: jneqsim.blackoil.io.__module_protocol__ |
0 commit comments