Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Incompact3d
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
s2006749
Incompact3d
Commits
f9f04631
Commit
f9f04631
authored
2 years ago
by
Andrew Boyd
Browse files
Options
Downloads
Patches
Plain Diff
added variables for elliptical shape
parent
83ac992a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/BC-Cylinder.f90
+10
-5
10 additions, 5 deletions
src/BC-Cylinder.f90
src/module_param.f90
+1
-1
1 addition, 1 deletion
src/module_param.f90
src/parameters.f90
+1
-1
1 addition, 1 deletion
src/parameters.f90
with
12 additions
and
7 deletions
src/BC-Cylinder.f90
+
10
−
5
View file @
f9f04631
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/module_param.f90
+
1
−
1
View file @
f9f04631
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/parameters.f90
+
1
−
1
View file @
f9f04631
...
...
@@ -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
,
&
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment