Merge pull request #664 from joakim-hove/remove-python

Removed stale test code
This commit is contained in:
Joakim Hove 2016-04-29 08:01:42 +02:00
commit ef05a64a88
2 changed files with 0 additions and 334 deletions

View File

@ -1,136 +0,0 @@
#!/usr/bin/env python
import sys
from trans_graph import TransGraph
# This file just contains some example functions for how one can poke
# around in the TransGraph datastructure.
def direction_count(tg):
dir_count = {"X" : 0 ,
"Y" : 0 ,
"Z" : 0 ,
"NNC" : 0 }
for cell in tg:
if cell:
for conn in cell:
dir_count[ conn.dir ] += 1
dir_count["Total"] = dir_count["X"] + dir_count["Y"] + dir_count["Z"] + dir_count["NNC"]
return dir_count
def print_cell( prefix , cell ):
print "%s: Cell: (%d,%d,%d) " % (prefix , cell.i , cell.j , cell.k)
for conn in cell:
print " Connection => (%3d,%3d,%3d) Transmissibility: %g Direction: %s" % (conn.i , conn.j , conn.k , conn.T , conn.dir)
print " cell[\"X\"] => %s" % cell["X"]
print " cell[\"Y\"] => %s" % cell["Y"]
print " cell[\"Z\"] => %s" % cell["Z"]
def connection_to_count(tg , i,j,k):
count = 0
for cell in tg:
if cell.connectsWith(i,j,k):
count += 1
return count
#-----------------------------------------------------------------
def direction_example( opm_tg , ecl_tg ):
opm_count = direction_count( opm_tg )
ecl_count = direction_count( ecl_tg )
print "OPM: %s" % opm_count
print "ECL: %s" % ecl_count
print
def cell_example(opm_tg , ecl_tg ):
opm_cell = opm_tg[21,27,10]
ecl_cell = ecl_tg[21,27,10]
print_cell( "OPM: " , opm_cell )
print_cell( "ECL: " , ecl_cell )
def count_example(opm_tg , ecl_tg ):
i = 5
j = 10
k = 7
print "Opm connections to (%d,%d,%d): %d" % (i,j,k , connection_to_count(opm_tg , i,j,k))
print "Ecl connections to (%d,%d,%d): %d" % (i,j,k , connection_to_count(ecl_tg , i,j,k))
print
def xtrace_example( opm_tg , ecl_tg , j , k):
opm_trace = opm_tg.getXTrace( j , k)
ecl_trace = ecl_tg.getXTrace( j , k)
print "OPM: %s" % opm_trace
print "ECL: %s" % ecl_trace
print
def ytrace_example( opm_tg , ecl_tg , i , k):
opm_trace = opm_tg.getYTrace( i , k )
ecl_trace = ecl_tg.getYTrace( i , k )
print "OPM: %s" % opm_trace
print "ECL: %s" % ecl_trace
print
def ztrace_example( opm_tg , ecl_tg , i , j):
opm_trace = opm_tg.getZTrace( i , j )
ecl_trace = ecl_tg.getZTrace( i , j )
print "OPM: %s" % opm_trace
print "ECL: %s" % ecl_trace
print
#-----------------------------------------------------------------
if len(sys.argv) < 3:
sys.exit("example.py opm_trans.json eclipse_trans.json")
opm_tg = TransGraph.load(sys.argv[1])
ecl_tg = TransGraph.load(sys.argv[2])
direction_example( opm_tg , ecl_tg )
cell_example( opm_tg , ecl_tg )
count_example( opm_tg , ecl_tg )
xtrace_example( opm_tg , ecl_tg , 20 ,20)
ytrace_example( opm_tg , ecl_tg , 10 ,10)
ztrace_example( opm_tg , ecl_tg , 10 ,10)
ztrace_example( opm_tg , ecl_tg , 10 ,20)
ztrace_example( opm_tg , ecl_tg , 20 ,10)
ztrace_example( opm_tg , ecl_tg , 20 ,20)
ztrace_example( opm_tg , ecl_tg , 30 ,70)
ztrace_example( opm_tg , ecl_tg , 30 ,60)

View File

@ -1,198 +0,0 @@
# The opm_init_check cpp program will produce two json files which
# should describe the transmissibility graph. The structure of the
# main chunk of data is a list:
#
#
# ((i1,j1,k1) , (((i2,j2,k2), T12) , ((i3,j3,k3) , T13))),
# ((iA,jA,kA) , (((iB,jB,kB), TAB) , ((iC,jC,kC) , TAC))),
# ....
#
#
# Cell(i1,j1,k1) is connected to cells (i2,j2,k2) and (i3,j3,k3)
# respectively, with transmissibility T12 and T13
# respectively. Furthermore cell (iA,iB,iC) is connected to cells
# (iB,jB,kB) and (iC,jC,kC) with transmissibilty TAB and TAC
# respectively.
import json
class Connection(object):
"""
The connection class holds connection information for one cell;
including the i,j,k of the cell and the Transmissibility of connection.
"""
def __init__(self , i1, j1 , k1 , i2 , j2 , k2 , T):
self.i = i2
self.j = j2
self.k = k2
self.T = T
dx = abs(i1 - i2)
dy = abs(j1 - j2)
dz = abs(k1 - k2)
if dx == 1 and dy == 0 and dz == 0:
self.dir = "X"
elif dx == 0 and dy == 1 and dz == 0:
self.dir = "Y"
elif dx == 0 and dy == 0 and dz == 1:
self.dir = "Z"
else:
self.dir = "NNC"
def __str__(self):
return "<%d,%d,%d>(T:%g)" % (self.i , self.j , self.k , self.T)
class CellConnections(object):
def __init__(self , i,j,k):
self.i = i
self.j = j
self.k = k
self.connection_list = []
self.connection_map = {}
def __getitem__(self , index):
if isinstance(index,int):
return self.connection_list[index]
else:
return self.connection_map[index]
def __len__(self):
return len(self.connection_list)
def has_key(self , dir_key):
return self.connection_map.has_key(dir_key)
def addConnections(self , connections):
for ijk,T in connections:
new_conn = Connection( self.i , self.j , self.k , ijk[0] , ijk[1] , ijk[2] , T)
self.connection_list.append( new_conn )
if new_conn.dir == "NNC":
if not self.connection_map.has_key("NNC"):
self.connection_map["NNC"] = []
self.connection_map["NNC"].append( new_conn )
else:
self.connection_map[new_conn.dir] = new_conn
def __nonzero__(self):
if len(self.connection_list) > 0:
return True
else:
return False
def connectsWith(self, i , j , k):
for conn in self.connection_list:
if conn.i == i and conn.j == j and conn.k == k:
return True
else:
return False
def __str__(self):
return "<%d,%d,%d> : %s" % (self.i , self.j , self.k , [ conn.__str__() for conn in self.connection_list ])
class TransGraph(object):
def __init__(self , nx , ny , nz):
self.nx = nx
self.ny = ny
self.nz = nz
self.cell_connections = [ None ] * nx * ny * nz
def __getitem__(self, index):
if isinstance(index , tuple):
g = index[0] + index[1] * self.nx + index[2]*self.nx*self.ny
else:
g = index
connections = self.cell_connections[g]
if connections is None:
k = g / (self.nx * self.ny)
j = (g - k * self.nx * self.ny) / self.nx
i = g - k * self.nx * self.ny - j * self.nx
self.cell_connections[g] = CellConnections( i,j,k )
return self.cell_connections[g]
def addCell(self , ijk , new_connections):
g = ijk[0] + ijk[1] * self.nx + ijk[2]*self.nx*self.ny
connections = self[g]
connections.addConnections( new_connections )
def getZTrace(self , i , j):
trace = []
for k in range(self.nz):
cell = self[i,j,k]
if cell.has_key("Z"):
trace.append( cell["Z"].T )
else:
trace.append( 0 )
return trace
def getXTrace(self , j , k):
trace = []
for i in range(self.nx):
cell = self[i,j,k]
if cell.has_key("X"):
trace.append( cell["X"].T )
else:
trace.append( 0 )
return trace
def getYTrace(self , i , k):
trace = []
for j in range(self.ny):
cell = self[i,j,k]
if cell.has_key("Y"):
trace.append( cell["Y"].T )
else:
trace.append( 0 )
return trace
@staticmethod
def load(json_file):
with open(json_file) as fileH:
data = json.load( fileH )
dims = data["dims"]
graph = data["graph"]
trans_graph = TransGraph( dims[0] , dims[1] , dims[2])
for cell,connections in graph:
trans_graph.addCell( cell , connections )
return trans_graph