proper naming of output files

plotting z-positions and z-velocities, so name the output files say
'pos_z<something>' and 'vel_z<something>'
This commit is contained in:
danielque
2017-03-08 15:41:28 +01:00
parent b6d0bbf31a
commit 60e1f0c067
2 changed files with 5 additions and 5 deletions

View File

@ -23,11 +23,11 @@ set(gca,'FontSize',14)
axis([0 .25 0 6])
xlabel('time (s)')
ylabel('position (cm)')
title('Comparison of the y-position of two particles','FontSize',15)
title('Comparison of the z-position of two particles','FontSize',15)
legend('following particle','leading particle','following particle Glow.','leading particle Glow.')
set(gca,'FontSize',12)
#print('pos_y_two_part_rec_glow.png')
print('pos_y_two_part_rec_glow.eps','-deps2')
print('pos_z_two_part_rec_glow.eps','-deps2')
clear;
@ -53,4 +53,4 @@ title('Comparison of the settling velocity of two particles','FontSize',15)
legend('following particle','leading particle','following particle Glow.','leading particle Glow.')
set(gca,'FontSize',12)
%print('vel_y_two_part_rec_glow.png')
print('vel_y_two_part_rec_glow.eps','-deps2')
print('vel_z_two_part_rec_glow.eps','-deps2')

View File

@ -35,8 +35,8 @@ if [ $runOctave == "true" ]
cd $casePath/CFD/octave
octave postproc.m
evince pos_y_two_part_rec_glow.eps
evince vel_y_two_part_rec_glow.eps
evince pos_z_two_part_rec_glow.eps
evince vel_z_two_part_rec_glow.eps
#display pos_y_two_part_rec_glow.png &
#display vel_y_two_part_rec_glow.png &
fi