Skip to content
Snippets Groups Projects
Commit f9f04631 authored by Andrew Boyd's avatar Andrew Boyd
Browse files

added variables for elliptical shape

parent 83ac992a
No related branches found
No related tags found
No related merge requests found
......@@ -35,9 +35,9 @@ contains
real(mytype) :: dx
real(mytype) :: remp
integer :: i,j,k
real(mytype) :: xm,ym,r,rads2,kcon
real(mytype) :: xm,ym,zm,r,rads2,kcon
real(mytype) :: zeromach
real(mytype) :: cexx,ceyy,dist_axi
real(mytype) :: cexx,ceyy,cezz,dist_axi
zeromach=one
do while ((one + zeromach / two) .gt. one)
......@@ -48,30 +48,35 @@ contains
! Intitialise epsi
epsi(:,:,:)=zero
! Update center of moving Cylinder
! Update center of moving Cylinder - change to ellipsoid
!cexx=cex+ubcx*t
!ceyy=cey+ubcy*t
! Update center of moving Cylinder
if (t.ne.0.) then
cexx=cex+ubcx*(t-ifirst*dt)
ceyy=cey+ubcy*(t-ifirst*dt)
cezz=cez+ubcz*(t-ifirst*dt)
else
cexx=cex
ceyy=cey
cezz=cez
endif
!
! Define adjusted smoothing constant
! kcon = log((one-0.0001)/0.0001)/(smoopar*0.5*dx) ! 0.0001 is the y-value, smoopar: desired number of affected points
!
do k=nzi,nzf
zm=real(k+xstart(3)-2,mytype)*dz
do j=nyi,nyf
ym=yp(j)
do i=nxi,nxf
xm=real(i-1,mytype)*dx
r=sqrt_prec((xm-cexx)**two+(ym-ceyy)**two)
r=sqrt_prec(((xm-cexx)/sex)**two+((ym-ceyy)/sey)**two+((zm-cezz)/sez)**two)
if (r-ra.gt.zeromach) then
cycle
cycle
endif
write(*,'(A,3(F5.2,2x))') "Inside solid, the coords are: ", xm, ym, zm
epsi(i,j,k)=remp
enddo
enddo
......
......@@ -616,7 +616,7 @@ end module simulation_stats
!############################################################################
module ibm_param
use decomp_2d, only : mytype
real(mytype) :: cex,cey,cez,ra,ubcx,ubcy,ubcz,rads, c_air
real(mytype) :: cex,cey,cez,ra,sex,sey,sez,ubcx,ubcy,ubcz,rads, c_air
real(mytype) :: chord,thickness,omega
integer :: inana ! Analytical BC as Input
integer :: imove
......
......@@ -60,7 +60,7 @@ subroutine parameter(input_i3d)
NAMELIST /LESModel/ jles, smagcst, smagwalldamp, nSmag, walecst, maxdsmagcst, iwall
NAMELIST /WallModel/ smagwalldamp
NAMELIST /Tripping/ itrip,A_tr,xs_tr_tbl,ys_tr_tbl,ts_tr_tbl,x0_tr_tbl
NAMELIST /ibmstuff/ cex,cey,cez,ra,nobjmax,nraf,nvol,iforces, npif, izap, ianal, imove, thickness, chord, omega ,ubcx,ubcy,ubcz,rads, c_air
NAMELIST /ibmstuff/ cex,cey,cez,ra,sex,sey,sez,nobjmax,nraf,nvol,iforces, npif, izap, ianal, imove, thickness, chord, omega ,ubcx,ubcy,ubcz,rads, c_air
NAMELIST /ForceCVs/ xld, xrd, yld, yud!, zld, zrd
NAMELIST /LMN/ dens1, dens2, prandtl, ilmn_bound, ivarcoeff, ilmn_solve_temp, &
massfrac, mol_weight, imultispecies, primary_species, &
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment