Package com.comsol.model
Interface OptFeature
-
- All Superinterfaces:
ModelEntity
,PrimitiveModelEntity
,PropFeature
,SelectionContainer
,SelectionEntity
public interface OptFeature extends PropFeature
Optimization feature.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
comp()
Returns component name.void
comp(java.lang.String compName)
Sets component name.java.lang.String
constr()
Returns pointwise constraint.void
constr(java.lang.String constrExpr)
Sets pointwise constraint.java.lang.String
field()
Deprecated.Usecomp()
instead.void
field(java.lang.String arg0)
Deprecated.Usecomp(String)
instead.java.lang.String
lbound()
Returns lower bound.void
lbound(java.lang.String boundExpr)
Sets lower bound.java.lang.String
scale()
Returns scale.void
scale(java.lang.String scaleExpr)
Sets scale.java.lang.String
ubound()
Returns upper bound.void
ubound(java.lang.String boundExpr)
Sets upper bound.-
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.PrimitiveModelEntity
getContainer, getDisplayString, resolveModelPath
-
Methods inherited from interface com.comsol.model.PropFeature
getAllowedPropertyValues, getBoolean, getBoolean, getBoolean, getBooleanArray, getBooleanMatrix, getDouble, getDouble, getDouble, getDoubleArray, getDoubleMatrix, getEntryKeyIndex, getEntryKeys, getInt, getInt, getInt, getIntArray, getIntMatrix, getReferenceArray, getString, getString, getString, getString, getStringArray, getStringMatrix, getType, getValueType, hasProperty, hasSelection, move, move, properties, remove, remove, selection, set, set, set, set, set, set, set, set, set, set, set, set, setEntry, setEntry, setEntry, setEntry, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex
-
Methods inherited from interface com.comsol.model.SelectionEntity
selection
-
-
-
-
Method Detail
-
comp
java.lang.String comp()
Returns component name.- Returns:
- Component name.
-
comp
void comp(java.lang.String compName)
Sets component name. Available for bound and scale features. Specifies on which field or state component to apply the bound or scale.- Parameters:
compName
- Comp name.
-
constr
java.lang.String constr()
Returns pointwise constraint.- Returns:
- Pointwise constraint.
-
constr
void constr(java.lang.String constrExpr)
Sets pointwise constraint.- Parameters:
constrExpr
- Pointwise constraint expression.
-
field
@Deprecated java.lang.String field()
Deprecated.Usecomp()
instead.
-
field
@Deprecated void field(java.lang.String arg0)
Deprecated.Usecomp(String)
instead.
-
lbound
java.lang.String lbound()
Returns lower bound.- Returns:
- Lower bound.
-
lbound
void lbound(java.lang.String boundExpr)
Sets lower bound. Available for gconstr and bound features.- Parameters:
boundExpr
- Bound expression.
-
scale
java.lang.String scale()
Returns scale.- Returns:
- Scale.
-
scale
void scale(java.lang.String scaleExpr)
Sets scale. Available for scale features.- Parameters:
scaleExpr
- Scale expression.
-
ubound
java.lang.String ubound()
Returns upper bound.- Returns:
- Upper bound.
-
ubound
void ubound(java.lang.String boundExpr)
Sets upper bound. Available for gconstr and bound features.- Parameters:
boundExpr
- Bound expression.
-
-