ReadOutM

Chemical Reactor Design Toolbox Reference Manual

ChemReactorDesign.Basic.Solid.Sensors.ReadOutM

ReadOut.svg

The component reads out thermodynamic properties of the solid mixture. There is no change in concentrations, temperature or pressure across the sensor.

Ports

Conserving

  • Solid conserving port

    Port_A = Solid;  %
    

Output

  • Molar Specific Heat

    \begin{equation*}
{\overline c_{p}}(T) = \sum_{i}^{N} x_{i} \, c_{p_{i}}(T)
\end{equation*}
    out_cp = {0,'J/(mol*K)'};
    

    The signal is only available when the option outputCp is set to On.

  • Mass Density

    \begin{equation*}
{\overline \rho} = \sum_{i}^{N} \frac{x_{i} \, M_{i}}{{\overline V}_{i}}
\end{equation*}
    out_rho = {0,'g/l'};
    

    The signal is only available when the option outputRho is set to On.

  • Thermal Conductivity (after getConc)

    out_lambda = {1.0e-04,'W/(m*K)'}; 
    

    The signal is only available when the option outputLambda is set to On.

Parameters

Options

  • Option to select viscosity output

    outputMu = OnOff.Off;
    

    On | Off

  • Option to select mass density

    outputRho = OnOff.Off;
    

    On | Off

  • Option to select thermal conductivity output

    outputLambda = OnOff.Off;
    

    On | Off