MeshedVolume#

class ansys.dyna.core.pre.dynaicfd.MeshedVolume(surfaces)#

Bases: ansys.dyna.core.pre.dynabase.BaseObj

Defines the volume space to mesh.

Parameters:
surfaceslist

List of part IDs for the surface elements to use to define the volume.

Overview#

embed_shell

Define surfaces that the mesher is to embed inside the volume mesh.

meshsize_box

Define a local mesh size in specific zones corresponding to given geometrical shapes.

set_meshsize

Define the surfaces that the mesher is to use to specify a local mesh size inside the volume.

set_fluid_interfaces

Define the surfaces that the mesher is to use to specify fluid interfaces in multi-fluid simulations.

create

Create mesh volume.

Import detail#

from ansys.dyna.core.pre.dynaicfd import MeshedVolume

Attribute detail#

MeshedVolume.surfaces#
MeshedVolume.stub#
MeshedVolume.meshsizeshape = []#
MeshedVolume.embeded_surf = []#
MeshedVolume.meshsize_surf = []#
MeshedVolume.fluid_interfaces = []#
MeshedVolume.type = 'meshedvolume'#

Method detail#

MeshedVolume.embed_shell(embeded)#

Define surfaces that the mesher is to embed inside the volume mesh.

Parameters:
embededlist

List of part IDs for the surface elements.

MeshedVolume.meshsize_box(size, min_point, max_point)#

Define a local mesh size in specific zones corresponding to given geometrical shapes.

Parameters:
sizefloat

Mesh size to apply in the zone of the shape defined by SNAME.

parameterlist

List of the parameters that define the shape.

MeshedVolume.set_meshsize(surfaces)#

Define the surfaces that the mesher is to use to specify a local mesh size inside the volume.

Parameters:
surfaceslist

List of part IDs for the surface elements.

MeshedVolume.set_fluid_interfaces(surfaces)#

Define the surfaces that the mesher is to use to specify fluid interfaces in multi-fluid simulations.

Parameters:
surfaceslist

List of part IDs for the surface elements.

MeshedVolume.create()#

Create mesh volume.