CARdata/MARS documentation

describe metrics formula with cavets description

View the Project on GitHub befinvestments/spine

CV based flows along with supplementary metrics

This calculation method uses the Cv curve of a valve to estimate the flow rate through it. Valve Flow Coefficient (Cv) is the flow capability of a control valve at open conditions relative to the pressure drop across the valve.

Flow Control Valves have a table of open % vs Cv value. XV’s or SV’s have a single CV value for when they are fully open. In addition to the Cv value, numerous physical properties for the respective gas flowing through the valve are used to compute the flow rate.

It’s method of estimating the flow based on interpolation of the flow chart. In following gdoc gdoc you can find set of examples and CV tables for each CV based metric.

Second part flow recovery rate interpolated based on FL table.

formula

Each set of metrics based on following formula inputs: psig_in, psig_out, valve, temp, gas

valve is between 0 and 100 and it’s %

Intermediate variables are computed:

psia_in         = psig_in + 14.696        #absolute pressure
psia_out        = psig_out + 14.696       #absolute pressure
pressure_change = psia_out / psia_in
rankine_temp    = temp + 460
cv              = cv_interpolation(valve)
fl_recovery     = fl_interpolation(valve)

Following constant are in use:

Main formula returns lb/h:

At the end scfm = to_scfm(gas_type, lbh)

fcv_605_scfm, fcv_605_lbh, fcv_605_n2_use_lbh, fcv_605_n2_use_scfm

Inputs: psig_in=PT_605, psig_out=PT_250, valve=FCV605, temp=40°F, gas=Ar

Extra formula values:

gdoc