Package com.comsol.model
Interface FrameFeature
-
- All Superinterfaces:
ModelEntity
,PrimitiveModelEntity
,SelectionContainer
,SelectionEntity
public interface FrameFeature extends SelectionEntity
Frame feature.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
coorddof()
Returns the spatial coordinates as a string array.FrameFeature
coorddof(int pos, java.lang.String dof)
Edits the coordinate name at a position in the degree of freedom list.FrameFeature
coorddof(java.lang.String[] dofs)
Sets the spatial coordinates as a string array.java.lang.String[]
coordexpr()
Return the spatial coordinate expressions as a string array.FrameFeature
coordexpr(int pos, java.lang.String expr)
Edits a mesh displacement expression at a position in the expression list.FrameFeature
coordexpr(java.lang.String[] expr)
Sets the mesh displacement expressions.java.lang.String
refframe()
Returns the reference frame as a string.FrameFeature
refframe(java.lang.String frameTag)
Sets the reference frame as a string.int
sorder()
Returns the spatial approximation order as an integer.FrameFeature
sorder(int order)
Sets the geometry shape order.java.lang.String
type()
Returns type of frame feature.FrameFeature
type(java.lang.String type)
Sets type of frame feature.-
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.SelectionEntity
selection
-
-
-
-
Method Detail
-
coorddof
java.lang.String[] coorddof()
Returns the spatial coordinates as a string array.- Returns:
- Spatial coordinates.
-
coorddof
FrameFeature coorddof(java.lang.String[] dofs)
Sets the spatial coordinates as a string array.- Parameters:
dofs
- String array of spatial coordinates.- Returns:
- Frame feature.
-
coorddof
FrameFeature coorddof(int pos, java.lang.String dof)
Edits the coordinate name at a position in the degree of freedom list.- Parameters:
pos
- Position index.dof
- Coordinate name.- Returns:
- Frame feature.
-
coordexpr
java.lang.String[] coordexpr()
Return the spatial coordinate expressions as a string array.- Returns:
- Spatial coordinate expressions.
-
coordexpr
FrameFeature coordexpr(java.lang.String[] expr)
Sets the mesh displacement expressions.- Parameters:
expr
- Expressions for mesh displacement.- Returns:
- Frame feature.
-
coordexpr
FrameFeature coordexpr(int pos, java.lang.String expr)
Edits a mesh displacement expression at a position in the expression list.- Parameters:
pos
- Position index.expr
- Expressions for mesh displacement.- Returns:
- Frame feature.
-
refframe
java.lang.String refframe()
Returns the reference frame as a string.- Returns:
- Reference frame as a string.
-
refframe
FrameFeature refframe(java.lang.String frameTag)
Sets the reference frame as a string.- Parameters:
frameTag
- Reference frame.- Returns:
- Frame feature.
-
sorder
int sorder()
Returns the spatial approximation order as an integer.- Returns:
- Spatial approximation order.
-
sorder
FrameFeature sorder(int order)
Sets the geometry shape order.- Parameters:
order
- Geometry shape order.- Returns:
- Frame feature.
-
type
java.lang.String type()
Returns type of frame feature.- Returns:
- Frame feature type.
-
type
FrameFeature type(java.lang.String type)
Sets type of frame feature.- Parameters:
type
- Frame feature type.- Returns:
- Frame feature.
-
-