Skip to content

Commit ae2dd2c

Browse files
authored
Merge pull request #15222 from rmcdermo/master
Matlab: remove double quotes from header name
2 parents a8aa556 + 147b761 commit ae2dd2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Utilities/Matlab/scripts/heated_channel.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@
9898

9999
M = importdata([outdir,devcfile{i}],',',2);
100100

101-
rho = M.data(end,strcmp(M.colheaders,'"RHO"')); % should be about 1.19
101+
rho = M.data(end,strcmp(M.colheaders,'RHO')); % should be about 1.19
102102
u_tau = sqrt(tau_w/rho);
103103
delta_nu = (mu/rho)/u_tau;
104104

105-
j1 = find(strcmp(M.colheaders,'"HF0B"'));
106-
j2 = find(strcmp(M.colheaders,'"HF0T"'));
105+
j1 = find(strcmp(M.colheaders,'HF0B'));
106+
j2 = find(strcmp(M.colheaders,'HF0T'));
107107
q_w = mean(M.data(end,j1:j2));
108108
T_tau = q_w/(rho*u_tau*cp);
109109

0 commit comments

Comments
 (0)