Package com.comsol.model
Interface Coeff
-
- All Superinterfaces:
ModelEntity
,PrimitiveModelEntity
public interface Coeff extends ModelEntity
Coefficient form equations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description CoeffFeature
create(java.lang.String tag)
Create a child feature.CoeffFeatureList
feature()
Returns the coefficient form features.CoeffFeature
feature(java.lang.String tag)
Returns a coefficient form feature.java.lang.String[]
field()
Returns the fields.Coeff
field(int pos, java.lang.String field)
Edits the field at a position.Coeff
field(java.lang.String[] fields)
Sets the coefficient form field tags.java.lang.String[]
intrule()
Deprecated.UseintRule()
instead.Coeff
intrule(int arg0, java.lang.String arg1)
Deprecated.UseintRule(int, String)
instead.Coeff
intrule(java.lang.String[] arg0)
Deprecated.UseintRule(String[])
instead.java.lang.String[]
intRule()
Returns the integration rules.Coeff
intRule(int pos, java.lang.String irule)
Sets the integration rule at position pos in the vector to irule.Coeff
intRule(java.lang.String[] irlist)
Assigns integration rules to the coefficient form equations.-
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
-
create
CoeffFeature create(java.lang.String tag)
Create a child feature.- Parameters:
tag
- Feature tag.- Returns:
- Created feature.
-
feature
CoeffFeatureList feature()
Returns the coefficient form features.- Returns:
- List of coefficient form features.
-
feature
CoeffFeature feature(java.lang.String tag)
Returns a coefficient form feature.- Parameters:
tag
- Coefficient form feature tag.- Returns:
- Coefficient form feature.
-
field
java.lang.String[] field()
Returns the fields.- Returns:
- Field tags.
-
field
Coeff field(java.lang.String[] fields)
Sets the coefficient form field tags.- Parameters:
fields
- List of field tags.- Returns:
- Coefficient form equations.
-
field
Coeff field(int pos, java.lang.String field)
Edits the field at a position.- Parameters:
pos
- Position index.field
- Field tag.- Returns:
- Coefficient form equations.
-
intRule
java.lang.String[] intRule()
Returns the integration rules.- Returns:
- Integration rule tags.
-
intRule
Coeff intRule(java.lang.String[] irlist)
Assigns integration rules to the coefficient form equations.- Parameters:
irlist
- Integration rule tags.- Returns:
- Coefficient form equations.
-
intRule
Coeff intRule(int pos, java.lang.String irule)
Sets the integration rule at position pos in the vector to irule.- Parameters:
pos
- Position index.irule
- Integration rule tag.- Returns:
- Coefficient form equations.
-
intrule
@Deprecated java.lang.String[] intrule()
Deprecated.UseintRule()
instead.
-
intrule
@Deprecated Coeff intrule(java.lang.String[] arg0)
Deprecated.UseintRule(String[])
instead.
-
intrule
@Deprecated Coeff intrule(int arg0, java.lang.String arg1)
Deprecated.UseintRule(int, String)
instead.
-
-