Skip to content
This repository was archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
Disable usage of eclrun until csh-komodo-fix in place
Browse files Browse the repository at this point in the history
  • Loading branch information
ManInFez committed Aug 17, 2020
1 parent faec0bb commit da904d1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 213 deletions.
30 changes: 11 additions & 19 deletions python/res/fm/ecl/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,16 @@ def run(config, argv):
options = parser.parse_args(argv)

eclrun_config = EclrunConfig(config, options.version)
if eclrun_config.can_use_eclrun():
run = EclRun(
options.ecl_case,
None,
num_cpu=options.num_cpu,
check_status=not options.ignore_errors,
)
run.runEclipse(eclrun_config=eclrun_config)

if options.num_cpu > 1:
sim = config.mpi_sim(version=options.version)
else:
if options.num_cpu > 1:
sim = config.mpi_sim(version=options.version)
else:
sim = config.sim(version=options.version)
sim = config.sim(version=options.version)

run = EclRun(
options.ecl_case,
sim,
num_cpu=options.num_cpu,
check_status=not options.ignore_errors,
)
run.runEclipse()
run = EclRun(
options.ecl_case,
sim,
num_cpu=options.num_cpu,
check_status=not options.ignore_errors,
)
run.runEclipse()
194 changes: 0 additions & 194 deletions python/tests/res/fm/test_ecl_run_new.py

This file was deleted.

0 comments on commit da904d1

Please sign in to comment.