public class Node
extends java.lang.Object
Constructor and Description |
---|
Node()
Creates a new instance of Node with a basid FMix fluid, an pressure of
101.325 kPa, 20.0 °C of temperature,
0.0 of concentration, and 0.0 kg/s of mass flow.
|
Node(Elements.FMix fluid,
double tem,
double con,
double mf)
Creates a new Node instance with a specified FMix fluid and fixed temperature
(°C), concentration (kg_salt/kg_sol), mass flow (kg/s), with a pressure of
101.325 kPa.
|
Modifier and Type | Method and Description |
---|---|
double |
getCp()
Constant pressure specific heat (kJ/kg-K)
|
double |
getDensity()
Fluid density (kg/m^3)
|
Elements.FMix |
getFluid()
FMix Fluid
|
double |
getHum()
Equilibrium humidity ration of fluid solution (kg_w/kg_da)
|
double |
getMFlow()
Fluid mass flow (kg/s)
|
double |
getPressure()
Absolute pressure of fluid (kPa)
|
double |
getSpEnthalpy()
Specific enthalpy of fluid (kJ/kg)
|
double |
getTem()
Temperature of fluid (°C)
|
double |
getViscosity()
Dynamic viscosity of fluid (uPa-s)
|
double |
getXCon()
Concentration of solute in the fluid solution (kg_solute/kg_solution)
|
void |
setFluid(Elements.FMix fluid)
Adjust the FMix fluid to use
|
void |
setHum(double hum)
Adjust the equilibrium humidity ratio of fluid solution (kg_w/kg_da)
|
void |
setMFlow(double mf)
Adjust fluid mass flow (kg/s)
|
void |
setPressure(double pre)
Adjust the absolute pressure of fluid (kPa)
|
void |
setTem(double tem)
Adjust the temperature of fluid (°C)
|
void |
setXCon(double con)
Adjust the concentration of solute in the fluid solution (kg_solute/kg_solution)
|
public Node()
FMix
public Node(Elements.FMix fluid, double tem, double con, double mf)
fluid
- FMix fluid that pass through the Nodetem
- Temperature of fluid in Node (°C)con
- Concentration of salt in the desiccant (kg_salt/kg_sol)mf
- Mass flow of fluid (kg/s)FMix
public void setFluid(Elements.FMix fluid)
fluid
- FMix fluidFMix
public Elements.FMix getFluid()
FMix
public void setTem(double tem)
tem
- Temperature double value (°C)public double getTem()
public void setXCon(double con)
con
- Concentration of solute double value (kg_solute/kg_solution)public double getXCon()
public void setHum(double hum)
hum
- Equilibrium humidity ratio double value (kg_w/kg_da)public double getHum()
public void setPressure(double pre)
pre
- Absolute pressure double value (kPa)public double getPressure()
public void setMFlow(double mf)
mf
- Fluid mass flow double value (kg/s)public double getMFlow()
public double getDensity()
public double getCp()
public double getSpEnthalpy()
public double getViscosity()