Package com.comsol.model
Interface OptSequence
-
- All Superinterfaces:
ModelEntity
,PrimitiveModelEntity
public interface OptSequence extends ModelEntity
Optimization.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OptFeatureList
bound()
Gets the list of bound features.OptFeature
bound(java.lang.String tag)
Gets a bound feature with a given tag.ConstrList
constr()
Get the list of constraints.Constr
constr(java.lang.String tag)
Gets the constraint with a given tag.OptFeatureList
gconstr()
Gets the list of global constraint features.OptFeature
gconstr(java.lang.String tag)
Get a global constraint feature with a given name.OptFeatureList
objective()
Gets the objective features.OptFeature
objective(java.lang.String tag)
Gets an objective feature with given tag.OptFeatureList
scale()
Gets the list of scale features.OptFeature
scale(java.lang.String tag)
Gets a scale feature with a given tag.-
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
-
-
-
-
Method Detail
-
bound
OptFeatureList bound()
Gets the list of bound features.- Returns:
- Bound features.
-
bound
OptFeature bound(java.lang.String tag)
Gets a bound feature with a given tag.- Parameters:
tag
- Bound feature tag.- Returns:
- Bound feature.
-
constr
ConstrList constr()
Get the list of constraints.- Returns:
- Constraint features.
-
constr
Constr constr(java.lang.String tag)
Gets the constraint with a given tag.- Parameters:
tag
- Constraint feature tag.- Returns:
- Constraint feature.
-
gconstr
OptFeatureList gconstr()
Gets the list of global constraint features.- Returns:
- Global constraints.
-
gconstr
OptFeature gconstr(java.lang.String tag)
Get a global constraint feature with a given name.- Parameters:
tag
- Global constraint tag.- Returns:
- Global constraint feature.
-
objective
OptFeatureList objective()
Gets the objective features.- Returns:
- Objective feature list.
-
objective
OptFeature objective(java.lang.String tag)
Gets an objective feature with given tag.- Parameters:
tag
- Objective feature tag.- Returns:
- Objective feature.
-
scale
OptFeatureList scale()
Gets the list of scale features.- Returns:
- Scale features.
-
scale
OptFeature scale(java.lang.String tag)
Gets a scale feature with a given tag.- Parameters:
tag
- Scale feature tag.- Returns:
- Scale feature.
-
-