Skip to content

Commit 58dcc9b

Browse files
committed
remove more things
1 parent 79fe4dd commit 58dcc9b

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

src/simulation/m_global_parameters.fpp

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ module m_global_parameters
165165
integer :: hyper_model !< hyperelasticity solver algorithm
166166
logical :: elasticity !< elasticity modeling, true for hyper or hypo
167167
logical, parameter :: chemistry = .${chemistry}$. !< Chemistry modeling
168-
logical :: cu_tensor
169168
logical :: shear_stress !< Shear stresses
170169
logical :: bulk_stress !< Bulk stresses
171170
logical :: cont_damage !< Continuum damage modeling
@@ -499,7 +498,7 @@ module m_global_parameters
499498
real(wp) :: mytime !< Current simulation time
500499
real(wp) :: finaltime !< Final simulation time
501500

502-
logical :: weno_flat, riemann_flat, rdma_mpi
501+
logical :: rdma_mpi
503502

504503
type(pres_field), allocatable, dimension(:) :: pb_ts
505504

@@ -591,8 +590,6 @@ contains
591590
hyper_model = dflt_int
592591
b_size = dflt_int
593592
tensor_size = dflt_int
594-
weno_flat = .true.
595-
riemann_flat = .true.
596593
rdma_mpi = .false.
597594
shear_stress = .false.
598595
bulk_stress = .false.
@@ -700,9 +697,6 @@ contains
700697
sigma = dflt_real
701698
surface_tension = .false.
702699
703-
! Cuda aware MPI
704-
cu_tensor = .false.
705-
706700
bodyForces = .false.
707701
bf_x = .false.; bf_y = .false.; bf_z = .false.
708702
!< amplitude, frequency, and phase shift sinusoid in each direction

src/simulation/m_mpi_proxy.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ contains
108108
#:endfor
109109
110110
#:for VAR in [ 'run_time_info','cyl_coord', 'mpp_lim', &
111-
& 'mp_weno', 'rdma_mpi', 'weno_flat', 'riemann_flat', &
111+
& 'mp_weno', 'rdma_mpi', 'powell', 'cont_damage', 'bc_io', &
112112
& 'weno_Re_flux', 'alt_soundspeed', 'null_weights', 'mixture_err', &
113113
& 'parallel_io', 'hypoelasticity', 'bubbles_euler', 'polytropic', &
114114
& 'polydisperse', 'qbmm', 'acoustic_source', 'probe_wrt', 'integral_wrt', &
@@ -119,7 +119,7 @@ contains
119119
& 'bc_z%grcbc_in', 'bc_z%grcbc_out', 'bc_z%grcbc_vel_out', &
120120
& 'cfl_adap_dt', 'cfl_const_dt', 'cfl_dt', 'surface_tension', &
121121
& 'shear_stress', 'bulk_stress', 'bubbles_lagrange', &
122-
& 'hyperelasticity', 'bc_io', 'powell', 'cont_damage' ]
122+
& 'hyperelasticity']
123123
call MPI_BCAST(${VAR}$, 1, MPI_LOGICAL, 0, MPI_COMM_WORLD, ierr)
124124
#:endfor
125125

src/simulation/m_start_up.fpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,8 @@ contains
146146
! Namelist of the global parameters which may be specified by user
147147
namelist /user_inputs/ case_dir, run_time_info, m, n, p, dt, &
148148
t_step_start, t_step_stop, t_step_save, t_step_print, &
149-
model_eqns, mpp_lim, time_stepper, weno_eps, weno_flat, &
150-
riemann_flat, rdma_mpi, cu_tensor, &
151-
teno_CT, mp_weno, weno_avg, &
149+
model_eqns, mpp_lim, time_stepper, weno_eps, &
150+
rdma_mpi, teno_CT, mp_weno, weno_avg, &
152151
riemann_solver, low_Mach, wave_speeds, avg_state, &
153152
bc_x, bc_y, bc_z, &
154153
x_a, y_a, z_a, x_b, y_b, z_b, &

0 commit comments

Comments
 (0)