From: Lukáš Jiřiště Date: Mon, 16 Dec 2024 09:33:05 +0000 (+0100) Subject: Fix bar to Pa calculation X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;ds=inline;p=analyse_servo.git Fix bar to Pa calculation --- 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