Skip to content

Add residual implementation for visocisities #4

@daklauss

Description

@daklauss

In GitLab by @schmoelder on Jul 2, 2024, 15:13

There are different models for calculating viscosities, see also Wikipedia.

At first, we will start with a simple Arrhenius model

Arrhenius

$$ \ln \eta_{mix} = \sum_{i=1}^{N} x_{i} \ln \eta_{i} $$

where $\eta_{mix}$ is the viscosity of the liquid mixture, $\eta_{i}$ is the viscosity for fluid component $i$ when flowing as a pure fluid, and $x_{i}$ is the molar fraction of component $i$ in the liquid mixture.

Note, this requires knowing the viscosities for each component of the mixture. To simplify this, we will at first make the following assumptions:

  • Dissolved components (i.e. salts, proteins, sugars etc) are highly diluted (low concentration) and do not contribute to the mixture's viscosity. Consequently, we will only consider the solvent's (e.g. water / EtOH) viscosity.
  • Missing: How to justify x_i = Q_i/Q_tot (see below)

Then, we can also formulate the mixing viscosity of different streams as such:

$$ \ln \eta_{mix, u} = \sum_{j=1}^{N_{inlets}} \frac{Q_{j}}{Q_{total}} \ln \eta_{j} $$

where $\eta_{mix, u}$ is the viscosity of the liquid mixture entering unit operation $u$, $\eta_{j}$ is the viscosity of the liquid leaving the upstream unit operation $j$, and $Q_{j}$ is the flow rate of that unit operation flowing into unit operation $u$.

$$ Q_{total} = \sum_{j=1}^{N_{inlets}} Q_j $$

While we already understand how to calculate this on system level (when coupling unit operations), we still don't know how to implement this in residual form for the unit operation. Maybe @AntoniaBerger can help us? :nerd:

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions