function alpha = calc_alpha_simple(params,V,z)
% params: [kf, zf, kr, zr];
R = 8.314;
T = 310;
F = 96485;

alpha = params(1)*exp(z*F*V/R/T);

end