Package neqsim.process.fielddevelopment.tieback
package neqsim.process.fielddevelopment.tieback
Tie-back analysis package for field development screening.
This package provides tools for evaluating subsea tie-back options to existing host facilities. Tie-backs are a common development concept for marginal fields where building standalone infrastructure is not economic.
Key Classes
HostFacility- Represents an existing host platform or FPSO with spare capacityTiebackOption- A specific tie-back configuration with associated costs and constraintsTiebackAnalyzer- Evaluates and ranks tie-back optionsTiebackReport- Comprehensive screening report
Screening Workflow
- Define the discovery using
FieldConcept - Create a list of potential
HostFacilityobjects with spare capacity - Use
TiebackAnalyzerto evaluate each option - Review the
TiebackReportto compare options by NPV, distance, and flow assurance
Example Usage
// Define discovery
FieldConcept discovery = FieldConcept.gasTieback("Marginal Gas", 25.0, 2, 1.5);
// Define potential hosts
List<HostFacility> hosts = Arrays.asList(
HostFacility.builder("Platform A").location(61.5, 2.3).waterDepth(110).spareGasCapacity(3.0)
.build(),
HostFacility.builder("FPSO B").location(61.8, 2.1).waterDepth(350).spareGasCapacity(5.0)
.build());
// Analyze options
TiebackAnalyzer analyzer = new TiebackAnalyzer();
TiebackReport report = analyzer.analyze(discovery, hosts);
// Review results
System.out.println(report.getSummary());
TiebackOption best = report.getBestOption();
- Version:
- 1.0
- Author:
- ESOL
-
ClassDescriptionRepresents an existing host facility with available capacity for tie-backs.Builder for HostFacility.Type of host facility.Analyzes tie-back options for connecting satellite fields to host facilities.Screening result for quick tieback evaluation.Represents a specific tie-back option evaluated by the TiebackAnalyzer.Report containing tieback analysis results for a discovery.