Skip to content

Commit d623ed4

Browse files
committed
Tweaking Julia code comments
1 parent 1bbca07 commit d623ed4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

heatEqAttempt.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ T = repeat(t_vals', length(x), 1) # N × nt (t_vals' transposed to row
157157
158158
# Surface plot
159159
surface(X, T, Umat, xlabel="x", ylabel="t", zlabel="u(x,t)",
160-
title="Heat Equation Evolution", legend=false)
160+
title="Heat equation", legend=false)
161161
savefig(joinpath(@OUTPUT, "HeatEquation.svg"))
162162
163163
# Animate
@@ -189,14 +189,14 @@ anim = @animate for i in 1:nt_uniform
189189
end
190190
191191
Deltat = t_uniform[2]-t_uniform[1];
192-
mp4(anim, joinpath(@OUTPUT, "heat_evolution.mp4"), fps = 1/Deltat)
192+
mp4(anim, joinpath(@OUTPUT, "heat.mp4"), fps = 1/Deltat)
193193
```
194194

195195
\fig{HeatEquation}
196196

197197
~~~
198198
<video width="800" controls>
199-
<source src="/assets/heatEqAttempt/code/output/heat_evolution.mp4" type="video/mp4">
199+
<source src="/assets/heatEqAttempt/code/output/heat.mp4" type="video/mp4">
200200
Your browser does not support the video tag.
201201
</video>
202202
~~~

0 commit comments

Comments
 (0)