BoxMesh

Parameters

  • Required:
    • nx (Integer) - Number of mesh points in the x direction

    • ny (Integer) - Number of mesh points in the y direction

    • nz (Integer) - Number of mesh points in the z direction

  • Optional:
    • simplex (Boolean) - Generate simplex elements

    • xmax (Real) - Maximum in the x direction

    • xmin (Real) - Minimum in the x direction

    • ymax (Real) - Maximum in the y direction

    • ymin (Real) - Minimum in the y direction

    • zmax (Real) - Maximum in the z direction

    • zmin (Real) - Minimum in the z direction

class BoxMesh : public godzilla::MeshObject

3D box mesh

Public Functions

explicit BoxMesh(const Parameters &parameters)

Constructor for building the object via Factory.

Real get_x_min() const

Get lower limit in x-direction.

Real get_x_max() const

Get upper limit in x-direction.

Int get_nx() const

Get the number of mesh points in x direction.

Real get_y_min() const

Get lower limit in y-direction.

Real get_y_max() const

Get upper limit in y-direction.

Int get_ny() const

Get the number of mesh points in y-direction.

Real get_z_min() const

Get lower limit in z-direction.

Real get_z_max() const

Get upper limit in z-direction.

Int get_nz() const

Get the number of mesh points in z direction.

Public Static Functions

static Parameters parameters()

Method for building Parameters for this class.