Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,8 @@ $ ./em2ex.py --help

usage: em2ex.py [-h] [-o OUTPUT_FILE] [--filetype {eclipse,leapfrog}]
[--no-nodesets] [--no-sidesets] [-f] [-u] [--flip]
[--translate TRANSLATE TRANSLATE] [--progress {auto,on,off}]
[--mapaxes] [--pinch] [--pinch-tol PINCH_TOL]
[--refine-xy RX RY]
[--translate TRANSLATE TRANSLATE] [--mapaxes] [--pinch]
[--pinch-tol PINCH_TOL] [--refine-xy RX RY]
filename

Converts earth model to Exodus II format
Expand All @@ -114,9 +113,6 @@ options:
--flip Flip the sign of the Z coordinates
--translate TRANSLATE TRANSLATE
Translate the (x, y) coordinates by this amount
--progress {auto,on,off}
Progress bars for Eclipse conversion: auto (>100000
cells), on, or off
--mapaxes Use the MAPAXES coordinates for an Eclipse file
--pinch Remove pinched elements
--pinch-tol PINCH_TOL
Expand Down
2 changes: 0 additions & 2 deletions em2ex.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ def get_parser():
parser.add_argument('-u', '--use-official-api', dest = 'use_official_api', action = 'store_true', help = 'Use exodus.py to write files')
parser.add_argument('--flip', dest = 'flip_z', action = 'store_true', help = 'Flip the sign of the Z coordinates')
parser.add_argument('--translate', nargs = 2, dest = 'translate', type = float, help = 'Translate the (x, y) coordinates by this amount')
parser.add_argument('--progress', dest = 'progress', default = 'auto', choices = ['auto', 'on', 'off'],
help = 'Progress bars for Eclipse conversion: auto (>100000 cells), on, or off')
parser.add_argument('--mapaxes', dest = 'use_mapaxes', action = 'store_true', help = 'Use the MAPAXES coordinates for an Eclipse file')
parser.add_argument('--pinch', default = True, dest = 'no_pinch', action = 'store_true', help = 'Remove pinched elements')
parser.add_argument('--pinch-tol', default = 1e-3, dest = 'pinch_tol', type = float, help = 'Tolerance for coincident corners when removing pinched elements (default: 1e-3)')
Expand Down
Loading
Loading