Volume of Elements and Mesh
To determine minimum element volume, area, or length of a certain type, use the method
getMinVolume
:
double model.component(
<ctag>
).mesh(
<tag>
).stat().getMinVolume(
type
);
double model.component(
<ctag>
).mesh(
<tag>
).stat().getMinVolume();
To determine maximum element volume, area, or length of a certain type, use the method
getMaxVolume
:
double model.component(
<ctag>
).mesh(
<tag>
).stat().getMaxVolume(
type
);
double model.component(
<ctag>
).mesh(
<tag>
).stat().getMaxVolume();
To determine the volume, area, or length of the mesh, use the method
getVolume
:
double model.component(
<ctag>
).mesh(
<tag>
).stat().getVolume(
type
);
double model.component(
<ctag>
).mesh(
<tag>
).stat().getVolume();
The following methods are available directly on the sequence and provide volume information about the entire geometry:
double model.component(
<ctag>
).mesh(
<tag>
).getMinVolume(
type
);
double model.component(
<ctag>
).mesh(
<tag>
).getMinVolume();
double model.component(
<ctag>
).mesh(
<tag>
).getMaxVolume(
type
);
double model.component(
<ctag>
).mesh(
<tag>
).getMaxVolume();
double model.component(
<ctag>
).mesh(
<tag>
).getVolume(
type
);
double model.component(
<ctag>
).mesh(
<tag>
).getVolume();