The methods loadFile() and
saveFile() are now available to load and save files for the following features:
loadFile(String path) where the path is the path to any file type that COMSOL Multiphysics supports.
loadFile(String path, char delim) where
delim is the delimiter used in the file.
loadFile(String path, String sheet, String range), where the string
sheet is the name of the sheet to read from (null or empty means the first in the file), and
range is range of cells to read. The
range can be a single cell, which then indicates the top-left cell to read. If
range is empty, it starts in the top-left corner.
For the saveFile method, the following syntax is available:
saveFile(String path, String sheet, String range, boolean includeHeaders, boolean overwrite), where
includeHeaders determines whether to include headers or not, and overwrite determines if nonempty existing cells in a spreadsheet can be overwritten in the file. For example, a call like
saveFile(String path, boolean fullPrecision, String sheet, String range, boolean includeHeaders, boolean overwrite) additionally includes a Boolean input argument,
fullPrecision, for controlling if full precision should be used for numerical values in the exported file.
For model.result().table, there are no delimiter functions.