Skip to content

Commit

Permalink
Merge pull request #181 from hmarbona/master
Browse files Browse the repository at this point in the history
convertMesh2OF.f90. Fixed for debug ifort due to undeclared fid
  • Loading branch information
hmarbona authored Sep 21, 2023
2 parents bd9c57d + 484506e commit aabd392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Solver/src/addons/horsesConverter/convertMesh2OF.f90
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ SUBROUTINE convertHorses2OFMesh (meshName, boundaryFile, Nout)
! Create pointer for paraview
! ---------------------------
CALL chdir('foamFiles')
open(fid, file="paraView.foam", status="unknown", action="write")
open( newunit =fid, file="paraView.foam", status="unknown", action="write")
close(fid)

write(STD_OUT,'(/)')
Expand Down

0 comments on commit aabd392

Please sign in to comment.