<div dir="ltr"><div><div>Dear Neks,<br><br></div>I am trying to run a simulation, replicating the Nek5000 run from this youtube video:<br><a href="https://www.youtube.com/watch?v=RmmN-KFSvAY">https://www.youtube.com/watch?v=RmmN-KFSvAY</a><br><br></div>The inlet BC is constant velocity (which is set to 1.0), and as can be seen from the video, the velocity magnitude reasonably away from the inlet is zero at starting times. However, in all of my simulations, I see the velocity magnitude as one at all the interior points away from the inlet from the beginning (the inlet BC ux=1.0 I am applying is somehow propagated to all interior elements). Am I doing something wrong somewhere, or is this the expected behavior? Please see my userbc() and useric() from my .usr file below:<br><br>      subroutine userbc (ix,iy,iz,iside,eg)<br>      include 'SIZE'<br>      include 'TOTAL'<br>      include 'NEKUSE'<br>      integer ix,iy,iz,eg,e,i,n<br><br>CC "My inlet is at x=0"<br><br>      if (x.le.1e-4) then <br>        ux=1.0<br>      endif<br><br>      return<br>      end<br><br><div>      subroutine useric (ix,iy,iz,eg)<br>      include 'SIZE'<br>      include 'TOTAL'<br>      include 'NEKUSE'<br><br>      ux=0<br>      uy=0<br><br>      return<br>      end</div><div><br></div><div>I believe userbc() is executed for only 'v' in my case. For the other constraints on the elements (like 'W', 'O', 'E'),  I think userbc() would not run (please correct me if I am wrong, I am learning here). Since the above functions wouldn't work as expected, I changed userchk() and removed the above if statements in userbc(). My userchk() is as follows:</div><div><br></div><div>      subroutine userchk<br>      include 'SIZE'<br>      include 'TOTAL'<br>      integer i,n<br><br>      n = nx1*ny1*nz1*nelv<br>      <br>      if (istep.eq.0) then<br>        do i=1,n<br>          if (xm1(i,1,1,1).le.1e-4) then<br>            vx(i,1,1,1)=1<br>          endif<br>        enddo<br>      endif<br><br>      return<br>      end</div><div><br></div><div>This didn't work either. Can somebody point me in the right direction?</div><div><br></div><div>Thanks,</div><div>Ajay<br></div><div><br></div><div><br></div></div>