mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1506 Add pseudocode for COMPDAT export of total transmissibility
This commit is contained in:
parent
c1f3dff613
commit
ba2f9c335c
@ -170,6 +170,35 @@ bool RifFractureExportTools::exportFracturesToEclipseDataInputFile(const QString
|
||||
}
|
||||
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RifFractureExportTools::exportWellPathFracturesToEclipseDataInputFile(const QString& fileName,
|
||||
const RimWellPath* wellPath,
|
||||
const RimEclipseCase* caseToApply)
|
||||
{
|
||||
|
||||
// Loop over fractures in well path (all)
|
||||
// Loop over stimplancells
|
||||
// if cell Is Contributing cond > 0
|
||||
// Calculate Matrix To Fracture Trans
|
||||
// Add to condenser
|
||||
// Loop over stimplanecells (i, j)
|
||||
// if cell Is Contributing cond > 0
|
||||
// Calculate trans to neighbor (+i, +j )
|
||||
// Add to condenser
|
||||
// Find well cells (Perforated Well Path, Radius, Positioned Fracture)
|
||||
// For each well cell
|
||||
// Find path intersection
|
||||
// Use LinT + 1/2 radialT on each end if endpoints are inside cell
|
||||
// Add to condenser
|
||||
// Add eclipse cell transmissibilities to a map <eclipsecell index, map<fractureptr, transmissibility> >
|
||||
// For all transmissibilities
|
||||
// summarize all fractures contributions pr cell,
|
||||
// Print COMPDAT entry
|
||||
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@ -393,8 +422,12 @@ void RifFractureExportTools::printStimPlanFractureTrans(const std::vector<RimFra
|
||||
continue;
|
||||
}
|
||||
|
||||
double verticalTrans = RigFractureTransmissibilityEquations::computeStimPlanCellTransmissibilityInFracture(stimPlanCell.getConductivtyValue(), stimPlanCell.cellSizeX(), stimPlanCell.cellSizeZ());
|
||||
double horizontalTrans = RigFractureTransmissibilityEquations::computeStimPlanCellTransmissibilityInFracture(stimPlanCell.getConductivtyValue(), stimPlanCell.cellSizeZ(), stimPlanCell.cellSizeX());
|
||||
double verticalTrans = RigFractureTransmissibilityEquations::computeStimPlanCellTransmissibilityInFracture(stimPlanCell.getConductivtyValue(),
|
||||
stimPlanCell.cellSizeX(),
|
||||
stimPlanCell.cellSizeZ());
|
||||
double horizontalTrans = RigFractureTransmissibilityEquations::computeStimPlanCellTransmissibilityInFracture(stimPlanCell.getConductivtyValue(),
|
||||
stimPlanCell.cellSizeZ(),
|
||||
stimPlanCell.cellSizeX());
|
||||
|
||||
out << qSetFieldWidth(5);
|
||||
size_t spi = stimPlanCell.getI();
|
||||
|
@ -53,6 +53,11 @@ public:
|
||||
const std::vector<RimFracture*>& fractures,
|
||||
RimEclipseCase* caseToApply);
|
||||
|
||||
static void exportWellPathFracturesToEclipseDataInputFile(const QString& fileName,
|
||||
const RimWellPath* wellPath,
|
||||
const RimEclipseCase* caseToApply);
|
||||
|
||||
|
||||
private:
|
||||
|
||||
static void performStimPlanUpscalingAndPrintResults(const std::vector<RimFracture *>& fractures,
|
||||
|
Loading…
Reference in New Issue
Block a user