SensorThrough

Chemical Reactor Design Toolbox Reference Manual

ChemReactorDesign.Basic.Liquid.Sensors.SensorThrough

Sensor.svg

The component measures molar flow rates, heat flow and the volumetric flow rate in a liquid network. There is no change in concentrations, temperature or pressure across the sensor. The positive flow direction is from port A to port B.

Ports

Conserving

  • Liquid conserving port

    Port_A = Liquid;  %
    
  • Liquid conserving port

    Port_B = Liquid;  %
    

Output

  • Molar Flow

    Fout = {zeros(length(selectSpecies),1),'mol/s'};  
    

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

    Use the array selectSpecies to select respective species for output.

  • Volumetric Flow

    qout = {0,'l/s'};
    

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

  • Energy Flow

    PhiOut = {0,'W'};
    

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

Parameters

  • Species Selector

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

Options

  • Option to select molar flow output

    fluxOutput = FlowOut.Off;
    

    On | Off

  • Option to select volumetric flow output

    flowOutput = OnOff.Off;
    

    On | Off

  • Option to select energy flow output

    energyOutput = OnOff.Off; 
    

    On | Off