Flow123d  JS_before_hm-1003-g4e68d2c
darcy_flow_mh_output.cc
Go to the documentation of this file.
1 /*!
2  *
3  * Copyright (C) 2015 Technical University of Liberec. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License version 3 as published by the
7  * Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12  *
13  *
14  * @file darcy_flow_mh_output.cc
15  * @ingroup flow
16  * @brief Output class for darcy_flow_mh model.
17  * @author Jan Brezina
18  */
19 
20 #include <vector>
21 #include <iostream>
22 #include <sstream>
23 #include <string>
24 
25 #include <system/global_defs.h>
26 
27 #include "flow/darcy_flow_mh.hh"
28 #include "flow/darcy_flow_lmh.hh"
29 #include "flow/assembly_mh.hh"
30 #include "flow/assembly_lmh.hh"
32 
33 #include "io/output_time.hh"
34 #include "io/observe.hh"
35 #include "system/system.hh"
36 #include "system/sys_profiler.hh"
37 #include "system/index_types.hh"
38 
39 #include "fields/field_set.hh"
40 #include "fem/dofhandler.hh"
41 #include "fem/fe_values.hh"
42 #include "fem/fe_rt.hh"
43 #include "fem/fe_values_views.hh"
45 #include "fields/field_fe.hh"
47 #include "fields/generic_field.hh"
48 
49 #include "mesh/mesh.h"
50 #include "mesh/partitioning.hh"
51 #include "mesh/accessors.hh"
52 #include "mesh/node_accessor.hh"
53 #include "mesh/range_wrapper.hh"
54 
55 // #include "coupling/balance.hh"
58 
59 namespace it = Input::Type;
60 
61 
62 const it::Instance & DarcyFlowMHOutput::get_input_type(FieldSet& eq_data, const std::string &equation_name) {
64  output_fields += eq_data;
65  return output_fields.make_output_type(equation_name, "");
66 }
67 
68 
70 
71  static it::Record& rec = it::Record("Output_DarcyMHSpecific", "Specific Darcy flow MH output.")
73  .declare_key("compute_errors", it::Bool(), it::Default("false"),
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.")
77  .close();
78 
80  return output_fields.make_output_type_from_record(rec,
81  "Flow_Darcy_MH_specific",
82  "");
83 }
84 
85 
88 {
89 
90 // *this += field_ele_pressure.name("pressure_p0_old").units(UnitSI().m()) // TODO remove: obsolete field
91 // .flags(FieldFlag::equation_result)
92 // .description("Pressure solution - P0 interpolation.");
93 // *this += field_node_pressure.name("pressure_p1").units(UnitSI().m())
94 // .flags(FieldFlag::equation_result)
95 // .description("Pressure solution - P1 interpolation.");
96 // *this += field_ele_piezo_head.name("piezo_head_p0_old").units(UnitSI().m()) // TODO remove: obsolete field
97 // .flags(FieldFlag::equation_result)
98 // .description("Piezo head solution - P0 interpolation.");
99 // *this += field_ele_flux.name("velocity_p0_old").units(UnitSI().m()) // TODO remove: obsolete field
100 // .flags(FieldFlag::equation_result)
101 // .description("Velocity solution - P0 interpolation.");
102  *this += subdomain.name("subdomain")
105  .description("Subdomain ids of the domain decomposition.");
106  *this += region_id.name("region_id")
109  .description("Region ids.");
110 }
111 
112 
114 : EquationOutput()
115 {
116  *this += pressure_diff.name("pressure_diff").units(UnitSI().m())
118  .description("Error norm of the pressure solution. [Experimental]");
119  *this += velocity_diff.name("velocity_diff").units(UnitSI().m().s(-1))
121  .description("Error norm of the velocity solution. [Experimental]");
122  *this += div_diff.name("div_diff").units(UnitSI().s(-1))
124  .description("Error norm of the divergence of the velocity solution. [Experimental]");
125 }
126 
128 : darcy_flow(flow),
129  mesh_(&darcy_flow->mesh()),
130  compute_errors_(false),
132 {
133  Input::Record in_rec_output = main_mh_in_rec.val<Input::Record>("output");
134 
136  main_mh_in_rec.val<Input::Record>("output_stream"),
138  prepare_output(in_rec_output);
139 
140  auto in_rec_specific = main_mh_in_rec.find<Input::Record>("output_specific");
141  if (in_rec_specific) {
142  in_rec_specific->opt_val("compute_errors", compute_errors_);
143 
144  // raw output
145  int rank;
147  if (rank == 0) {
148 
149  // optionally open raw output file
150  FilePath raw_output_file_path;
151  if (in_rec_specific->opt_val("raw_flow_output", raw_output_file_path))
152  {
153  int mpi_size;
154  MPI_Comm_size(MPI_COMM_WORLD, &mpi_size);
155  if(mpi_size > 1)
156  {
157  WarningOut() << "Raw output is not available in parallel computation. MPI size: " << mpi_size << "\n";
158  }
159  else
160  {
161  MessageOut() << "Opening raw flow output: " << raw_output_file_path << "\n";
162  try {
163  raw_output_file_path.open_stream(raw_output_file);
164  } INPUT_CATCH(FilePath::ExcFileOpen, FilePath::EI_Address_String, (*in_rec_specific))
165  }
166  }
167  }
168 
169  auto fields_array = in_rec_specific->val<Input::Array>("fields");
170  if(fields_array.size() > 0){
172  prepare_specific_output(*in_rec_specific);
173  }
174  }
175 }
176 
178 {
179  // we need to add data from the flow equation at this point, not in constructor of OutputFields
182 
185 
186  //output_stream->add_admissible_field_names(in_rec_output.val<Input::Array>("fields"));
187  //output_stream->mark_output_times(darcy_flow->time());
189 }
190 
192 {
193  diff_data.data_ = nullptr;
194  if(DarcyMH* d = dynamic_cast<DarcyMH*>(darcy_flow))
195  {
196  diff_data.data_ = d->data_.get();
197  }
198  else if(DarcyLMH* d = dynamic_cast<DarcyLMH*>(darcy_flow))
199  {
200  diff_data.data_ = d->data_.get();
201  }
203 
204  { // init DOF handlers represents element DOFs
205  uint p_elem_component = 1;
206  diff_data.dh_ = std::make_shared<SubDOFHandlerMultiDim>(diff_data.data_->dh_, p_elem_component);
207  }
208 
209  // mask 2d elements crossing 1d
213  diff_data.velocity_mask[ isec.bulk_ele_idx() ]++;
214  }
215  }
216 
218 
219  diff_data.vel_diff_ptr = create_field_fe<3, FieldValue<3>::Scalar>(diff_data.dh_);
221  diff_data.pressure_diff_ptr = create_field_fe<3, FieldValue<3>::Scalar>(diff_data.dh_);
223  diff_data.div_diff_ptr = create_field_fe<3, FieldValue<3>::Scalar>(diff_data.dh_);
225 
228 }
229 
231 {}
232 
233 
234 
235 
236 
237 //=============================================================================
238 // CONVERT SOLUTION, CALCULATE BALANCES, ETC...
239 //=============================================================================
240 
241 
243 {
244  START_TIMER("Darcy fields output");
245 
246  {
247  START_TIMER("post-process output fields");
248 
249  {
251  }
252  }
253 
254  {
255  START_TIMER("evaluate output fields");
258  }
259 
260  if (compute_errors_)
261  {
262  START_TIMER("compute specific output fields");
264  }
265 
267  {
268  START_TIMER("evaluate output fields");
271  }
272 
273  {
274  START_TIMER("write time frame");
275  output_stream->write_time_frame();
276  }
277 
278 
279 }
280 
281 
282 
283 /*
284  * Output of internal flow data.
285  */
287 {
288  START_TIMER("DarcyFlowMHOutput::output_internal_flow_data");
289 
290  if (! raw_output_file.is_open()) return;
291 
292  //char dbl_fmt[ 16 ]= "%.8g ";
293  // header
294  raw_output_file << "// fields:\n//ele_id ele_presure flux_in_barycenter[3] n_sides side_pressures[n] side_fluxes[n]\n";
295  raw_output_file << fmt::format("$FlowField\nT={}\n", darcy_flow->time().t());
296  raw_output_file << fmt::format("{}\n" , mesh_->n_elements() );
297 
298 
299  DarcyMH::EqData* data = nullptr;
300  if(DarcyMH* d = dynamic_cast<DarcyMH*>(darcy_flow))
301  {
302  data = d->data_.get();
303  }
304  else if(DarcyLMH* d = dynamic_cast<DarcyLMH*>(darcy_flow))
305  {
306  data = d->data_.get();
307  }
308  ASSERT_PTR(data);
309 
310  arma::vec3 flux_in_center;
311 
312  int cit = 0;
313  for ( DHCellAccessor dh_cell : data->dh_->own_range() ) {
314  ElementAccessor<3> ele = dh_cell.elm();
315  LocDofVec indices = dh_cell.get_loc_dof_indices();
316 
317  // pressure
318  raw_output_file << fmt::format("{} {} ", dh_cell.elm().index(), data->full_solution[indices[ele->n_sides()]]);
319 
320  // velocity at element center
321  flux_in_center = data->field_ele_velocity.value(ele.centre(), ele);
322  for (unsigned int i = 0; i < 3; i++)
323  raw_output_file << flux_in_center[i] << " ";
324 
325  // number of sides
326  raw_output_file << ele->n_sides() << " ";
327 
328  // pressure on edges
329  unsigned int lid = ele->n_sides() + 1;
330  for (unsigned int i = 0; i < ele->n_sides(); i++, lid++) {
331  raw_output_file << data->full_solution[indices[lid]] << " ";
332  }
333  // fluxes on sides
334  for (unsigned int i = 0; i < ele->n_sides(); i++) {
335  raw_output_file << data->full_solution[indices[i]] << " ";
336  }
337 
338  raw_output_file << endl;
339  cit ++;
340  }
341 
342  raw_output_file << "$EndFlowField\n" << endl;
343 }
344 
345 
347 #include "fem/fe_p.hh"
348 #include "fem/fe_values.hh"
349 #include "fields/field_python.hh"
350 #include "fields/field_values.hh"
351 
353 
354 /*
355 * Calculate approximation of L2 norm for:
356  * 1) difference between regularized pressure and analytical solution (using FunctionPython)
357  * 2) difference between RT velocities and analytical solution
358  * 3) difference of divergence
359  * */
360 
362  FEValues<3> &fe_values, FEValues<3> &fv_rt,
363  ExactSolution &anal_sol, DarcyFlowMHOutput::DiffData &result) {
364 
365  ASSERT_DBG( fe_values.dim() == fv_rt.dim());
366  unsigned int dim = fe_values.dim();
367 
368  ElementAccessor<3> ele = dh_cell.elm();
369  fv_rt.reinit(ele);
370  fe_values.reinit(ele);
371 
372  double conductivity = result.data_->conductivity.value(ele.centre(), ele );
373  double cross = result.data_->cross_section.value(ele.centre(), ele );
374 
375 
376  // get coefficients on the current element
377  vector<double> fluxes(dim+1);
378 // vector<double> pressure_traces(dim+1);
379 
380  for (unsigned int li = 0; li < ele->n_sides(); li++) {
381  fluxes[li] = diff_data.data_->full_solution[ dh_cell.get_loc_dof_indices()[li] ];
382 // pressure_traces[li] = result.dh->side_scalar( *(ele->side( li ) ) );
383  }
384  const uint ndofs = dh_cell.n_dofs();
385  // TODO: replace with DHCell getter when available for FESystem component
386  double pressure_mean = diff_data.data_->full_solution[ dh_cell.get_loc_dof_indices()[ndofs/2] ];
387 
388  arma::vec analytical(5);
389  arma::vec3 flux_in_q_point;
390  arma::vec3 anal_flux;
391 
392  double velocity_diff=0, divergence_diff=0, pressure_diff=0, diff;
393 
394  // 1d: mean_x_squared = 1/6 (v0^2 + v1^2 + v0*v1)
395  // 2d: mean_x_squared = 1/12 (v0^2 + v1^2 +v2^2 + v0*v1 + v0*v2 + v1*v2)
396  double mean_x_squared=0;
397  for(unsigned int i_node=0; i_node < ele->n_nodes(); i_node++ )
398  for(unsigned int j_node=0; j_node < ele->n_nodes(); j_node++ )
399  {
400  mean_x_squared += (i_node == j_node ? 2.0 : 1.0) / ( 6 * dim ) // multiply by 2 on diagonal
401  * arma::dot( *ele.node(i_node), *ele.node(j_node));
402  }
403 
404  for(unsigned int i_point=0; i_point < fe_values.n_points(); i_point++) {
405  arma::vec3 q_point = fe_values.point(i_point);
406 
407 
408  analytical = anal_sol.value(q_point, ele );
409  for(unsigned int i=0; i< 3; i++) anal_flux[i] = analytical[i+1];
410 
411  // compute postprocesed pressure
412  diff = 0;
413  for(unsigned int i_shape=0; i_shape < ele->n_sides(); i_shape++) {
414  unsigned int oposite_node = 0;
415  switch (dim) {
416  case 1: oposite_node = RefElement<1>::oposite_node(i_shape); break;
417  case 2: oposite_node = RefElement<2>::oposite_node(i_shape); break;
418  case 3: oposite_node = RefElement<3>::oposite_node(i_shape); break;
419  default: ASSERT(false)(dim).error("Unsupported FE dimension."); break;
420  }
421 
422  diff += fluxes[ i_shape ] *
423  ( arma::dot( q_point, q_point )/ 2
424  - mean_x_squared / 2
425  - arma::dot( q_point, *ele.node(oposite_node) )
426  + arma::dot( ele.centre(), *ele.node(oposite_node) )
427  );
428  }
429 
430  diff = - (1.0 / conductivity) * diff / dim / ele.measure() / cross + pressure_mean ;
431  diff = ( diff - analytical[0]);
432  pressure_diff += diff * diff * fe_values.JxW(i_point);
433 
434 
435  // velocity difference
436  flux_in_q_point.zeros();
437  for(unsigned int i_shape=0; i_shape < ele->n_sides(); i_shape++) {
438  flux_in_q_point += fluxes[ i_shape ]
439  * fv_rt.vector_view(0).value(i_shape, i_point)
440  / cross;
441  }
442 
443  flux_in_q_point -= anal_flux;
444  velocity_diff += dot(flux_in_q_point, flux_in_q_point) * fe_values.JxW(i_point);
445 
446  // divergence diff
447  diff = 0;
448  for(unsigned int i_shape=0; i_shape < ele->n_sides(); i_shape++) diff += fluxes[ i_shape ];
449  diff = ( diff / ele.measure() / cross - analytical[4]);
450  divergence_diff += diff * diff * fe_values.JxW(i_point);
451 
452  }
453 
454  // DHCell constructed with diff fields DH, get DOF indices of actual element
455  DHCellAccessor sub_dh_cell = dh_cell.cell_with_other_dh(result.dh_.get());
456  IntIdx idx = sub_dh_cell.get_loc_dof_indices()[0];
457 
458  auto velocity_data = result.vel_diff_ptr->vec();
459  velocity_data[ idx ] = sqrt(velocity_diff);
460  result.velocity_error[dim-1] += velocity_diff;
461  if (dim == 2 && result.velocity_mask.size() != 0 ) {
462  result.mask_vel_error += (result.velocity_mask[ ele.idx() ])? 0 : velocity_diff;
463  }
464 
465  auto pressure_data = result.pressure_diff_ptr->vec();
466  pressure_data[ idx ] = sqrt(pressure_diff);
467  result.pressure_error[dim-1] += pressure_diff;
468 
469  auto div_data = result.div_diff_ptr->vec();
470  div_data[ idx ] = sqrt(divergence_diff);
471  result.div_error[dim-1] += divergence_diff;
472 
473 }
474 
476 : order(4),
477  quad(QGauss::make_array(order)),
478  fe_p1(0), fe_p0(0),
479  fe_rt( )
480 {
482  fe_values = mixed_fe_values(quad, fe_p0, flags);
483  fv_rt = mixed_fe_values(quad, fe_rt, flags);
484 }
485 
486 
488  DebugOut() << "l2 norm output\n";
489  ofstream os( FilePath("solution_error", FilePath::output_file) );
490 
491  FilePath source_file( "analytical_module.py", FilePath::input_file);
492  ExactSolution anal_sol_1d(5); // components: pressure, flux vector 3d, divergence
493  anal_sol_1d.set_python_field_from_file( source_file, "all_values_1d");
494 
495  ExactSolution anal_sol_2d(5);
496  anal_sol_2d.set_python_field_from_file( source_file, "all_values_2d");
497 
498  ExactSolution anal_sol_3d(5);
499  anal_sol_3d.set_python_field_from_file( source_file, "all_values_3d");
500 
502  for(unsigned int j=0; j<3; j++){
503  diff_data.pressure_error[j] = 0;
504  diff_data.velocity_error[j] = 0;
505  diff_data.div_error[j] = 0;
506  }
507 
508  //diff_data.ele_flux = &( ele_flux );
509 
510  for (DHCellAccessor dh_cell : diff_data.data_->dh_->own_range()) {
511 
512  switch (dh_cell.dim()) {
513  case 1:
514  l2_diff_local( dh_cell, fe_data.fe_values[1], fe_data.fv_rt[1], anal_sol_1d, diff_data);
515  break;
516  case 2:
517  l2_diff_local( dh_cell, fe_data.fe_values[2], fe_data.fv_rt[2], anal_sol_2d, diff_data);
518  break;
519  case 3:
520  l2_diff_local( dh_cell, fe_data.fe_values[3], fe_data.fv_rt[3], anal_sol_3d, diff_data);
521  break;
522  }
523  }
524 
525  // square root for L2 norm
526  for(unsigned int j=0; j<3; j++){
529  diff_data.div_error[j] = sqrt(diff_data.div_error[j]);
530  }
532 
533  os << "l2 norm output\n\n"
534  << "pressure error 1d: " << diff_data.pressure_error[0] << endl
535  << "pressure error 2d: " << diff_data.pressure_error[1] << endl
536  << "pressure error 3d: " << diff_data.pressure_error[2] << endl
537  << "velocity error 1d: " << diff_data.velocity_error[0] << endl
538  << "velocity error 2d: " << diff_data.velocity_error[1] << endl
539  << "velocity error 3d: " << diff_data.velocity_error[2] << endl
540  << "masked velocity error 2d: " << diff_data.mask_vel_error <<endl
541  << "div error 1d: " << diff_data.div_error[0] << endl
542  << "div error 2d: " << diff_data.div_error[1] << endl
543  << "div error 3d: " << diff_data.div_error[2];
544 }
545 
546 
TimeGovernor & time()
Definition: equation.hh:149
FieldSet & data()
Definition: equation.hh:202
void set_python_field_from_file(const FilePath &file_name, const string &func_name)
Shape function values.
Definition: update_flags.hh:87
std::shared_ptr< FieldFE< 3, FieldValue< 3 >::Scalar > > vel_diff_ptr
UpdateFlags
Enum type UpdateFlags indicates which quantities are to be recomputed on each finite element cell...
Definition: update_flags.hh:67
static auto subdomain(Mesh &mesh) -> IndexField
struct DarcyFlowMHOutput::DiffData diff_data
Container for various descendants of FieldCommonBase.
Definition: field_set.hh:74
Declaration of class which handles the ordering of degrees of freedom (dof) and mappings between loca...
Output class for darcy_flow_mh model.
unsigned int n_nodes() const
Definition: elements.h:126
virtual void prepare_specific_output(Input::Record in_rec)
RegionSet get_region_set(const std::string &set_name) const
Definition: region.cc:328
const FEValuesViews::Vector< spacedim > & vector_view(unsigned int i) const
Accessor to vector values of multicomponent FE.
Definition: fe_values.hh:254
Accessor to input data conforming to declared Array.
Definition: accessors.hh:566
ArmaVec< double, N > vec
Definition: armor.hh:861
arma::Col< IntIdx > LocDofVec
Definition: index_types.hh:28
unsigned int uint
Classes with algorithms for computation of intersections of meshes.
std::shared_ptr< SubDOFHandlerMultiDim > dh_
virtual void prepare_output(Input::Record in_rec)
OutputSpecificFields output_specific_fields
Specific quantities for output in DarcyFlowMH - error estimates etc.
MixedMeshIntersections & mixed_intersections()
Definition: mesh.cc:822
Class Input::Type::Default specifies default value of keys of a Input::Type::Record.
Definition: type_record.hh:61
Class for declaration of the input of type Bool.
Definition: type_base.hh:452
int IntIdx
Definition: index_types.hh:25
#define MessageOut()
Macro defining &#39;message&#39; record of log.
Definition: logger.hh:255
std::shared_ptr< DOFHandlerMultiDim > dh_
full DOF handler represents DOFs of sides, elements and edges
void output(TimeStep step)
const Input::Type::Instance & make_output_type_from_record(Input::Type::Record &in_rec, const string &equation_name, const string &aditional_description="")
std::string format(CStringRef format_str, ArgList args)
Definition: format.h:3141
#define INPUT_CATCH(ExceptionType, AddressEITag, input_accessor)
Definition: accessors.hh:63
static std::shared_ptr< OutputTime > create_output_stream(const std::string &equation_name, const Input::Record &in_rec, std::string unit_str)
This method delete all object instances of class OutputTime stored in output_streams vector...
Definition: output_time.cc:184
bool is_output_specific_fields
Output specific field stuff.
Standard quantities for output in DarcyFlowMH.
Lumped mixed-hybrid model of linear Darcy flow, possibly unsteady.
Fields computed from the mesh data.
Iterator< Ret > find(const string &key) const
Cell accessor allow iterate over DOF handler cells.
Helper class that stores data of generic types.
Definition: type_generic.hh:89
Class FEValues calculates finite element data on the actual cells such as shape function values...
FieldPython< 3, FieldValue< 3 >::Vector > ExactSolution
static const Input::Type::Instance & get_input_type(FieldSet &eq_data, const std::string &equation_name)
LocDofVec get_loc_dof_indices() const
Returns the local indices of dofs associated to the cell on the local process.
const RegionDB & region_db() const
Definition: mesh.h:143
#define ASSERT(expr)
Allow use shorter versions of macro names if these names is not used with external library...
Definition: asserts.hh:347
const TimeStep & step(int index=-1) const
Mixed-hybrid model of linear Darcy flow, possibly unsteady.
double t() const
Field< 3, FieldValue< 3 >::Scalar > subdomain
unsigned int n_dofs() const
Return number of dofs on given cell.
FieldCommon & units(const UnitSI &units)
Set basic units of the field.
void reinit(const ElementAccessor< spacedim > &cell)
Update cell-dependent data (gradients, Jacobians etc.)
Definition: fe_values.cc:548
std::shared_ptr< OutputTime > output_stream
NodeAccessor< 3 > node(unsigned int ni) const
Definition: accessors.hh:200
Field< 3, FieldValue< 3 >::Scalar > pressure_diff
Record & close() const
Close the Record for further declarations of keys.
Definition: type_record.cc:304
static unsigned int oposite_node(unsigned int sid)
Definition: ref_element.cc:327
Symmetric Gauss-Legendre quadrature formulae on simplices.
arma::vec::fixed< spacedim > centre() const
Computes the barycenter.
Field< 3, FieldValue< 3 >::Scalar > velocity_diff
static Default optional()
The factory function to make an empty default value which is optional.
Definition: type_record.hh:124
void open_stream(Stream &stream) const
Definition: file_path.cc:211
bool opt_val(const string &key, Ret &value) const
Transformed quadrature points.
const ElementAccessor< 3 > elm() const
Return ElementAccessor to element of loc_ele_idx_.
Global macros to enhance readability and debugging, general constants.
static constexpr Mask equation_result
Match result fields. These are never given by input or copy of input.
Definition: field_flag.hh:55
static const Input::Type::Instance & get_input_type_specific()
Definitions of basic Lagrangean finite elements with polynomial shape functions.
static constexpr Mask equation_external_output
Match an output field, that can be also copy of other field.
Definition: field_flag.hh:58
Accessor to the data with type Type::Record.
Definition: accessors.hh:291
const Ret val(const string &key) const
unsigned int n_sides() const
Definition: elements.h:132
static auto region_id(Mesh &mesh) -> IndexField
#define START_TIMER(tag)
Starts a timer with specified tag.
unsigned int dim() const
Return dimension of reference space.
Definition: fe_values.hh:285
DarcyFlowMHOutput(DarcyFlowInterface *flow, Input::Record in_rec)
virtual Value::return_type const & value(const Point &p, const ElementAccessor< spacedim > &elm) const
Definition: field.hh:434
Field< 3, FieldValue< 3 >::Scalar > div_diff
Record & declare_key(const string &key, std::shared_ptr< TypeBase > type, const Default &default_value, const string &description, TypeBase::attribute_map key_attributes=TypeBase::attribute_map())
Declares a new key of the Record.
Definition: type_record.cc:503
std::shared_ptr< FieldFE< 3, FieldValue< 3 >::Scalar > > pressure_diff_ptr
ofstream raw_output_file
Raw data output file.
double measure() const
Computes the measure of the element.
VectorMPI full_solution
#define MPI_Comm_size
Definition: mpi.h:235
std::vector< FEValues< 3 > > fe_values
#define MPI_Comm_rank
Definition: mpi.h:236
Record & copy_keys(const Record &other)
Copy keys from other record.
Definition: type_record.cc:216
Dedicated class for storing path to input and output files.
Definition: file_path.hh:54
FieldCommon & description(const string &description)
std::string get_unit_string() const
virtual unsigned int n_elements(bool boundary=false) const
Returns count of boundary or bulk elements.
Definition: mesh.h:344
void initialize(std::shared_ptr< OutputTime > stream, Mesh *mesh, Input::Record in_rec, const TimeGovernor &tg)
DarcyFlowInterface * darcy_flow
#define ASSERT_PTR(ptr)
Definition of assert macro checking non-null pointer (PTR)
Definition: asserts.hh:336
Field< 3, FieldValue< 3 >::Scalar > region_id
bool compute_errors_
Specific experimental error computing.
static Input::Type::Record & get_input_type()
void set_field(const RegionSet &domain, FieldBasePtr field, double time=0.0)
Definition: field.impl.hh:227
bool set_time(const TimeStep &time, LimitSide limit_side)
Definition: field_set.cc:157
#define ASSERT_DBG(expr)
Definitions of particular quadrature rules on simplices.
#define WarningOut()
Macro defining &#39;warning&#39; record of log.
Definition: logger.hh:258
FieldCommon & name(const string &name)
#define MPI_COMM_WORLD
Definition: mpi.h:123
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.
std::vector< FEValues< 3 > > fv_rt
std::shared_ptr< FieldFE< 3, FieldValue< 3 >::Scalar > > div_diff_ptr
mixed-hybrid model of linear Darcy flow, possibly unsteady.
void set_mesh(const Mesh &mesh)
Definition: field_set.hh:186
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...
Record type proxy class.
Definition: type_record.hh:182
const Input::Type::Instance & make_output_type(const string &equation_name, const string &aditional_description="")
Field< 3, FieldValue< 3 >::Scalar > cross_section
Field< 3, FieldValue< 3 >::Scalar > conductivity
FieldCommon & flags(FieldFlag::Flags::Mask mask)
double JxW(const unsigned int point_no)
Return the product of Jacobian determinant and the quadrature weight at given quadrature point...
Definition: fe_values.hh:200
Class for representation SI units of Fields.
Definition: unit_si.hh:40
static FileName output()
The factory function for declaring type FileName for input files.
Definition: type_base.cc:531
arma::vec::fixed< spacedim > point(const unsigned int point_no)
Return coordinates of the quadrature point in the actual cell system.
Definition: fe_values.hh:213
static UnitSI & dimensionless()
Returns dimensionless unit.
Definition: unit_si.cc:55
#define DebugOut()
Macro defining &#39;debug&#39; record of log.
Definition: logger.hh:264
unsigned int idx() const
Return local idx of element in boundary / bulk part of element vector.
Definition: accessors.hh:181
std::vector< FEValues< 3 > > mixed_fe_values(QGauss::array &quadrature, MixedPtr< FiniteElement > fe, UpdateFlags flags)
Definition: fe_values.cc:582
std::vector< IntersectionLocal< 1, 2 > > intersection_storage12_
Stores 1D-2D intersections.
unsigned int n_points() const
Returns the number of quadrature points.
Definition: fe_values.hh:273
Implementation of range helper class.
Definitions of Raviart-Thomas finite elements.
MortarMethod mortar_method_
virtual Value::return_type const & value(const Point &p, const ElementAccessor< spacedim > &elm)
void output()
Calculate values for output.
Transformed quadrature weights.
Mixed-hybrid model of linear Darcy flow, possibly unsteady.