vcfempy.flow module

A module for flow / seepage analysis in the Voronoi Cell Finite Element Method (VCFEM).

class vcfempy.flow.PolyFlow2D(mesh=None)

Bases: object

A class for 2D flow analysis in the VCFEM.

Parameters

mesh (vcfempy.meshgen.PolyMesh2D, optional) – The parent mesh for the PolyFlow2D analysis.

Returns

A new PolyFlow2D object.

Return type

vcfempy.flow.PolyFlow2D

Examples

property mesh

The parent mesh for the PolyFlow2D analysis.

Parameters

mesh (vcfempy.meshgen.PolyMesh2D) – The parent mesh object

Returns

The parent mesh. If None, no parent mesh is assigned.

Return type

None or vcfempy.meshgen.PolyMesh2D

Raises

TypeError – If mesh is not None or a vcfempy.meshgen.PolyMesh2D object.

Examples