SensorAcross

Chemical Reactor Design Toolbox Reference Manual

ChemReactorDesign.Basic.Gas.Sensors.SensorAcross

Sensor.svg

Description

The component measures temperature, concentrations or mole fractions for selected species and pressure in an gas network. The concentrations are obtained by called the function getConc. There are no flows through the sensor.

Ports

Conserving

  • Gas conserving port

    Port_A = Gas;  %
    

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 concentrationsOutput is set to On and fractionsOutput is set to Off.

    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 concentrationsOutput is set to On and fractionsOutput is set to On.

    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 pressure output

    pressureOutput = OnOff.Off;
    

    On | Off

  • Option to select temperature output

    temperatureOutput = OnOff.Off;
    

    On | Off

  • Option to select concentration output

    concentrationsOutput = OnOff.Off; 
    

    On | Off

  • Option to select mole fraction output

    fractionsOutput = OnOff.Off
    

    On | Off This parameter is only available when the option concentrationsOutput is set of On.