-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathkinetics.m
21 lines (14 loc) · 822 Bytes
/
kinetics.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function [nohmic, nact, nconH2, nconO2, kinetic_pot] = kinetics(J, To, Po, Rxn, ...
YSZ_t, NIYSZ_t, LSM_t, ...
NIYSZ_Porosity, NIYSZ_Torosity, NIYSZ_radius, ...
LSM_Porosity, LSM_Torosity, LSM_radius, o_ratio)
%UNTITLED5 Summary of this function goes here
% Detailed explanation goes here
nohmic = nohmic_function(J, YSZ_t, To); %thickness (um)
nact = nact_function(To, J, Rxn);
nconH2 = nconH2_function(J, To, Po, Rxn, NIYSZ_t, ...
NIYSZ_Porosity, NIYSZ_Torosity, NIYSZ_radius);
nconO2 = nconO2_function(J, To, Po, o_ratio, LSM_t, ...
LSM_Porosity, LSM_Torosity, LSM_radius);
kinetic_pot = (nohmic + nact + nconH2 + nconO2);
end