Dear Users,
I am trying to simulate a full span oscillating airfoil by meshing in Gambit
and converting the mesh to .rea. Using one of the examples in the
Nek5000, Oscillating Cylinder case (ocyl) for the simulation. I am using the same .usr file as present in the ocyl example, the only change is in the direction of oscillation is changed from Y-axis to Z-axis.
The leading edge oscillation is fine but the trailing edge oscillation have the mesh entanglement problem.
The images attached are at:
1. Very initial stage of simulation
2. The entangled mesh
If anyone can suggest any solution, it would be really helpful.
Thanks,
Saba
--
You received this message because you are subscribed to the Google Groups "Nek5000" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nek5000+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/nek5000/269d991d-d537-4f72-ab3e-4a5c4e957912n%40googlegroups.com.
nface = 2*ndim
do e=1,nelv
do f=1,nface
c Set Dirichlet for mesh velocity on all non-interior boundaries
if (cbc(f,e,1).ne.'E ') call facev(msk,e,f,z0,nx1,ny1,nz1)
c Set inhomogeneous Dirichlet data on cylinder
if (cbc(f,e,1).eq.'mv ') then
call fcaver(xavg,xm1,e,f)
if (xavg.gt.-1.2) call facev(tmp,e,f,m1,nx1,ny1,nz1)
endif
enddo
enddo
call dsop(msk,'* ',lx1,ly1,lz1) ! <====== ADD THIS LINE HERE
call axhelm (rhs,tmp,h1,h2,1,1)