--On April 23, 2003 02:54:55 PM <[EMAIL PROTECTED]> wrote:
Is there anyway I can use 2 or more modules at the same time?
Yes. Describe all the modules in a single MDF file (see example below). I
also link all of the code so it forms a single shared object; multiple link
objects might also work.
Kent
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
MODULE reader
CATEGORY Import and Export
DESCRIPTION read files
LOADABLE example.so
INPUT filename; string; (none); name of file
INPUT options; string; (none); encoded list of options
OUTPUT metadata; string; information about the simulation and data
OUTPUT variables; string; list of variable names
OUTPUT times; scalar list; time of data steps
OUTPUT output; series; data read from file
MODULE cell2anode
CATEGORY Transformation
DESCRIPTION convert cell data to node data using the average method
LOADABLE example.so
INPUT inputField; field; (none); field with data
INPUT varConvert; string; (none); name of variable to convert
INPUT cylindrical; integer; (none); cylindrical flag
INPUT buglevel; integer; (none); debug message level
OUTPUT outputField; field; field with only converted data
OUTPUT report; string; (none); error report