BEDVAR

Use this to add or subtract numeric variables to and from an existing block model.


Usage:

bedvar [options] <model>

<> indicates a mandatory switch.
[ ] indicates an optional switch.

Where:

Arguments Description

[options]

-o <output file>

-i <input file>

Note:   One must be selected.

The [options] for this executable are:

Redirect output to file.

Redirect input from file.

<model> The block model that you want to use.

Examples:

In the appropriate directory type:

bedvar -i <input file> <model>

where

-i

Indicates that the following file is the input file.

<input file>

Refers to the name of the input file.

<model>

Refers to the name of the block model.

To add a numeric variable, create a text file in the following format

+ <name of variable> <default value of numeric variable> <data type> <description of variable>

+ mart -99.0 float martie

where

+

Indicates that you are adding a variable.

mart

Refers to the name of numeric variable to add.

-99.0

The default value of numeric variable.

float

The data type of numeric variable.

martie

The description of numeric variable.

Note:   There must be a space between each entry, and a new variable must start on a new line.

To remove a numeric variable, create a text file in the following format

- <variable>

- mart

where

-

Indicates that you are removing a variable.

mart

The name of numeric variable to remove.