From 8708f060e3b1e8254aee3a73c59ae415a360447f Mon Sep 17 00:00:00 2001 From: Antoine Cyril David Hoffmann <ahoffman@spcpc606.epfl.ch> Date: Mon, 30 Aug 2021 15:52:20 +0200 Subject: [PATCH] to plot the evolution of parameters during a run --- matlab/plot_param_evol.m | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 matlab/plot_param_evol.m diff --git a/matlab/plot_param_evol.m b/matlab/plot_param_evol.m new file mode 100644 index 00000000..fc3c8f8e --- /dev/null +++ b/matlab/plot_param_evol.m @@ -0,0 +1,18 @@ +figure; hold on; set(gcf, 'Position', [100, 100, 400, 1500]) +subplot(4,1,1); + plot(TJOB_SE,NU_EVOL,'DisplayName','$\nu$'); + xlim([TJOB_SE(1) TJOB_SE(end)]);legend('show');grid on; + +subplot(4,1,2); + plot(TJOB_SE,MU_EVOL,'DisplayName','$\mu$'); + xlim([TJOB_SE(1) TJOB_SE(end)]);legend('show');grid on; + +subplot(4,1,3); + plot(TJOB_SE,1./ETAN_EVOL,'DisplayName','$\eta$'); + xlim([TJOB_SE(1) TJOB_SE(end)]);legend('show');grid on; + +subplot(4,1,4); + plot(TJOB_SE,L_EVOL,'DisplayName','$L$'); + xlim([TJOB_SE(1) TJOB_SE(end)]);legend('show');grid on; + + xlabel('$t c_s/R$'); -- GitLab