Package com.comsol.model
Interface Coordsys
-
- All Superinterfaces:
EquationViewParent
,IPlotAndImageExport
,ModelEntity
,PrimitiveModelEntity
,PropFeature
,SelectionContainer
,SelectionEntity
public interface Coordsys extends PropFeature, IPlotAndImageExport, EquationViewParent
Coordinate system.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String[]
coord()
Returns coordinate names.Coordsys
create(java.lang.String tag, java.lang.String type)
For a combined system, create a subfeature.CoordsysList
feature()
For a combined system, return the list of its subfeature.Coordsys
feature(java.lang.String tag)
For a combined system, return the subfeature having the given tag.boolean
islinear()
Deprecated.UseisLinear()
instead.boolean
isLinear()
Check if coordinate system is linear.boolean
isorthonormal()
Deprecated.UseisOrthonormal()
instead.boolean
isOrthonormal()
Check if coordinate system is orthonormal.Coordsys
masterSystem(java.lang.String arg0)
Deprecated.UsePropFeature.set(String, String)
for the propertymastersystem
.-
Methods inherited from interface com.comsol.model.physics.EquationViewParent
featureInfo, featureInfo
-
Methods inherited from interface com.comsol.model.IPlotAndImageExport
image
-
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
-
coord
java.lang.String[] coord()
Returns coordinate names.- Returns:
- Coordinate names.
-
create
Coordsys create(java.lang.String tag, java.lang.String type)
For a combined system, create a subfeature.- Parameters:
tag
- Subfeature tag.type
- Subfeature type.- Returns:
- A new subfeature with the given tag and type.
-
feature
CoordsysList feature()
For a combined system, return the list of its subfeature.- Returns:
- List of subfeatures.
-
feature
Coordsys feature(java.lang.String tag)
For a combined system, return the subfeature having the given tag.- Parameters:
tag
- Subfeature tag.- Returns:
- The subfeature with the given tag.
-
isLinear
boolean isLinear()
Check if coordinate system is linear.- Returns:
true
if linear.
-
isOrthonormal
boolean isOrthonormal()
Check if coordinate system is orthonormal.- Returns:
true
if orthonormal.
-
islinear
@Deprecated boolean islinear()
Deprecated.UseisLinear()
instead.
-
isorthonormal
@Deprecated boolean isorthonormal()
Deprecated.UseisOrthonormal()
instead.
-
masterSystem
@Deprecated Coordsys masterSystem(java.lang.String arg0)
Deprecated.UsePropFeature.set(String, String)
for the propertymastersystem
.
-
-