Flow123d
JS_before_hm-1711-g43b724b37
|
Go to the documentation of this file.
74 "SPECIAL PURPOSE. Computes error norms of the solution, particulary suited for non-compatible coupling models.")
76 "Output file with raw data from MH module.")
81 "Flow_Darcy_MH_specific",
105 .
description(
"Subdomain ids of the domain decomposition.");
118 .
description(
"Error norm of the pressure solution. [Experimental]");
121 .
description(
"Error norm of the velocity solution. [Experimental]");
124 .
description(
"Error norm of the divergence of the velocity solution. [Experimental]");
141 if (in_rec_specific) {
151 if (in_rec_specific->opt_val(
"raw_flow_output", raw_output_file_path))
157 WarningOut() <<
"Raw output is not available in parallel computation. MPI size: " << mpi_size <<
"\n";
161 MessageOut() <<
"Opening raw flow output: " << raw_output_file_path <<
"\n";
164 }
INPUT_CATCH(FilePath::ExcFileOpen, FilePath::EI_Address_String, (*in_rec_specific))
169 auto fields_array = in_rec_specific->val<
Input::Array>(
"fields");
170 if(fields_array.size() > 0){
205 uint p_elem_component = 1;
283 START_TIMER(
"DarcyFlowMHOutput::output_internal_flow_data");
289 raw_output_file <<
"// fields:\n//ele_id ele_presure flux_in_barycenter[3] n_sides side_pressures[n] side_fluxes[n]\n";
297 data = d->data_.get();
301 data = d->data_.get();
307 auto permutation_vec = data->
dh_->mesh()->element_permutations();
308 for (
unsigned int i_elem=0; i_elem<data->
dh_->n_own_cells(); ++i_elem) {
318 for (
unsigned int i = 0; i < 3; i++)
325 unsigned int lid = ele->
n_sides() + 1;
326 for (
unsigned int i = 0; i < ele->
n_sides(); i++, lid++) {
330 for (
unsigned int i = 0; i < ele->
n_sides(); i++) {
361 unsigned int dim = fe_values.
dim();
375 for (
unsigned int li = 0; li < ele->
n_sides(); li++) {
387 double velocity_diff=0, divergence_diff=0, pressure_diff=0, diff;
391 double mean_x_squared=0;
392 for(
unsigned int i_node=0; i_node < ele->
n_nodes(); i_node++ )
393 for(
unsigned int j_node=0; j_node < ele->
n_nodes(); j_node++ )
395 mean_x_squared += (i_node == j_node ? 2.0 : 1.0) / ( 6 * dim )
396 * arma::dot( *ele.
node(i_node), *ele.
node(j_node));
399 for(
unsigned int i_point=0; i_point < fe_values.
n_points(); i_point++) {
403 analytical = anal_sol.
value(q_point, ele );
404 for(
unsigned int i=0; i< 3; i++) anal_flux[i] = analytical[i+1];
408 for(
unsigned int i_shape=0; i_shape < ele->
n_sides(); i_shape++) {
409 unsigned int oposite_node = 0;
414 default:
ASSERT(
false)(dim).error(
"Unsupported FE dimension.");
break;
417 diff += fluxes[ i_shape ] *
418 ( arma::dot( q_point, q_point )/ 2
420 - arma::dot( q_point, *ele.
node(oposite_node) )
421 + arma::dot( ele.
centre(), *ele.
node(oposite_node) )
425 diff = - (1.0 / conductivity) * diff / dim / ele.
measure() / cross + pressure_mean ;
426 diff = ( diff - analytical[0]);
427 pressure_diff += diff * diff * fe_values.
JxW(i_point);
431 flux_in_q_point.zeros();
432 for(
unsigned int i_shape=0; i_shape < ele->
n_sides(); i_shape++) {
433 flux_in_q_point += fluxes[ i_shape ]
438 flux_in_q_point -= anal_flux;
439 velocity_diff += dot(flux_in_q_point, flux_in_q_point) * fe_values.
JxW(i_point);
443 for(
unsigned int i_shape=0; i_shape < ele->
n_sides(); i_shape++) diff += fluxes[ i_shape ];
444 diff = ( diff / ele.
measure() / cross - analytical[4]);
445 divergence_diff += diff * diff * fe_values.
JxW(i_point);
454 velocity_data.set( idx, sqrt(velocity_diff) );
461 pressure_data.set( idx, sqrt(pressure_diff) );
465 div_data.set( idx, sqrt(divergence_diff) );
466 result.
div_error[dim-1] += divergence_diff;
472 quad(
QGauss::make_array(order)),
497 for(
unsigned int j=0; j<3; j++){
507 switch (dh_cell.dim()) {
521 for(
unsigned int j=0; j<3; j++){
528 os <<
"l2 norm output\n\n"
FieldCommon & units(const UnitSI &units)
Set basic units of the field.
static std::shared_ptr< OutputTime > create_output_stream(const std::string &equation_name, const Input::Record &in_rec, const std::shared_ptr< TimeUnitConversion > &time_unit_conv)
This method delete all object instances of class OutputTime stored in output_streams vector.
arma::Col< IntIdx > LocDofVec
arma::vec::fixed< spacedim > point(const unsigned int point_no)
Return coordinates of the quadrature point in the actual cell system.
virtual void prepare_specific_output(Input::Record in_rec)
Definitions of Raviart-Thomas finite elements.
void output()
Calculate values for output.
const FEValuesViews::Vector< spacedim > & vector_view(unsigned int i) const
Accessor to vector values of multicomponent FE.
static UnitSI & dimensionless()
Returns dimensionless unit.
unsigned int n_points() const
Returns the number of quadrature points.
bool set_time(const TimeStep &time, LimitSide limit_side)
FieldPython< 3, FieldValue< 3 >::Vector > ExactSolution
void initialize(std::shared_ptr< OutputTime > stream, Mesh *mesh, Input::Record in_rec, const TimeGovernor &tg)
std::shared_ptr< TimeUnitConversion > get_unit_conversion() const
Getter for time unit conversion object.
bool is_output_specific_fields
Output specific field stuff.
OutputSpecificFields output_specific_fields
#define ASSERT(expr)
Allow use shorter versions of macro names if these names is not used with external library.
void compute_l2_difference()
double JxW(const unsigned int point_no)
Return the product of Jacobian determinant and the quadrature weight at given quadrature point.
virtual void prepare_output(Input::Record in_rec)
Class FEValues calculates finite element data on the actual cells such as shape function values,...
Dedicated class for storing path to input and output files.
unsigned int dim() const
Return dimension of reference space.
@ update_values
Shape function values.
@ update_quadrature_points
Transformed quadrature points.
FieldCommon & flags(FieldFlag::Flags::Mask mask)
Declaration of class which handles the ordering of degrees of freedom (dof) and mappings between loca...
std::string format(CStringRef format_str, ArgList args)
Lumped mixed-hybrid model of linear Darcy flow, possibly unsteady.
void open_stream(Stream &stream) const
std::shared_ptr< OutputTime > output_stream
std::shared_ptr< DOFHandlerMultiDim > dh_
full DOF handler represents DOFs of sides, elements and edges
Field< 3, FieldValue< 3 >::Scalar > pressure_diff
static constexpr Mask equation_external_output
Match an output field, that can be also copy of other field.
Standard quantities for output in DarcyFlowMH.
virtual unsigned int n_elements() const
Returns count of boundary or bulk elements.
Field< 3, FieldValue< 3 >::Scalar > region_id
const Input::Type::Instance & make_output_type(const string &equation_name, const string &aditional_description="")
Definitions of basic Lagrangean finite elements with polynomial shape functions.
static const Input::Type::Instance & get_input_type(FieldSet &eq_data, const std::string &equation_name)
std::vector< FEValues< 3 > > mixed_fe_values(QGauss::array &quadrature, MixedPtr< FiniteElement > fe, UpdateFlags flags)
std::shared_ptr< FieldFE< 3, FieldValue< 3 >::Scalar > > div_diff_ptr
OutputFields output_fields
DHCellAccessor cell_with_other_dh(const DOFHandlerMultiDim *dh) const
Create new accessor with same local idx and given DOF handler. Actual and given DOF handler must be c...
static constexpr Mask equation_result
Match result fields. These are never given by input or copy of input.
Output class for darcy_flow_mh model.
Specific quantities for output in DarcyFlowMH - error estimates etc.
Definitions of particular quadrature rules on simplices.
std::shared_ptr< FieldFE< 3, FieldValue< 3 >::Scalar > > vel_diff_ptr
void set(FieldBasePtr field, double time, std::vector< std::string > region_set_names={"ALL"})
Field< 3, FieldValue< 3 >::Scalar > velocity_diff
const TimeStep & step(int index=-1) const
Field< 3, FieldValue< 3 >::Scalar > div_diff
const ElementAccessor< 3 > elm() const
Return ElementAccessor to element of loc_ele_idx_.
static auto subdomain(Mesh &mesh) -> IndexField
Class for representation SI units of Fields.
std::vector< FEValues< 3 > > fv_rt
std::shared_ptr< FieldFE< 3, FieldValue< 3 >::Scalar > > pressure_diff_ptr
static unsigned int oposite_node(unsigned int sid)
static Input::Type::Record & get_input_type()
DarcyFlowMHOutput(DarcyFlowInterface *flow, Input::Record in_rec)
static const Input::Type::Instance & get_input_type_specific()
Container for various descendants of FieldCommonBase.
unsigned int n_dofs() const
Return number of dofs on given cell.
void output_internal_flow_data()
NodeAccessor< 3 > node(unsigned int ni) const
virtual const Value::return_type & value(const Point &p, const ElementAccessor< spacedim > &elm) const
Symmetric Gauss-Legendre quadrature formulae on simplices.
static auto region_id(Mesh &mesh) -> IndexField
ofstream raw_output_file
Raw data output file.
void output(TimeStep step)
std::vector< IntersectionLocal< 1, 2 > > intersection_storage12_
Stores 1D-2D intersections.
struct DarcyFlowMHOutput::DiffData diff_data
unsigned int n_sides() const
Cell accessor allow iterate over DOF handler cells.
std::vector< int > velocity_mask
Global macros to enhance readability and debugging, general constants.
std::vector< FEValues< 3 > > fe_values
void set_mesh(const Mesh &mesh)
#define WarningOut()
Macro defining 'warning' record of log.
DarcyFlowInterface * darcy_flow
MixedPtr< FE_P_disc > fe_p0
bool compute_errors_
Specific experimental error computing.
Mixed-hybrid model of linear Darcy flow, possibly unsteady.
mixed-hybrid model of linear Darcy flow, possibly unsteady.
@ update_JxW_values
Transformed quadrature weights.
const Input::Type::Instance & make_output_type_from_record(Input::Type::Record &in_rec, const string &equation_name, const string &aditional_description="")
LocDofVec get_loc_dof_indices() const
Returns the local indices of dofs associated to the cell on the local process.
MortarMethod mortar_method_
virtual const Value::return_type & value(const Point &p, const ElementAccessor< spacedim > &elm)
unsigned int idx() const
Return local idx of element in boundary / bulk part of element vector.
UpdateFlags
Enum type UpdateFlags indicates which quantities are to be recomputed on each finite element cell.
std::shared_ptr< SubDOFHandlerMultiDim > dh_
double get(unsigned int pos) const
Return value on given position.
void reinit(const ElementAccessor< spacedim > &cell)
Update cell-dependent data (gradients, Jacobians etc.)
Field< 3, FieldValue< 3 >::Scalar > subdomain
void set_python_field_from_file(const FilePath &file_name, const string &func_name)
virtual ~DarcyFlowMHOutput()
FieldCommon & description(const string &description)
Field< 3, FieldValue< 3 >::VectorFixed > field_ele_velocity
MixedMeshIntersections & mixed_intersections()
#define DebugOut()
Macro defining 'debug' record of log.
#define ASSERT_PTR(ptr)
Definition of assert macro checking non-null pointer (PTR)
void l2_diff_local(DHCellAccessor dh_cell, FEValues< 3 > &fe_values, FEValues< 3 > &fv_rt, FieldPython< 3, FieldValue< 3 >::Vector > &anal_sol, DiffData &result)
Computes L2 error on an element.
Mixed-hybrid model of linear Darcy flow, possibly unsteady.
Field< 3, FieldValue< 3 >::Scalar > cross_section
Field< 3, FieldValue< 3 >::Scalar > conductivity
#define START_TIMER(tag)
Starts a timer with specified tag.
unsigned int index() const
double measure() const
Computes the measure of the element.
unsigned int n_nodes() const
FieldCommon & name(const string &name)
Implementation of range helper class.
arma::vec::fixed< spacedim > centre() const
Computes the barycenter.
#define MessageOut()
Macro defining 'message' record of log.
Classes with algorithms for computation of intersections of meshes.