ScalarProductL2 (class)¶
Method code available at https://github.com/Eomys/pyleecan/tree/master/pyleecan/Methods/Mesh/ScalarProductL2
-
class
ScalarProductL2
(init_dict=None, init_str=None)[source]¶ Bases:
pyleecan.Classes.ScalarProduct.ScalarProduct
Store shape functions definition in the reference element
-
VERSION
= 1¶
-
scalar_product
(funca, funcb, detJ, weights, nb_gauss_points)¶ Scalar product of shape functions with L2 gauss integration
- Parameters
self (ScalarProductL2) – a ScalarProductL2 object
funca (ndarray) – vertice of the cell
nba (ndarray) – coordinates of a point
funcb (ndarray) – vertice of the cell
nbb (ndarray) – coordinates of a point
detJ (ndarray) – jacobian determinant evaluated for each gauss point
weights (ndarray) – gauss weights
nb_gauss_points (int) – number of gauss points
- Returns
l2_scal – a L2 scalar product
- Return type
ndarray
-
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
-