Files
ResInsight/docs/BatchCommands.md

57 lines
2.2 KiB
Markdown
Raw Normal View History

2014-04-07 23:21:58 -07:00
---
layout: docs
prev_section: octaveinterface
next_section: modelnavigation
2014-04-07 23:21:58 -07:00
title: Batch Commands
permalink: /docs/batchcommands/
2014-07-03 12:08:36 +02:00
published: true
2014-04-07 23:21:58 -07:00
---
ResInsight supports several commands useful in a batch setting. These examples are available from the [test section](https://github.com/OPM/ResInsight/tree/master/TestModels/Case_with_10_timesteps).
2014-07-03 12:08:36 +02:00
See also [Command Line Arguments]({{ site.baseurl }}/docs/commandlineparameters) for an overview of all command line arguments.
2014-07-03 12:08:36 +02:00
## Example 1 : Create snapshots of all views for multiple cases
A list of cases is defined in **CaseList.txt**, containing the following
2014-07-03 12:17:24 +02:00
{% highlight text %}
Real0/BRUGGE_0000.EGRID
Real10/BRUGGE_0010.EGRID
Real30/BRUGGE_0030.EGRID
Real40/BRUGGE_0040.EGRID
2014-07-03 12:17:24 +02:00
{% endhighlight %}
The command line used to run this example is shown here:
2014-07-03 12:17:24 +02:00
{% highlight text %}
ResInsight --project BatchTest.rsp --multiCaseSnapshots CaseList.txt --size 500 500
2014-07-03 12:17:24 +02:00
{% endhighlight %}
This will instruct ResInsight to read the project file **BatchTest.rsp**. All cases will be replaced one by one in ResInsight, and snapshots of all views will be written to file.
2014-07-03 12:08:36 +02:00
## Example 2 : Replace a single case and take snapshots of all views
The command line used to run this example is shown here:
2014-07-03 12:17:24 +02:00
{% highlight text %}
ResInsight --project BatchTest.rsp --replaceCase "Real10\BRUGGE_0010.EGRID" --savesnapshots
2014-07-03 12:17:24 +02:00
{% endhighlight %}
This will instruct ResInsight to read the project file **BatchTest.rsp**. The specified case **Real10\BRUGGE_0010.EGRID** will be imported into the project, and snapshots of all views will be written to file.
2014-07-03 12:08:36 +02:00
## Example 3 : Replace source cases in a case group and create snapshot
A list of cases is defined in **CaseList2.txt**, containing the following
2014-07-03 12:17:24 +02:00
{% highlight text %}
Real0/BRUGGE_0000.EGRID
Real10/BRUGGE_0010.EGRID
2014-07-03 12:17:24 +02:00
{% endhighlight %}
The command line used to run this example is shown here:
2014-07-03 12:17:24 +02:00
{% highlight text %}
ResInsight --project BatchStatistics.rsp --replaceSourceCases CaseList2.txt --savesnapshots
2014-07-03 12:17:24 +02:00
{% endhighlight %}
2014-07-03 12:08:36 +02:00
This will instruct ResInsight to read the project file **BatchTest.rsp**. All cases specified will be imported in the case group specified in the project file. Statistics will be computed, and snapshots for all views will be written to file.