Skip to main content

Stream

Struct Stream 

Source
pub struct Stream {
    pub capacitance_rate: CapacitanceRate,
    pub inlet_temperature: ThermodynamicTemperature,
    pub outlet_temperature: ThermodynamicTemperature,
    pub heat_flow: HeatFlow,
}
Expand description

A fully-resolved heat exchanger stream.

Fields§

§capacitance_rate: CapacitanceRate

Effective capacitance rate for the stream.

§inlet_temperature: ThermodynamicTemperature

Temperature at the exchanger inlet.

§outlet_temperature: ThermodynamicTemperature

Temperature after the stream leaves the exchanger.

When the capacitance rate tends to infinity this matches the inlet temperature.

§heat_flow: HeatFlow

Net heat flow direction and magnitude for the stream.

Implementations§

Source§

impl Stream

Source

pub fn new_from_heat_flow( capacitance_rate: CapacitanceRate, inlet_temperature: ThermodynamicTemperature, heat_flow: HeatFlow, ) -> Self

Construct a fully-resolved stream from a known heat flow.

Given the stream’s inlet temperature, capacitance rate, and heat flow, this calculates the outlet temperature using the energy balance: Q = C * (T_out - T_in).

This constructor is useful when you know the heat transfer rate for a stream (for example, from measurements or system specifications) and need to determine the resulting outlet temperature.

Source

pub fn new_from_outlet_temperature( capacitance_rate: CapacitanceRate, inlet_temperature: ThermodynamicTemperature, outlet_temperature: ThermodynamicTemperature, ) -> Self

Construct a fully-resolved stream from known inlet and outlet temperatures.

Given the stream’s inlet and outlet temperatures along with its capacitance rate, this calculates the heat flow using the energy balance: Q = C * (T_out - T_in).

The heat flow direction is automatically determined from the temperature change:

This constructor is useful when you know both inlet and outlet temperatures for a stream (for example, from measurements) and need to determine the heat transfer rate.

§Panics

Panics if the temperatures cannot be compared (e.g., contain NaN values) or if the calculated heat rate magnitude is invalid (which should not occur in normal use).

Trait Implementations§

Source§

impl Clone for Stream

Source§

fn clone(&self) -> Stream

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Stream

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<Stream> for StreamInlet

Source§

fn from(stream: Stream) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for Stream

Source§

fn eq(&self, other: &Stream) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for Stream

Source§

impl StructuralPartialEq for Stream

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.