create_material_point#
- MaterialPointManager.create_material_point(suggested_name, coords, params)#
Creates a material point at the given coordinates.
- Parameters:
- suggested_name
str
A name suggestion for material point.
- coords
Iterable
[float
] Coordinates of material point.
- params
CreateMaterialPointParams
Parameters to material point.
- suggested_name
- Returns:
CreateMaterialPointResults
Returns the result with material point name and id.
- Return type:
Notes
A material point is created on calling this API.
Examples
>>> material_point_results = model.control_data.create_material_point("Fluid", [1.0,2,0,3.0], params)