Skip to content

Commit e8bc4d3

Browse files
committed
fix capillary spelling
1 parent 87076dc commit e8bc4d3

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

src/simulation/include/inline_capillary.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#:def compute_capilary_stress_tensor()
1+
#:def compute_capillary_stress_tensor()
22

33
Omega(1, 1) = -sigma*(w2*w2 + w3*w3)/normW
44

@@ -19,4 +19,4 @@
1919

2020
end if
2121

22-
#:enddef compute_capilary_stress_tensor
22+
#:enddef compute_capillary_stress_tensor

src/simulation/m_rhs.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ contains
716716

717717
if (surface_tension) then
718718
call nvtxStartRange("RHS-SURFACE-TENSION")
719-
call s_get_capilary(q_prim_qp%vf, bc_type)
719+
call s_get_capillary(q_prim_qp%vf, bc_type)
720720
call nvtxEndRange
721721
end if
722722

src/simulation/m_riemann_solvers.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module m_riemann_solvers
3737

3838
use m_bubbles_EE
3939

40-
use m_surface_tension !< To get the capilary fluxes
40+
use m_surface_tension !< To get the capillary fluxes
4141

4242
use m_helper_basic !< Functions to compare floating point numbers
4343

@@ -2887,7 +2887,7 @@ contains
28872887
end if
28882888

28892889
if (surface_tension) then
2890-
call s_compute_capilary_source_flux( &
2890+
call s_compute_capillary_source_flux( &
28912891
vel_src_rsx_vf, &
28922892
vel_src_rsy_vf, &
28932893
vel_src_rsz_vf, &

src/simulation/m_surface_tension.fpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ module m_surface_tension
2121
implicit none
2222

2323
private; public :: s_initialize_surface_tension_module, &
24-
s_compute_capilary_source_flux, &
25-
s_get_capilary, &
24+
s_compute_capillary_source_flux, &
25+
s_get_capillary, &
2626
s_finalize_surface_tension_module
2727

2828
!> @name color function gradient components and magnitude
@@ -65,7 +65,7 @@ contains
6565
end if
6666
end subroutine s_initialize_surface_tension_module
6767

68-
pure subroutine s_compute_capilary_source_flux( &
68+
pure subroutine s_compute_capillary_source_flux( &
6969
vSrc_rsx_vf, vSrc_rsy_vf, vSrc_rsz_vf, &
7070
flux_src_vf, &
7171
id, isx, isy, isz)
@@ -111,7 +111,7 @@ contains
111111
normW = (normWL + normWR)/2._wp
112112

113113
if (normW > capillary_cutoff) then
114-
@:compute_capilary_stress_tensor()
114+
@:compute_capillary_stress_tensor()
115115

116116
do i = 1, num_dims
117117

@@ -158,7 +158,7 @@ contains
158158
normW = (normWL + normWR)/2._wp
159159

160160
if (normW > capillary_cutoff) then
161-
@:compute_capilary_stress_tensor()
161+
@:compute_capillary_stress_tensor()
162162

163163
do i = 1, num_dims
164164

@@ -205,7 +205,7 @@ contains
205205
normW = (normWL + normWR)/2._wp
206206

207207
if (normW > capillary_cutoff) then
208-
@:compute_capilary_stress_tensor()
208+
@:compute_capillary_stress_tensor()
209209

210210
do i = 1, num_dims
211211

@@ -226,9 +226,9 @@ contains
226226

227227
end if
228228

229-
end subroutine s_compute_capilary_source_flux
229+
end subroutine s_compute_capillary_source_flux
230230

231-
impure subroutine s_get_capilary(q_prim_vf, bc_type)
231+
impure subroutine s_get_capillary(q_prim_vf, bc_type)
232232

233233
type(scalar_field), dimension(sys_size), intent(in) :: q_prim_vf
234234
type(integer_field), dimension(1:num_dims, -1:1), intent(in) :: bc_type
@@ -301,7 +301,7 @@ contains
301301
call s_reconstruct_cell_boundary_values_capillary(c_divs, gL_x, gL_y, gL_z, gR_x, gR_y, gR_z, i)
302302
end do
303303

304-
end subroutine s_get_capilary
304+
end subroutine s_get_capillary
305305

306306
subroutine s_reconstruct_cell_boundary_values_capillary(v_vf, vL_x, vL_y, vL_z, vR_x, vR_y, vR_z, &
307307
norm_dir)

0 commit comments

Comments
 (0)