From bc8eafac2fea9e86b7573a289b7c4e7faa2b87e9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Luk=C3=A1=C5=A1=20Ji=C5=99i=C5=A1t=C4=9B?= Date: Mon, 16 Dec 2024 10:33:05 +0100 Subject: [PATCH] Fix bar to Pa calculation --- process_file.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process_file.m b/process_file.m index c7ed1d1..a5ac016 100644 --- a/process_file.m +++ b/process_file.m @@ -1,5 +1,5 @@ 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 -- 2.30.2