Package com.comsol.model
Interface NumericalFeatureList
-
- All Superinterfaces:
IListMove
,java.lang.Iterable<NumericalFeature>
,ModelEntity
,ModelEntityList<NumericalFeature>
,PrimitiveModelEntity
,PropFeatureList<NumericalFeature>
public interface NumericalFeatureList extends PropFeatureList<NumericalFeature>, IListMove
List of numerical features.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumericalFeature
create(java.lang.String tag, java.lang.String oper)
Create a numerical feature.java.lang.String[][]
insert(java.lang.String filename, java.lang.String[] materials, java.lang.String... password)
Insert numerical features from an mph file into the numerical list of this model and returns the result of the operation as a double string array of length 3.
The first array contains the messages from insert, the second array contains paths to the inserted objects, and the third array contains paths to the inserted references.void
run()
Executes all numerical features.-
Methods inherited from interface com.comsol.model.ModelEntity
active, author, author, comments, comments, dateCreated, dateModified, docMarker, docMarker, help, help, icon, isactive, isActive, label, label, lastModifiedBy, model, model, name, name, resetAuthor, scope, tag, tag, timeCreated, timeModified, version, version
-
Methods inherited from interface com.comsol.model.ModelEntityList
clear, copy, copy, copyTo, duplicate, duplicateTo, get, index, remove, size, tags, uniquetag
-
Methods inherited from interface com.comsol.model.PrimitiveModelEntity
getContainer, getDisplayString, resolveModelPath
-
-
-
-
Method Detail
-
create
NumericalFeature create(java.lang.String tag, java.lang.String oper)
Create a numerical feature.- Specified by:
create
in interfacePropFeatureList<NumericalFeature>
- Parameters:
tag
- Feature tag.oper
- Type of feature.- Returns:
- Created numerical feature.
-
insert
java.lang.String[][] insert(java.lang.String filename, java.lang.String[] materials, java.lang.String... password)
Insert numerical features from an mph file into the numerical list of this model and returns the result of the operation as a double string array of length 3.
The first array contains the messages from insert, the second array contains paths to the inserted objects, and the third array contains paths to the inserted references. A pasted reference is an object that a inserted object refers to, and isn't necessarily contained by any of the inserted objects.- Parameters:
filename
- The file name.materials
- The tags of the numerical features to insert.password
- Optional password for opening the file.- Returns:
- Results from the insert operation.
-
run
void run()
Executes all numerical features.
-
-