You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# plane strain# trim 3d vector-valued functions to the dimension of the fieldfunction_dimension=len(fun.shape) -2function_is_vector=function_dimension>=1function_is_3d=len(fun) ==3field_is_2d=v.dim==2iffunction_is_vectorandfunction_is_3dandfield_is_2d:
fun=fun[tuple([slice(2)] *function_dimension)]
within the integration method of a field.
The text was updated successfully, but these errors were encountered:
due to the introduced field-trimming for plane strain problems. Change
by
within the integration method of a field.
The text was updated successfully, but these errors were encountered: