SensorAcross

Chemical Reactor Design Toolbox Reference Manual

ChemReactorDesign.Basic.Solid.Sensors.SensorAcross

Sensor.svg

Description

The component measures temperature, concentrations, mole fractions or mass densities for selected species and pressure in a solid network. There are no flows through the sensor.

Ports

Conserving

  • Solid conserving port

    Port_A = Solid;  %
    

Output

  • Pressure

    pout = {1,'bar'};
    

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

  • Concentration

    cout = {zeros(length(selectSpecies),1),'mol/l'};  
    

    The signal is only available when the option output is set to Concentrations.

    Use the array selectSpecies to select respective species for output.

  • Mass Density

    rhoout = {zeros(length(selectSpecies),1),'g/l'};  
    

    The signal is only available when the option output is set to Densities.

    Use the array selectSpecies to select respective species for output.

  • Mole Fraction

    xout = {zeros(length(selectSpecies),1),'1'};
    

    The signal is only available when the option output is set to MoleFractions.

    Use the array selectSpecies to select respective species for output.

  • Temperature

    Tout = {298.15,'K'};
    

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

Parameters

  • Species Selector

    selectSpecies = {[1,2],'1'};
    

Options

  • Option to select output

    output = OutputSelect.None;
    

    None | Concentrations | MoleFractions | Densities

  • Option to select temperature output

    temperatureOutput = OnOff.Off;
    

    On | Off