Skip to content

Commit d11d153

Browse files
author
Hyeoksu Lee
committed
minor fix
1 parent b365477 commit d11d153

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/3D_turb_mixing/turbulence_stat/run_turbulence.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ function plot_Reynolds_stress(ruu, rvv, rww, ruv, y_norm_vth, timestep)
531531
% Plot TKE budget
532532
function plot_tke_budget(T, P, D, y_norm_mth, mth, timestep)
533533

534-
% Normalizaiton
534+
% Normalization
535535
T = T / (8/mth); % T / (Delta U^3 / mth)
536536
P = P / (8/mth); % P / (Delta U^3 / mth)
537537
D = D / (8/mth); % D / (Delta U^3 / mth)

src/pre_process/m_perturbation.fpp

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

261261
! Generate a random unit vector (spherical distribution)
262262
function f_unit_vector(theta, eta) result(vec)
263-
real(wp) :: theta, eta
263+
real(wp), intent(in) :: theta, eta
264264
real(wp), dimension(3) :: vec
265265

266266
theta = 2.0_wp*pi*theta

0 commit comments

Comments
 (0)