We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MODULE PROCEDURE Initiate_ref_Quadrangle REAL(DFP) :: unit_xij(2, 4), biunit_xij(2, 4) CALL DEALLOCATE (obj) obj%topology(5) = ReferenceTopology([1, 2], Line2) obj%topology(6) = ReferenceTopology([2, 3], Line2) obj%topology(7) = ReferenceTopology([3, 4], Line2) obj%topology(8) = ReferenceTopology([4, 1], Line2) END PROCEDURE Initiate_ref_Quadrangle
The order of edges is not correct. It should be (1,2), (4,3), (1,4) and (2,3).
Similar thing happen in higher order element
aintvec = [1, 2] .append.arange(5_I4B, 3_I4B + order) obj%topology(NNS + 1) = ReferenceTopology(aintvec, Linename(order=order)) aintvec = [2, 3] .append.arange( & & 3_I4B + order + 1, & & 3_I4B + order + order - 1_I4B) obj%topology(NNS + 2) = ReferenceTopology(aintvec, Linename(order=order)) aintvec = [3, 4] .append.arange(& & 2_I4B + 2_I4B * order + 1, & & 2_I4B + 2_I4B * order + order - 1_I4B) obj%topology(NNS + 3) = ReferenceTopology(aintvec, Linename(order=order)) aintvec = [4, 1] .append.arange( & & 1_I4B + 3_I4B * order + 1, & & 1_I4B + 3_I4B * order + order - 1_I4B)
The text was updated successfully, but these errors were encountered:
Moved to issue #141
Sorry, something went wrong.
vickysharma0812
No branches or pull requests
The order of edges is not correct. It should be (1,2), (4,3), (1,4) and (2,3).
Similar thing happen in higher order element
The text was updated successfully, but these errors were encountered: