Skip to content

Commit 11e66c3

Browse files
committed
all_good
1 parent 80933e9 commit 11e66c3

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

channel/input.inp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
0 ! fresh start=0 restart =1
22
0 ! iteration to start from (fresh start 0 otherwise different)
3-
200000 ! Final time step
4-
1000 ! Saving frequency
5-
6.28 ! Streamwise domain lenght Lx
6-
3.14 ! Spanwise domain width Ly
3+
200000 ! Final time step
4+
1000 ! Saving frequency
5+
6.28 ! Streamwise domain lenght Lx
6+
3.14 ! Spanwise domain width Ly
77
2.0 ! Wall-normal domain height Lz=2h
8-
1.6 ! Stretching factor quasi~0=uniform 1.5 mid-stretching and 3.0 extreme (do not use zero)
8+
0.01 ! Stretching factor quasi~0=uniform 1.5 mid-stretching and 3.0 extreme (do not use zero)
99
1 ! inflow condition (0=zero, 1=perturbed 3D field, 2=read from fields)
1010
0 ! phase-field initial condition (0=circular drop, 1=read from fields)
1111
0 ! theta initial condition (0=uniform, 1=read from fields)
12-
0.0001 ! dt for the simulation
13-
0.00169 ! mu (viscosity)
12+
0.00002 ! dt for the simulation
13+
0.00555 ! mu (viscosity)
1414
1.000 ! density
1515
-1.0 ! Pressure gradient along x (negative if flow along x)
1616
0.0 ! Pressure gradient along y (negative if flow along y)
1717
0.5 ! Initial drop radius for phase-field
1818
0.1d0 ! Surface tension
19-
1.0 ! Ratio eps/dx
19+
0.51 ! Ratio eps/dx
2020
0.00666666 ! kappa (thermal diffusivity)
2121
0.0 ! alphag for buoyancy

channel/main.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ program main
5454
!real(kind=8), parameter :: beta(3) = (/ 0.0d0, -0.122243120495896d0, -0.377756879504104d0 /)
5555

5656
! Enable or disable phase field
57-
#define phiflag 1
57+
#define phiflag 0
5858
! Enable or disable temperature field
5959
#define thetaflag 0
6060

@@ -1013,7 +1013,7 @@ program main
10131013
enddo
10141014
enddo
10151015
enddo
1016-
write(*,*) "Max divergence after correction ", maxdiv
1016+
!write(*,*) "Max divergence after correction ", maxdiv
10171017

10181018
call MPI_Allreduce(umax,gumax,1,MPI_DOUBLE_PRECISION,MPI_MAX,MPI_COMM_WORLD, ierr)
10191019
call MPI_Allreduce(vmax,gvmax,1,MPI_DOUBLE_PRECISION,MPI_MAX,MPI_COMM_WORLD, ierr)

0 commit comments

Comments
 (0)