Hi<br><br>I just recently got started familiarizing myself with Nek5000. Looks great, but I got into trouble with <br>generating my own meshes. Is there a preferred way to report bugs? I couldn't find one. <br>Anyway, using any simple boxmesh from the tutorials genmap throws an error when I try <br>

to build it myself. Typically:<br><br> abort: PERIODIC MISMATCH 2:<br>        1  2 P    ie <br>        0  0   je <br>   0.0000000       0.0000000      bc<br><br><br>           8  quit<br><br>I found that in subroutine genmap.f/ rd_bc bc is declared as real*8 and not just real. So I changed<br>

<br>      subroutine rd_bc(cbc,bc,nel,ndim,ifield,io)<br><br>c     .Read Boundary Conditions (and connectivity data)<br><br>      character*3 cbc(6,nel)<br>      real*8      bc(5,6,nel)<br><br>to <br><br>      subroutine rd_bc(cbc,bc,nel,ndim,ifield,io)<br>

<br>c     .Read Boundary Conditions (and connectivity data)<br><br>      character*3 cbc(6,nel)<br>      real      bc(5,6,nel)<br><br>and now it works for me.<br><br>Best regards<br><br>Mikael Mortensen<br>Norwegian Defence Research Establishment (FFI)<br>

2027, Kjeller Norway<br><br><br><br>