SensorAcross

Chemical Reactor Design Toolbox Reference Manual

ChemReactorDesign.Basic.Liquid.Sensors.SensorAcross

Sensor.svg

Description

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

Ports

Conserving

  • Liquid conserving port

    Port_A = Liquid;  %
    

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.