12 #include <unordered_set> 40 template<
unsigned int dim>
66 if (snap_dim <= dim) {
67 double min_dist = 2.0;
71 double dist = arma::norm(center - observe_data.
local_coords_, 2);
72 if ( dist < min_dist) {
111 return IT::Record(
"ObservePoint",
"Specification of the observation point.\n" 112 "The actual observation element and the observation point on it is determined as follows:\n\n" 113 "1. Find an initial element containing the initial point. If no such element exists, we report an error.\n" 114 "2. Use BFS (Breadth-first search) starting from the inital element to find the 'observe element'. The observe element is the closest element.\n" 115 "3. Find the closest projection of the inital point on the observe element and snap this projection according to the ``snap_dim``.\n")
119 "Default name have the form 'obs_<id>', where 'id' " 120 "is the rank of the point on the input."),
121 "Optional point name, which has to be unique.\n" 122 "Any string that is a valid YAML key in record without any quoting can be used, however, " 123 "using just alpha-numerical characters, and underscore instead of the space, is recommended." 126 "Initial point for the observe point search.")
128 "The dimension of the sub-element to which center we snap. For value 4 no snapping is done. " 129 "For values 0 up to 3 the element containing the initial point is found and then the observe" 130 "point is snapped to the nearest center of the sub-element of the given dimension. " 131 "E.g. for dimension 2 we snap to the nearest center of the face of the initial element." 134 "The region of the initial element for snapping. Without snapping we make a projection to the initial element.")
136 IT::Default::read_time(
"Maximal distance of the observe point from the mesh relative to the mesh diameter. "),
137 "Global value is defined in mesh record by the key global_snap_radius.")
149 string default_label = string(
"obs_") +
std::to_string(point_idx);
150 name_ = in_rec.
val<
string>(
"name", default_label );
156 snap_dim_ = in_rec.
val<
unsigned int>(
"snap_dim");
158 snap_region_name_ = in_rec.
val<
string>(
"snap_region");
161 double max_mesh_size = arma::max(main_box.max() - main_box.min());
162 max_search_radius_ = in_rec_.val<
double>(
"search_radius", mesh.
global_snap_radius()) * max_mesh_size;
168 return observe_data_.distance_ < numeric_limits<double>::infinity();
195 default:
ASSERT(
false).error(
"Clipping supported only for dim=1,2,3.");
203 if (region_set.size() == 0)
204 THROW( RegionDB::ExcUnknownSet() << RegionDB::EI_Label(snap_region_name_) << in_rec_.ei_address() );
209 std::unordered_set<unsigned int> closed_elements(1023);
210 std::priority_queue< ObservePointData, std::vector<ObservePointData>,
CompareByDist > candidate_queue;
214 bih_tree.
find_point(projected_point, candidate_list,
true);
219 for (
unsigned int i_candidate=0; i_candidate<candidate_list.size(); ++i_candidate) {
220 unsigned int i_elm=candidate_list[i_candidate];
224 auto observe_data = point_projection( i_elm, elm );
227 if(observe_data.distance_ < min_observe_point_data.
distance_)
228 min_observe_point_data = observe_data;
231 if (observe_data.distance_ <= max_search_radius_)
232 candidate_queue.push(observe_data);
233 closed_elements.insert(i_elm);
237 if (candidate_queue.empty()) {
238 THROW(ExcNoObserveElementCandidates()
239 << EI_PointName(name_)
240 << EI_Point(input_point_)
241 << EI_ClosestEle(min_observe_point_data));
244 while (!candidate_queue.empty())
246 auto candidate_data = candidate_queue.top();
247 candidate_queue.pop();
249 unsigned int i_elm=candidate_data.element_idx_;
254 ASSERT_LE(candidate_data.distance_, observe_data_.distance_).error();
256 observe_data_.distance_ = candidate_data.distance_;
257 observe_data_.element_idx_ = candidate_data.element_idx_;
258 observe_data_.local_coords_ = candidate_data.local_coords_;
259 observe_data_.global_coords_ = candidate_data.global_coords_;
260 observe_data_.proc_ = candidate_data.proc_;
265 for (
unsigned int n=0; n < elm->
n_nodes(); n++)
267 if (closed_elements.find(i_node_ele) == closed_elements.end()) {
269 auto observe_data = point_projection( i_node_ele, neighbor_elm );
270 if (observe_data.distance_ <= max_search_radius_)
271 candidate_queue.push(observe_data);
272 closed_elements.insert(i_node_ele);
277 if (! have_observe_element()) {
278 THROW(ExcNoObserveElement()
279 << EI_RegionName(snap_region_name_)
280 << EI_PointName(name_)
281 << EI_Point(input_point_)
282 << EI_ClosestEle(min_observe_point_data));
286 double dist = arma::norm(elm.
centre() - input_point_, 2);
288 if (dist > 2*elm_norm)
289 WarningOut().fmt(
"Observe point ({}) is too distant from the mesh.\n", name_);
297 out << setw(indent_spaces) <<
"" <<
"- name: " << name_ << endl;
298 out << setw(indent_spaces) <<
"" <<
" init_point: " <<
field_value_to_yaml(input_point_, precision) << endl;
299 out << setw(indent_spaces) <<
"" <<
" snap_dim: " << snap_dim_ << endl;
300 out << setw(indent_spaces) <<
"" <<
" snap_region: " << snap_region_name_ << endl;
301 out << setw(indent_spaces) <<
"" <<
" observe_point: " <<
field_value_to_yaml(observe_data_.global_coords_, precision) << endl;
311 return ph.
projection(input_point_, i_elm, elm);
317 return ph.
projection(input_point_, i_elm, elm);
323 return ph.
projection(input_point_, i_elm, elm);
327 ASSERT(
false).error(
"Invalid element dimension!");
344 : observe_name_(observe_name),
345 precision_(precision),
352 unsigned int global_point_idx=0, local_point_idx=0;
358 point.observe_data_.global_idx_ = global_point_idx++;
359 if (point.observe_data_.proc_ == mesh.
get_el_ds()->
myp()) {
360 point.observe_data_.local_idx_ = local_point_idx++;
361 point_4_loc_.push_back(point.observe_data_.global_idx_);
364 point.observe_data_.local_idx_ = -1;
379 if (
points_.size() == 0)
return;
388 }
INPUT_CATCH(FilePath::ExcFileOpen, FilePath::EI_Address_String, in_array)
399 template <
typename T>
412 = std::make_shared< ElementDataCache<T> >(field_name, n_rows * n_cols,
point_ds_->
lsize());
419 #define OBSERVE_PREPARE_COMPUTE_DATA(TYPE) \ 420 template ElementDataCache<TYPE> & Observe::prepare_compute_data<TYPE>(std::string field_name, double field_time, \ 421 unsigned int n_rows, unsigned int n_cols) 429 unsigned int indent = 2;
441 if (
points_.size() == 0)
return;
465 auto serial_data = field_data.second->gather(
point_ds_, &(local_to_global[0]));
466 if (
rank_==0) field_data.second = serial_data;
470 unsigned int indent = 2;
473 for(
auto &field_data : observe_field_values_) {
474 observe_file_ << setw(indent) <<
"" <<
" " << field_data.second->field_input_name() <<
": ";
484 observe_time_idx_ = 0;
ObservePointData point_projection(unsigned int i_elm, ElementAccessor< 3 > elm)
Project point to given element by dimension of this element.
std::vector< ObservePoint > points_
Full information about observe points.
Class MappingP1 implements the affine transformation of the unit cell onto the actual cell...
Bounding box in 3d ambient space.
#define OBSERVE_PREPARE_COMPUTE_DATA(TYPE)
OutputDataFieldMap observe_field_values_
Stored field values.
unsigned int n_nodes() const
Observe(string observe_name, Mesh &mesh, Input::Array in_array, unsigned int precision, std::string unit_str)
vector< vector< unsigned int > > const & node_elements()
std::ofstream observe_file_
Output file stream.
RegionSet get_region_set(const std::string &set_name) const
NodeAccessor< 3 > node_accessor(unsigned int ni) const
unsigned int proc_
Actual process of the observe point.
BaryPoint project_real_to_unit(const RealPoint &point, const ElementMap &map) const
std::vector< LongIdx > point_4_loc_
Index set assigning to local point index its global index.
ProjectionHandler()
Constructor.
double convert_unit_from(std::string actual_unit) const
Convert and check user-defined unit.
static const Input::Type::Record & get_input_type()
void output_time_frame(bool flush)
bool have_observe_element()
double global_snap_radius() const
Maximal distance of observe point from Mesh relative to its size.
void output(ostream &out, unsigned int indent_spaces, unsigned int precision)
static const unsigned int max_observe_value_time
Maximal size of observe values times vector.
#define ASSERT_LE(a, b)
Definition of comparative assert macro (Less or Equal)
unsigned int element_idx_
Final element of the observe point. The index in the mesh.
std::string time_unit_str_
String representation of the time unit.
const RegionDB & region_db() const
#define ASSERT(expr)
Allow use shorter versions of macro names if these names is not used with external library...
std::string to_string(const T &value)
std::string observe_name_
arma::vec local_coords_
Local (barycentric) coordinates on the element.
unsigned int proc() const
virtual ElementAccessor< 3 > element_accessor(unsigned int idx) const
Create and return ElementAccessor to element of given idx.
arma::vec::fixed< spacedim > centre() const
Computes the barycenter.
void open_stream(Stream &stream) const
Global macros to enhance readability and debugging, general constants.
arma::vec3 global_coords_
Global coordinates of the observation point.
unsigned int precision_
Precision of float output.
void find_observe_point(Mesh &mesh)
bool operator()(const ObservePointData &lhs, const ObservePointData &rhs) const
const BoundingBox & tree_box() const
std::vector< unsigned int > observed_element_indices_
Elements of the o_points.
const Point & max() const
Class for O(log N) lookup for intersections with a set of bounding boxes.
BoundingBox bounding_box() const
void snap_to_subelement(ObservePointData &observe_data, ElementAccessor< 3 > elm, unsigned int snap_dim)
Range< ObservePointAccessor > local_range() const
Returns local range of observe points.
ElementDataCache< T > & prepare_compute_data(std::string field_name, double field_time, unsigned int n_rows, unsigned int n_cols)
Distribution * get_el_ds() const
ObservePointData projection(arma::vec3 input_point, unsigned int i_elm, ElementAccessor< 3 > elm)
const BIHTree & get_bih_tree()
Getter for BIH. Creates and compute BIH at first call.
Dedicated class for storing path to input and output files.
unsigned int myp() const
get my processor
friend class ObservePointAccessor
void find_point(const Space< 3 >::Point &point, std::vector< unsigned int > &result_list, bool full_list=false) const
double time_unit_seconds_
Time unit in seconds.
std::vector< double > observe_values_time_
Common evaluation time of the fields for single time frame.
bool is_in_region_set(const RegionSet &set) const
MappingP1< dim, 3 > mapping_
Mapping object.
Point project_point(const Point &point) const
#define WarningOut()
Macro defining 'warning' record of log.
static BaryPoint local_to_bary(const LocalPoint &lp)
Converts from local to barycentric coordinates.
unsigned int observe_time_idx_
Index of actual (last) time in observe_values_time_ vector.
const Point & min() const
Distribution * point_ds_
Parallel distribution of observe points.
Class for representation SI units of Fields.
BaryPoint clip_to_element(BaryPoint &barycentric)
ElementMap element_map(ElementAccessor< 3 > elm) const
#define THROW(whole_exception_expr)
Wrapper for throw. Saves the throwing point.
~Observe()
Destructor, must close the file.
unsigned int lsize(int proc) const
get local size