Name | Description |
---|---|
Gas | H2O gas |
Ionomer | H2O in ionomer |
Liquid | H2O liquid |
p_sat | Saturation pressure (psat) as a function of temperature |
lambda_eq | Equilibrium hydration of ionomer in contact with vapor (λeq) as a function of relative humidity |
Type | Name | Default | Description |
---|---|---|---|
TemperatureAbsolute | T | Temperature [L2.M/(N.T2)] |
Type | Name | Description |
---|---|---|
PressureAbsolute | p_sat | Saturation pressure [M/(L.T2)] |
function p_sat "Saturation pressure (psat) as a function of temperature" extends Modelica.Icons.Function; input Q.TemperatureAbsolute T "Temperature"; output Q.PressureAbsolute p_sat "Saturation pressure"; algorithm p_sat := Modelica.Media.Air.MoistAir.saturationPressureLiquid(T/U.K)*U.Pa; end p_sat;
This implements the correlation by Springer et al. [Springer1991] for the ratio of H2O molecules to SO3- units of Nafion® EW 1100 series ionomer.
Extends from Modelica.Icons.Function (Icon for functions).
Type | Name | Default | Description |
---|---|---|---|
NumberAbsolute | RH | Relative humidity [1] |
Type | Name | Description |
---|---|---|
Real | lambda | Mole ratio of H2O to SO3- |
function lambda_eq "Equilibrium hydration of ionomer in contact with vapor (λeq) as a function of relative humidity" extends Modelica.Icons.Function; input Q.NumberAbsolute RH "Relative humidity"; output Real lambda "Mole ratio of H2O to SO3-"; algorithm lambda := 0.043 + 17.81*RH - 39.85*RH^2 + 36*RH^3; end lambda_eq;