Skip to content

Commit

Permalink
Change export of omesh to use Sequential variables. Important for addons
Browse files Browse the repository at this point in the history
where whole mpi mesh is not constructed.
  • Loading branch information
oscarmarino committed Apr 4, 2024
1 parent b98ab2b commit 6341555
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Solver/src/libs/mesh/HexMesh.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2861,9 +2861,9 @@ subroutine HexMesh_ExportOrders(self,fileName)
OrderFileName = "./MESH/" // trim(removePath(getFileName(fileName))) // ".omesh"
open( newunit = fd , FILE = TRIM(OrderFileName), ACTION = 'write')

write(fd,*) self % no_of_allElements
write(fd,*) self % no_of_elements

do k=1, self % no_of_allElements
do k=1, self % no_of_elements
write(fd,*) self % elements(k) % Nxyz
end do

Expand Down

0 comments on commit 6341555

Please sign in to comment.