|
| logical function | mod_grid_physical_points::is_inside_domain_within_nghosts (position, nghost_cells) |
| | Test if a point is inside the domain, within N ghost cells.
|
| |
| logical function | mod_grid_physical_points::is_inside_cells_domain_within_nghosts (position, nghost_cells) |
| | Test if a point is inside the cells' domain, within N ghost cells The cells domain encompass only the box between the first and the last cells center.
|
| |
| logical function | mod_grid_physical_points::is_inside_cells_real_domain_within_nghosts (position, nghost_cells) |
| | Very similar to the is_inside_cells_domain_within_Nghosts function. However, the function returns true if outside but the node is on the physical boundary.
|
| |
| subroutine | mod_grid_physical_points::place_point_in_physical_domain (x) |
| | Project the point into the physical domain.
|
| |
| subroutine | mod_grid_physical_points::place_point_in_physical_domain_noper (x) |
| | Similar to place_point_in_physical_domain. But here, do not apply periodic principle if present.
|
| |
| subroutine | mod_grid_physical_points::place_point_in_local_domain (x, nghosts_allowed) |
| | Project the point into the local domain.
|
| |
| double precision function | mod_grid_physical_points::compute_physical_domain_distance (x1, x2) |
| | Return the Euclidian distance between two points with possible periodic boundaries.
|
| |
| logical function | mod_grid_physical_points::is_point_in_physical_domain (x) |
| | Is the given point within the physical domain ?
|
| |
| logical function | mod_grid_physical_points::is_point_in_physical_domain_threshold (x, threshold) |
| | Is the given point within the physical domain ? (within a positive threshold)
|
| |