Source code for abaqus.Material.Multiscale.MeanFieldHomogenization

from abaqusConstants import *


[docs]class MeanFieldHomogenization: """The MeanFieldHomogenization object specifies the multiscale material definition. Notes ----- This object can be accessed by: .. code-block:: python import material mdb.models[name].materials[name].meanFieldHomogenization import odbMaterial session.odbs[name].materials[name].meanFieldHomogenization The corresponding analysis keywords are: - MEAN FIELD HOMOGENIZATION """ def __init__(self, angleSubdivision: int = None, formulation: SymbolicConstant = MT, isotropization: SymbolicConstant = ALLISO, uniformMatrixStrain: SymbolicConstant = NO): """This method creates a MeanFieldHomogenization object. Notes ----- This function can be accessed by: .. code-block:: python mdb.models[name].materials[name].MeanFieldHomogenization session.odbs[name].materials[name].MeanFieldHomogenization Parameters ---------- angleSubdivision An Int specifying the number of angle increments used for the discretization of the orientation space. formulation A SymbolicConstant specifying the type of homogenization model. Possible values are MT, REUSS, VOIGT, INVERSED_MT, BALANCED, and UNSPECIFIED. The default value is MT. isotropization A SymbolicConstant specifying the type of isotropization method. Possible values are ALLISO, EISO, and PISO. The default value is ALLISO. uniformMatrixStrain A SymbolicConstant specifying whether the average strain in the matrix is uniform across all pseudo-grains. Possible values are NO and YES. The default value is NO. Returns ------- A MeanFieldHomogenization object. Raises ------ RangeError """ pass def setValues(self): """This method modifies the MeanFieldHomogenization object. Raises ------ RangeError """ pass