Fix bar to Pa calculation trunk
authorLukáš Jiřiště <jiriste@icpf.cas.cz>
Mon, 16 Dec 2024 09:33:05 +0000 (10:33 +0100)
committerLukáš Jiřiště <jiriste@icpf.cas.cz>
Mon, 16 Dec 2024 09:35:49 +0000 (10:35 +0100)
process_file.m

index c7ed1d1c92b5c3d3326266ab0dc551db9cd3b3ae..a5ac016e20627ee1079a0e71d88e1a970e95970d 100644 (file)
@@ -1,5 +1,5 @@
 function [p n] = process_file(V_fill_ul, V_cell_ul, Vvz_ul)
        [name path] = uigetfile();
        data = importdata([path name]);
 function [p n] = process_file(V_fill_ul, V_cell_ul, Vvz_ul)
        [name path] = uigetfile();
        data = importdata([path name]);
-       [p n] = process_experiment(data(:,1)', data(:,2)'*1e6, V_fill_ul/1e9, V_cell_ul/1e9, Vvz_ul/1e9);
+       [p n] = process_experiment(data(:,1)', data(:,2)'*1e5, V_fill_ul/1e9, V_cell_ul/1e9, Vvz_ul/1e9);
 end
 end