Files
Used to specify the files that needs to be read or written.
This is a mandatory section and must be available in the arguments file.
Usage Example:
* FILES, FOLDER="/home/vcollab/models" - "post000160*.h5", TYPE=CONVERGE_H5
The file path or file name for each of the input files should be provided in one data line as the name.
Section Attributes
FOLDER: Base folder.
Both absolute and relative paths can be specified.
When a base folder is specified, all the relative paths are considered to be relative to the base folder.
Default value: Argument files folder path
Data Attributes
TYPE: File type.
Supported values are:
CONVERGE_H5
VCOLLAB_CAX
APPLICATION_LOG
If the TYPE is specified, the application tries to auto-detect the file type based on the file extension. The list of extensions is provided below.
File extensions Extension
Inferred file type
.h5
CONVERGE_H5
.cax
VCOLLAB_CAX
.log
APPLICATION_LOG
CONTENT: Tells the application what to read/write from/to specific file.
Supported file content types are:
MODEL
CAX
LOG
If not specified, applications tries to identify it automatically.
Examples
Create CAX file
* FILES
- in\post000160_+1.50000e+02.h5
- out\post000160.cax
Reads the mesh and results from “post000160_+1.50000e+02.h5” located in the “in” folder.
Creates the “post000160.cax” file and writes it to the “out” folder.
The “in” and “out” folders are relative to the “arg_file.txt”.
Create CAX for h5 files
* FILES, FOLDER=D:\Test
- in\post00016*.h5
- out\post00016.cax
Reads the mesh and results data from the all the files with “post00016*” keyword from “in” folder.
Creates the “post00016.cax” to the “out” folder and each h5 file is considered as an instance.
The “in” and “out” folders are located at D:\Test.