SolutionData (class)¶
Method code available at https://github.com/Eomys/pyleecan/tree/master/pyleecan/Methods/Mesh/SolutionData
-
class
SolutionData
(field=None, type_cell='triangle', label=None, dimension=2, init_dict=None, init_str=None)[source]¶ Bases:
pyleecan.Classes.Solution.Solution
Define a Solution with SciDataTool objects.
-
VERSION
= 1¶
-
get_field
(*args)¶ Get the value of variables stored in Solution.
- Parameters
self (SolutionData) – an SolutionData object
*args (list of strings) – List of axes requested by the user, their units and values (optional)
- Returns
field – an array of field values
- Return type
array
-
get_axes_list
()¶ Get the axis of variables stored in Solution.
- Parameters
self (SolutionData) – an SolutionData object
field_name (str) – name of the field to return
- Returns
field – an array of field values
- Return type
array
-
save
(save_path='', is_folder=False)¶ Save the object to the save_path
- Parameters
self – A pyleecan object
save_path (str) – path to the folder to save the object
is_folder (bool) – to split the object in different files: separate simulation machine and materials
-
copy
()¶ Return a copy of the class
-
get_logger
()¶ Get the object logger or its parent’s one
- Parameters
obj – A pyleecan object
- Returns
logger – Pyleecan object dedicated logger
- Return type
logging.Logger
-
property
field
¶ Data object containing the numerical values of a solution. One of the axis must be “Indices”, a list of indices. If the solution is a vector, one of the axis must be “Direction”, values [‘x’,’y’] for example.
- Type
SciDataTool.Classes.DataND.DataND
-