Class InjectionWellModel.InjectionZone
java.lang.Object
neqsim.process.fielddevelopment.reservoir.InjectionWellModel.InjectionZone
- All Implemented Interfaces:
Serializable
- Enclosing class:
InjectionWellModel
Represents an injection zone in a multi-zone injection well.
- Version:
- 1.0
- Author:
- ESOL
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptiondoubleTVD to zone midpoint (m).doubleFracture pressure (bara).booleanWhether this is the target zone for injection.Zone name.doubleFormation permeability (mD).doubleReservoir pressure (bara).private static final longdoubleSkin factor (dimensionless).doubleFormation thickness (m). -
Constructor Summary
ConstructorsConstructorDescriptionInjectionZone(String name, double depth, double reservoirPressure, double permeability, double thickness, double fracturePressure) Creates an injection zone. -
Method Summary
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
name
Zone name. -
depth
public double depthTVD to zone midpoint (m). -
reservoirPressure
public double reservoirPressureReservoir pressure (bara). -
permeability
public double permeabilityFormation permeability (mD). -
thickness
public double thicknessFormation thickness (m). -
skinFactor
public double skinFactorSkin factor (dimensionless). -
fracturePressure
public double fracturePressureFracture pressure (bara). -
isTargetZone
public boolean isTargetZoneWhether this is the target zone for injection.
-
-
Constructor Details
-
InjectionZone
public InjectionZone(String name, double depth, double reservoirPressure, double permeability, double thickness, double fracturePressure) Creates an injection zone.- Parameters:
name- zone namedepth- TVD to zone midpoint (m)reservoirPressure- reservoir pressure (bara)permeability- formation permeability (mD)thickness- formation thickness (m)fracturePressure- fracture pressure (bara)
-