model.geom()
Creating and specifying general properties for 1D, 2D, and 3D geometries.
Syntax
model.component(<ctag>).geom().create(<tag>,<sdim>);
model.component(<ctag>).geom().create(<tag>,<meshtag>,<filename>);
model.component(<ctag>).geom(<tag>).model(<mtag>);
model.component(<ctag>).geom(<tag>).model();
model.component(<ctag>).geom(<tag>).axisymmetric(boolean);
model.component(<ctag>).geom(<tag>).isAxisymmetric();
model.component(<ctag>).geom(<tag>).lengthUnit(<unit>);
model.component(<ctag>).geom(<tag>).lengthUnit();
model.component(<ctag>).geom(<tag>).angularUnit(<unit>);
model.component(<ctag>).geom(<tag>).angularUnit();
model.component(<ctag>).geom(<tag>).scaleUnitValue(boolean);
model.component(<ctag>).geom(<tag>).scaleUnitValue();
model.component(<ctag>).geom(<tag>).repairTol(<relTol>);
model.component(<ctag>).geom(<tag>).repairTol();
model.component(<ctag>).geom(<tag>).geomRep(geomrep);
model.component(<ctag>).geom(<tag>).geomRep();
model.component(<ctag>).geom().remove(<tag>);
 
model.component(<ctag>).geom(<tag>).create(<ftag>,type);
model.component(<ctag>).geom(<tag>).createAfter(<ftag>,<type>,<postag>);
model.component(<ctag>).geom(<tag>).feature(<ftag>).create(<ftag2>,type);
model.component(<ctag>).geom(<tag>).feature(<ftag>).set(property,<value>);
model.component(<ctag>).geom(<tag>).feature(<ftag>).getType(property);
model.component(<ctag>).geom(<tag>).feature(<ftag>).selection(property).selMethod;
model.component(<ctag>).geom(<tag>).feature(<ftag>).geom().geomMethod;
model.component(<ctag>).geom(<tag>).feature(<ftag>).active(boolean);
model.component(<ctag>).geom(<tag>).feature(<ftag>).isActive();
model.component(<ctag>).geom(<tag>).feature().move(<ftag>,<position>);
model.component(<ctag>).geom(<tag>).feature().remove(<ftag>);
model.component(<ctag>).geom(<tag>).feature(<ftag>).getAllowedPropertyValues(property);
 
model.component(<ctag>).geom(<tag>).run(<ftag>);
model.component(<ctag>).geom(<tag>).runPre(<ftag>);
model.component(<ctag>).geom(<tag>).runCurrent();
 
model.component(<ctag>).geom(<tag>).run();
model.component(<ctag>).geom().run();
 
model.component(<ctag>).geom(<tag>).current();
model.component(<ctag>).geom(<tag>).feature(<ftag>).status();
model.component(<ctag>).geom(<tag>).feature(<ftag>).message();
 
model.component(<ctag>).geom(<tag>).objectNames();
model.component(<ctag>).geom(<tag>).feature(<ftag>).objectNames();
model.component(<ctag>).geom(<tag>).obj(<objname>).geomInfoMethod
model.component(<ctag>).geom(<tag>).geomInfoMethod
model.component(<ctag>).geom(<tag>).selection(<seltag>).selMethod;
Syntax
model.component(<ctag>).geom(<tag>).measure().geomMeasurementMethod;
model.component(<ctag>).geom(<tag>).measureFinal().geomMeasurementMethod;
 
model.component(<ctag>).geom(<tag>).export(<filename>);
model.component(<ctag>).geom(<tag>).exportFinal(<filename>);
 
model.component(<ctag>).geom(<tag>).defeaturing(<tooltag>).defeaturingMethod;
model.component(<ctag>).geom(<tag>).feature(<ftag>).find();
model.component(<ctag>).geom(<tag>).feature(<ftag>).detail().selMethod;
 
model.component(<ctag>).geom(<tag>).insertFile(<filename>,<gtag>);
model.component(<ctag>).geom(<tag>).insertSequence(<mtag>,<gtag>);
 
model.component(<ctag>).geom().create(<tag>, "Subsequence", sDim);
model.component(<ctag>).geom(<tag>).inputParam().set(<name>, <expr>, <descr>);
model.component(<ctag>).geom(<tag>).localParam().set(<name>, <expr>, <descr>);
model.geom(<gtag>).create(<ftag>, "PartInstance");
model.geom(<gtag>).stepInto(<ftag>);
model.geom(<gtag>).feature(<ftag>).geom().run(<ftag2>);
 
The last group of syntaxes are only applicable for geometry subsequences (see Using Geometry Parts), but model.geom(<gtag>).feature(<ftag>).geom() also exists if <ftag> is a work plane feature.
model.geom().load(<tags>, <filename>, <subsequenceTagsInFile>);
model.geom(<gtag>).loaded();
 
model.geom(<gtag>).filename();
model.geom(<gtag>).filename(<filename>);
model.geom(<gtag>).tagInFile();
model.geom(<gtag>).dateModifiedInFile();
model.geom(<gtag>).commentsInFile();
model.geom(<gtag>).labelInFile();
model.geom(<gtag>).versionInFile();
model.geom(<gtag>).reload();
 
The last group of syntaxes are only applicable for geometry subsequences (see Using Geometry Parts).
Description
Geometry Sequences and Geometry Objects
model.component(<ctag>).geom(<tag>) returns a geometry sequence consisting of geometry features. The geometry sequence also contains geometry objects resulting from building the geometry sequence.
Creating and Deleting a Geometry
model.component(<ctag>).geom().create(<tag>,<sdim>) creates a geometry sequence of space dimension <sdim> and assigns it the tag <tag>.
model.component(<ctag>).geom().create(<tag>,<meshtag>,<filename>) creates a geometry sequence tagged <tag> and a corresponding meshing sequence tagged <meshtag>. The parameter <filename> specifies a file that contains a geometry or a mesh, and an import feature is inserted into the geometry or mesh sequence.
model.component(<ctag>).geom().remove(<tag>) deletes the geometry tagged <tag>.
General Geometry Settings
model.geom(<tag>).model(<mtag>) sets the model node of the geometry <tag> to <mtag>.
String mtag = model.geom(<tag>).model() returns the model node tag of the geometry.
model.component(<ctag>).geom(<tag>).axisymmetric(boolean) indicates if the geometry is axisymmetric. This is only applicable for 1D and 2D geometries.
model.component(<ctag>).geom(<tag>).isAxisymmetric() returns true if the geometry is axisymmetric and false otherwise.
model.component(<ctag>).geom(<tag>).lengthUnit(<unit>) sets the length unit.
String unit = model.component(<ctag>).geom(<tag>).lengthUnit() returns the length unit.
model.component(<ctag>).geom(<tag>).angularUnit(<unit>) sets the angular unit.
String unit = model.component(<ctag>).geom(<tag>).angularUnit() returns the angular unit.
model.component(<ctag>).geom(<tag>).scaleUnitValue(boolean) sets the geometry to scale property values when units are changed.
model.component(<ctag>).geom(<tag>).scaleUnitValue() returns true if the geometry is set to scale property values when units are changed.
model.component(<ctag>).geom(<tag>).repairTol(<relTol>) sets the default relative repair tolerance to use when creating new features.
double relTol = model.component(<ctag>).geom(<tag>).repairTol() returns the default relative repair tolerance.
model.component(<ctag>).geom(<tag>).geomRep(geomrep) sets the geometry representation to use in a 3D geometry. The geomrep string can be comsol, meaning the COMSOL kernel or cadps (requires the CAD Import Module), meaning the CAD kernel (Parasolid).
String geomrep = model.component(<ctag>).geom(<tag>).geomRep() returns the geometry representation.
Creating, Editing, Disabling, and Deleting Features
model.component(<ctag>).geom(<tag>).create(<ftag>,type) adds a geometry feature <ftag> of type type to the geometry <tag>, after the current feature.
model.component(<ctag>).geom(<tag>).feature(<ftag>).set(property,<value>) sets a property in the geometry feature <ftag>. All data types listed in Table 2-2 are supported; the applicable data types differ between the properties. String expressions can use parameters from model.param().
model.component(<ctag>).geom(<tag>).feature(<ftag>).getType(property) returns the value of a property in the geometry feature <ftag>.
model.component(<ctag>).geom(<tag>).feature(<ftag>).selection(property).selMethod manages the geometry object selection property property. The available selection methods are described in Geometry Object Selection Methods.
model.component(<ctag>).geom(<tag>).feature(<ftag>).geom().geomMethod manipulates the 2D geometry sequence corresponding to the work plane feature <ftag>. The available methods are the same as for a 2D geometry model.geom(<gtag>).
model.component(<ctag>).geom(<tag>).feature(<ftag>).active(false) disables the feature <ftag>.
model.component(<ctag>).geom(<tag>).feature(<ftag>).active(true) enables the feature <ftag>.
model.component(<ctag>).geom(<tag>).feature(<ftag>).isActive() returns true if the feature <ftag> is enabled, and false otherwise.
model.component(<ctag>).geom(<tag>).feature().remove(<ftag>) removes the feature <ftag>.
model.component(<ctag>).geom(<tag>).feature().move(<ftag>,<position>) moves the feature <ftag> to the zero indexed position <position> in the sequence.
model.component(<ctag>).geom(<tag>).feature(<ftag>)).getAllowedPropertyValues(property) returns the set of allowed values for a property if the set is a finite set of strings; otherwise, it returns null.
Building Features
After each build operation, the current feature is set as the last of the active features that were built. The current state contains all objects that are generated by these features.
model.component(<ctag>).geom(<tag>).run(<ftag>) builds all features up to (and including) the feature <ftag>.
model.component(<ctag>).geom(<tag>).runPre(<ftag>) builds all features preceding the feature <ftag>; for example, with <ftag> being a work plane feature in a 3D geometry, model.geom(<tag>).runPre(<ftag>) builds all 3D geometry features preceding the work plane.
model.component(<ctag>).geom(<tag>).runCurrent() builds all features up to (and including) the current feature.
model.component(<ctag>).geom(<tag>).run() builds all features. The finalized geometry and all selections are also updated.
model.component(<ctag>).geom().run() builds the finalized geometry in all geometries.
Getting Build Status
String fTag = model.component(<ctag>).geom(<tag>).current() returns the tag of the current feature. If the current state is before the first feature, the empty string "" is returned.
String status = model.component(<ctag>).geom(<tag>).feature(<ftag>).status() returns the status of the feature <ftag>. The status is built, warning, needs_rebuild, edited, or error.
String msg = model.component(<ctag>).geom(<tag>).feature(<ftag>).message() returns the warning/error message of the feature <ftag>.
Getting Information About Geometry Objects
String[] n = model.component(<ctag>).geom(<tag>).objectNames() returns the names of all objects that exist in the current state.
String[] n = model.component(<ctag>).geom(<tag>).feature(<ftag>).objectNames() returns the names of the output object generated by the feature <ftag>.
model.component(<ctag>).geom(<tag>).obj(<objname>).geomInfoMethod returns information about the object <objname>. The available methods are described in Geometry Object Information.
model.component(<ctag>).geom(<tag>).geomInfoMethod returns information about the finalized geometry of geometry <tag>.
Getting Information About Named Selections
model.component(<ctag>).geom(<tag>).selection(<seltag>).selMethod returns information about the named selection <seltag>. See Selections of Geometric Entities and Geometry Object Selection Methods for more information.
Geometric Measurements
Use model.component(<ctag>).geom(<tag>).measure().selection().selMethod to specify the domains, boundaries, or edges in geometry objects that you want to measure. You can also specify one vertex or two vertices to get the coordinates of the vertex or the distance between the two vertices, respectively. The available selection methods are described in Geometry Object Selection Methods.
model.component(<ctag>).geom(<tag>).measure().geomMeasurementMethod returns the volume, area, length, vertex coordinates, or distance between two vertices according to the selection. The available measurement methods are described in Geometry Object Information.
Use model.component(<ctag>).geom(<tag>).measureFinal().selection().selMethod to specify the domains, boundaries, or edges in the finalized geometry that you want to measure. You can also specify one vertex or two vertices to get the coordinates of the vertex or the distance between the two vertices, respectively. The available selection methods are described in model.selection().
model.component(<ctag>).geom(<tag>).measureFinal().geomMeasurementMethod returns the volume, area, length, vertex coordinates, or distance between two vertices according to the selection. The available measurement methods are described in Measurements.
Use model.component(<ctag>).geom(<tag>)).measureFinal().mesh(<mtag>)) to select the mesh with tag mtag, when the analyzed geometry is based on an imported mesh, for example, so that measurements are relative to this mesh in its current state. Then, for example, to select domain 1 in a 2D geometry geom1 and make measurements on the analyzed geometry (for the physics), use the following code:
model.component("comp1").geom("geom1").measureFinal().geom(2).set(1);
model.component("comp1").geom("geom1").measureFinal().mesh("");
Exporting Geometry Objects
model.component(<ctag>).geom(<tag>).export().selection().selMethod can be used to select a number of geometry objects to export to file. The available selection methods are described in Geometry Object Selection Methods.
model.component(<ctag>).geom(<tag>).export(<filename>) exports the selected objects to a file.
model.component(<ctag>).geom(<tag>).exportFinal(<filename>) exports the finalized geometry to a file.
CAD Defeaturing
If you have a license for the CAD Import Module, or a LiveLink™ product for CAD software, the following functionality is available. For details, see the CAD Import Module User’s Guide.
model.component(<ctag>).geom(<tag>).defeaturing(tooltag).defeaturingMethod uses a defeaturing tool to create a feature that deletes small details. Available tools are listed in the CAD Import Module User’s Guide.
model.component(<ctag>).geom(<tag>).feature(<ftag>).find() searches for small details, for a defeaturing feature <ftag>.
model.component(<ctag>).geom(<tag>).feature(<ftag>).detail().selMethod manipulates the selection of details to remove, for a defeaturing feature <ftag>.
Geometry Object Selection Methods
For a geometry object selection sel, the following methods are available:
sel.init() sets the selection to be a selection of whole geometry objects. Subsequent calls to set, add, and remove select objects.
sel.init(dim) sets the selection property to be a selection of geometric entities of dimension dim. Subsequent calls to all, set, add, remove, and clear select entities.
The following three methods are applicable when the selection consists of whole objects. The argument <onames> can be an array of strings, or several string arguments.
sel.set(<onames>) sets the selection to be the objects <onames>.
sel.add(<onames>) adds the objects <onames> to the selection.
sel.remove(<onames>) removes the objects <onames> from the selection.
The following five methods are applicable when the selection consists of geometric entities. The argument <entities> can be an array of integers, or several integer arguments.
sel.all(<oname>) sets the selection to be all the entities of object <oname>. The selections on other objects are not affected.
sel.set(<oname>, <entities>) sets the selection on object <oname> to be <entities>. The selections on other objects are not affected.
sel.add(<oname>, <entities>) adds the entities <entities> to the selection on object <oname>. The selections on other objects are not affected.
sel.remove(<oname>, <entities>) removes the entities <entities> from the selection on object <oname>. The selections on other objects are not affected.
sel.clear(<oname>) clears the selection on object <oname>. The selections on other objects are not affected.
To let the selection be defined by a named selection, use:
sel.named(<seltag>) where <seltag> is the trimmed tag of a named selection defined by a preceding feature in the geometry sequence. See Selections of Geometric Entities for more information.
To get information about the selection, use:
String[] onames = sel.objects() returns the names of the selected objects.
int dim = sel.dimension() returns the dimension for the entities in the selection if the selection consists of geometric entities.
int[] ent = sel.entities(<oname>, dim) returns the entities in the selection on object <oname> if the selection consists of geometric entities.
String[] seltag = sel.named() returns the trimmed tag of the named selection that this selection refers to, or an empty string if the selection does not refer to a named selection.
If Statements
Use model.geom(<tag>).create(<ftag>,<type>) to add an If, Else If, Else, or End If feature after the current feature.
Use model.geom(<tag>).createAfter(<ftag>,<type>,<postag>) to add an If, Else If, Else, or End If feature after the feature tagged <postag>.
Insert Sequence
model.geom(<tag>).insertFile(<filename>,<gtag>); inserts a geometry sequence, with tag <gtag>, from another model file , with file name <filename>, into the geometry sequence with tag <tag>.
model.geom(<tag>).insertSequence(<mtag>,<gtag>); inserts a geometry sequence, with tag <gtag>, from another model, with tag <mtag>, into the current geometry sequence with tag <tag>.
Example
Create a 2D geometry model as the union of a circle and rectangle.
Code for Use with Java
Model model = ModelUtil.create("Model");
model.component().create("comp1");
GeomSequence g =model.component("comp1").geom().create("geom1",2);
g.create("r1","Rectangle");
g.feature("r1").set("size",new double[]{0.5,1});
g.feature("r1").set("pos",new double[]{-1,0});
g.create("c1","Circle");
g.feature("c1").set("r",0.5);
g.feature("c1").set("pos",new double[]{0.5,0});
g.run();
Code for Use with MATLAB
model = ModelUtil.create('Model');
model.component().create('comp1');
g =model.component('comp1').geom.create('geom1',2);
g.create('r1','Rectangle');
g.feature('r1').set('size',[0.5,1]);
g.feature('r1').set('pos',[-1,0]);
g.create('c1','Circle');
g.feature('c1').set('r',0.5);
g.feature('c1').set('pos',[0.5,0]);
g.run;
Compatibility
From version 5.1, the access method argument() is deprecated and replaced with inputParam(), and the access method param() is deprecated and replaced with localParam(). The methods link(…), linked(), and relink() are deprecated and replaced with load(…), loaded(), and reload(), respectively.
From version 4.4, the method
model.geom(<tag>).runAll();
is deprecated. Instead, use
model.component(<ctag>).geom(<tag>).run(<ftag>);
to specify to which feature node in the geometry sequence you wan to run.
From version 4.3a, the methods
model.geom(<tag>).object(<objname>)
String[] onames = sel.object()
are deprecated and replaced by the following methods:
model.component(<ctag>).geom(<tag>).obj(<objname>)
String[] onames = sel.objects()
See Also
model.mesh()