OpenFCST: The open-source Fuel Cell Simulation Toolbox
|
Class used to evaluate the volumetric condensation and evaporation and the interfacial surface area. More...
#include <data_out_capillary.h>
Constructors, destructor, and initalization | |
std::vector< boost::shared_ptr < FuelCellShop::Layer::PorousLayer < dim > > > | porous_layers |
Pointer to catalyst layer object. More... | |
FuelCell::SystemManagement * | system_management |
Pointer to system management. More... | |
FuelCell::OperatingConditions * | opCond |
Pointer to operating conditions class. More... | |
double | kc |
Condensation rate constant. More... | |
double | ke |
Evaporation rate constant. More... | |
PhaseChangeDataOut (FuelCell::SystemManagement *, std::vector< boost::shared_ptr< FuelCellShop::Layer::PorousLayer< dim > > >, FuelCell::OperatingConditions *, double, double) | |
Constructor of our class. More... | |
virtual | ~PhaseChangeDataOut () |
Destructor. More... | |
virtual std::vector< std::string > | get_names () const |
Function that provides the names of the output variables. More... | |
virtual std::vector < DataComponentInterpretation::DataComponentInterpretation > | get_data_component_interpretation () const |
Function that states if the output functions are a scalar or a vector. More... | |
virtual UpdateFlags | get_needed_update_flags () const |
Flags to be updated in each cell when computing the solution. More... | |
virtual void | compute_derived_quantities_vector (const std::vector< Vector< double > > &uh, const std::vector< std::vector< Tensor< 1, dim > > > &, const std::vector< std::vector< Tensor< 2, dim > > > &, const std::vector< Point< dim > > &, const std::vector< Point< dim > > &, const types::material_id &mat_id, std::vector< Vector< double > > &computed_quantities) const |
Member function used to calculate the phase change parameters. More... | |
Class used to evaluate the volumetric condensation and evaporation and the interfacial surface area.
This class is used in the data_out section of any application. It requires a pointer to SystemManagement, a pointer to the catalyst layer object for which you would like to compute the current density, and a pointer to OperatingConditions object.
FuelCellShop::PostProcessing::PhaseChangeDataOut< dim >::PhaseChangeDataOut | ( | FuelCell::SystemManagement * | , |
std::vector< boost::shared_ptr< FuelCellShop::Layer::PorousLayer< dim > > > | , | ||
FuelCell::OperatingConditions * | , | ||
double | , | ||
double | |||
) |
Constructor of our class.
|
inlinevirtual |
Destructor.
|
virtual |
Member function used to calculate the phase change parameters.
Its inputs are
The derived quantities are returned in the computed_quantities vector.
Remember that this function may only use data for which the respective update flag is specified by either the constructor or get_needed_update_flags.
|
virtual |
Function that states if the output functions are a scalar or a vector.
|
virtual |
Function that provides the names of the output variables.
In this case, current density, overpotential, effectiveness, and oxygen coverages (if applicable). The latter is set to one if the model is macro-homogeneous.
|
virtual |
Flags to be updated in each cell when computing the solution.
|
private |
Condensation rate constant.
|
private |
Evaporation rate constant.
|
private |
Pointer to operating conditions class.
|
private |
Pointer to catalyst layer object.
|
private |
Pointer to system management.