@@ -98,9 +98,9 @@ module m_cbc
9898 integer :: cbc_dir, cbc_loc
9999 !$acc declare create(dj, bcxb, bcxe, bcyb, bcye, bczb, bcze, cbc_dir, cbc_loc)
100100
101- !! GRCBC inputs for subsonic inflow and outflow conditions consisting of
102- !! inflow velocities, pressure, density and void fraction as well as
103- !! outflow velocities and pressure
101+ ! grCBC inputs for subsonic inflow and outflow conditions consisting of
102+ ! inflow velocities, pressure, density and void fraction as well as
103+ ! outflow velocities and pressure
104104
105105 real(wp), allocatable, dimension(:) :: pres_in, pres_out, Del_in, Del_out
106106 real(wp), allocatable, dimension(:, :) :: vel_in, vel_out
@@ -396,13 +396,13 @@ contains
396396 !$acc update device(bczb, bcze)
397397 end if
398398
399- ! Allocate GRCBC inputs
399+ ! Allocate grCBC inputs
400400 @:ALLOCATE(pres_in(1:num_dims), pres_out(1:num_dims))
401401 @:ALLOCATE(Del_in(1:num_dims), Del_out(1:num_dims))
402402 @:ALLOCATE(vel_in(1:num_dims, 1:num_dims), vel_out(1:num_dims, 1:num_dims))
403403 @:ALLOCATE(alpha_rho_in(1:num_fluids, 1:num_dims), alpha_in(1:num_fluids, 1:num_dims))
404404
405- ! Assign and update GRCBC inputs
405+ ! Assign and update grCBC inputs
406406 #:for CBC_DIR, XYZ in [(1, ' x' ), (2, ' y' ), (3, ' z' )]
407407 if (${CBC_DIR}$ <= num_dims) then
408408 vel_in(${CBC_DIR}$, 1) = bc_${XYZ}$%vel_in(1)
@@ -860,7 +860,7 @@ contains
860860 call s_compute_nonreflecting_subsonic_buffer_L(lambda, L, rho, c, mf, dalpha_rho_ds, dpres_ds, dvel_ds, dadv_ds)
861861 else if ((cbc_loc == -1 .and. bc${XYZ}$b == -7) .or. (cbc_loc == 1 .and. bc${XYZ}$e == -7)) then
862862 call s_compute_nonreflecting_subsonic_inflow_L(lambda, L, rho, c, mf, dalpha_rho_ds, dpres_ds, dvel_ds, dadv_ds)
863- ! Add GRCBC for Subsonic Inflow
863+ ! Add grCBC for Subsonic Inflow
864864 if (bc_${XYZ}$%grcbc_in) then
865865 !$acc loop seq
866866 do i = 2, momxb
@@ -880,11 +880,11 @@ contains
880880 end if
881881 else if ((cbc_loc == -1 .and. bc${XYZ}$b == -8) .or. (cbc_loc == 1 .and. bc${XYZ}$e == -8)) then
882882 call s_compute_nonreflecting_subsonic_outflow_L(lambda, L, rho, c, mf, dalpha_rho_ds, dpres_ds, dvel_ds, dadv_ds)
883- ! Add GRCBC for Subsonic Outflow (Pressure)
883+ ! Add grCBC for Subsonic Outflow (Pressure)
884884 if (bc_${XYZ}$%grcbc_out) then
885885 L(advxe) = c*(1._wp - Ma)*(pres - pres_out(${CBC_DIR}$))/Del_out(${CBC_DIR}$)
886886
887- ! Add GRCBC for Subsonic Outflow (Normal Velocity)
887+ ! Add grCBC for Subsonic Outflow (Normal Velocity)
888888 if (bc_${XYZ}$%grcbc_vel_out) then
889889 L(advxe) = L(advxe) + rho*c**2._wp*(1._wp - Ma)*(vel(dir_idx(1)) + vel_out(${CBC_DIR}$, dir_idx(1))*sign(1, cbc_loc))/Del_out(${CBC_DIR}$)
890890 end if
@@ -1536,7 +1536,7 @@ contains
15361536 ! Deallocating the cell-width distribution in the s-direction
15371537 @:DEALLOCATE(ds)
15381538
1539- ! Deallocating GRCBC inputs
1539+ ! Deallocating grCBC inputs
15401540 @:DEALLOCATE(vel_in, vel_out, pres_in, pres_out, Del_in, Del_out, alpha_rho_in, alpha_in)
15411541
15421542 ! Deallocating CBC Coefficients in x-direction
0 commit comments