Skip to content

Commit 87430b6

Browse files
committed
resolved several comments
1 parent ab772fd commit 87430b6

File tree

6 files changed

+4
-8
lines changed

6 files changed

+4
-8
lines changed

src/common/m_derived_types.fpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,6 @@ module m_derived_types
178178

179179
logical :: non_axis_sym
180180

181-
logical :: non_axis_sym
182-
183181
real(wp) :: a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12 !<
184182
!! The parameters needed for the spherical harmonic patch
185183

src/pre_process/include/3dHardcodedIC.fpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@
109109
xi_cart(1) = xi_cart(1) + x_bcen
110110
xi_cart(2) = xi_cart(2) + y_bcen
111111
xi_cart(3) = xi_cart(3) + z_bcen
112-
! print *, 'xi_cart(1) ::', xi_cart(1), 'xi_cart(2) ::', xi_cart(2), 'xi_cart(3) ::', xi_cart(3)
113112
! assigning the reference map to the q_prim vector field
114113
do l = 1, 3
115114
q_prim_vf(l + xibeg - 1)%sf(i, j, k) = xi_cart(l)

src/pre_process/m_patches.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ contains
792792
((y_cc(j) - y_centroid)/b)**2) &
793793
- 1._wp))*(-0.5_wp) + 0.5_wp
794794
end if
795-
print *, "a :", a, "b :", b
795+
796796
if ((((x_cc(i) - x_centroid)/a)**2 + &
797797
((y_cc(j) - y_centroid)/b)**2 <= 1._wp &
798798
.and. &
@@ -2245,7 +2245,7 @@ contains
22452245
22462246
end subroutine s_convert_cylindrical_to_spherical_coord
22472247
2248-
!> Archimedes spiral function :: theta_cc, r, x_p, P2, P3, P4, P5, P6, P7
2248+
!> Archimedes spiral function
22492249
!! @param myth Angle
22502250
!! @param offset Thickness
22512251
!! @param a Starting position

src/simulation/m_derived_variables.f90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ subroutine s_compute_derived_variables(t_step)
156156
end do
157157
end do
158158
end do
159-
call s_derive_center_of_mass(q_prim_ts(3)%vf, c_mass)
160159

161160
call s_derive_center_of_mass(q_prim_ts(3)%vf, c_mass)
162161

src/simulation/m_rhs.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ contains
790790
! ===============================================================
791791

792792
! Computing Riemann Solver Flux and Source Flux =================
793-
call nvtxStartRange("RHS_riemann_solver")
793+
call nvtxStartRange("RHS-RIEMANN-SOLVER")
794794
call s_riemann_solver(qR_rsx_vf, qR_rsy_vf, qR_rsz_vf, &
795795
dqR_prim_dx_n(id)%vf, &
796796
dqR_prim_dy_n(id)%vf, &

toolchain/templates/delta.mako

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
% if engine == 'batch':
66
#SBATCH --nodes=${nodes}
77
#SBATCH --ntasks-per-node=${tasks_per_node}
8-
#SBATCH --cpus-per-task=16
8+
#SBATCH --cpus-per-task=1
99
#SBATCH --job-name="${name}"
1010
#SBATCH --time=${walltime}
1111
% if partition:

0 commit comments

Comments
 (0)