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
It is because, for example in the case of Quadrangle9, size(xij, 2) has 9 but size(linElemSD%N, 1) always has 4 due to its linear interpolation setting.
My suggestion is replacing the above code with following one
IF (SIZE(xij, 2) .EQ.SIZE(linElemSD%N, 1)) THENCALL spaceFE%GetGlobalElemShapeData(elemsd=elemsd, xij=xij, &
& geoElemSD=linElemSD)
ELSECALL spaceFE%GetGlobalElemShapeData(elemsd=elemsd, xij=xij)
END IF
The text was updated successfully, but these errors were encountered:
shishiousan
changed the title
Updates Kernel assemble methods in AbstractKernel_Class
Improve Kernel assemble methods in AbstractKernel_Class
Jan 11, 2024
When I use high-order element for space in kernel, an error message come.
code
error message
It is because, for example in the case of
Quadrangle9
,size(xij, 2)
has 9 butsize(linElemSD%N, 1)
always has 4 due to its linear interpolation setting.My suggestion is replacing the above code with following one
The text was updated successfully, but these errors were encountered: